* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #000000;
    color: #ffffff;
    overflow: hidden;
    height: 100vh;
}

video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

#background-video {
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.sound-control {
    background-color: rgba(255, 255, 255, 0.2);
}

.sound-control:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    width: 10%;
}

.link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px 80px;
    border-radius: 10px;
    text-decoration: none;
    color: #ffffff;
    font-size: 18px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.link i {
    font-size: 24px;
}

    .player-container {
        position: absolute;
        bottom: 12px;
        left: 50%;
        transform: translateX(-50%);
        background-image: linear-gradient(to top, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.00));
        padding: 20px;
        border-radius: 10px;
        width: 96%;
        max-width: 600px;
        backdrop-filter: blur(5px);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .player-controls {
        display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
}

.player-btn {
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    color: #ffffff;
    font-size: 18px;
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.player-btn i {
    line-height: 1;
}

.player-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.progress-container {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: center;
}

.time {
    font-size: 12px;
    color: #aaaaaa;
}

.progress-bar {
    flex: 1;
    max-width: 420px;
    height: 5px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    cursor: pointer;
    position: relative;
}

.progress-fill {
    height: 100%;
    background-color: #ffffff;
    border-radius: 5px;
    width: 0%;
    transition: width 0.1s linear;
}

.player-info {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    width: 100%;
    margin-bottom: 0;
    background-image: linear-gradient(to top, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.00));
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.player-info:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.song-details {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 420px;
    text-align: left;
}

@media (min-width: 768px) {
    .links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .link {
        min-width: 120px;
    }

    .player-container {
        bottom: 10px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: 96%;
        max-width: 500px;
        max-height: 700px;
    }
}

.footer {
    position: fixed;
    bottom: 10px;
    right: 15px;
    z-index: 100;
}

.footer a {
    color: #aaaaaa;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #ffffff;
}

.privacy-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(3px);
}

.privacy-modal-content {
    background-color: rgba(20, 20, 20, 0.95);
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.privacy-modal-content h2 {
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 10px;
}

.privacy-modal-content h3 {
    color: #ffffff;
    margin-top: 20px;
    margin-bottom: 10px;
}

.privacy-modal-content p {
    color: #dddddd;
    line-height: 1.6;
    margin: 10px 0;
}

.close-modal {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #ffffff;
}

@media (max-width: 768px) {
    .footer {
        position: fixed;
        top: 10px;
        left: 10px;
        right: auto;
        bottom: auto;
        z-index: 100;
    }

    .footer a {
        font-size: 11px;
        color: #cccccc;
    }
}

@media (max-height: 750px) {
    .overlay {
        padding-bottom: 200px; 
    }

    .links {
        gap: 12px; 
    }

    .link {
        max-width: 50px;
        padding: 12px 80px; 
    }
}

.enter-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #000000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    -webkit-clip-path: polygon(0% 0%, 0% 100%, 50% 100%, 50% 0%, 50% 0%, 50% 100%, 100% 100%, 100% 0%);
    clip-path: polygon(0% 0%, 0% 100%, 50% 100%, 50% 0%, 50% 0%, 50% 100%, 100% 100%, 100% 0%);
    transition: -webkit-clip-path 1.5s cubic-bezier(0.7, 0, 1, 0.2), 
                clip-path 1.5s cubic-bezier(0.7, 0, 1, 0.2), 
                opacity 1.5s cubic-bezier(0.7, 0, 1, 0.2);
    
    opacity: 1;
}

.enter-screen.split-fade {
    -webkit-clip-path: polygon(0% 0%, 0% 100%, 0% 100%, 0% 0%, 100% 0%, 100% 100%, 100% 100%, 100% 0%);
    clip-path: polygon(0% 0%, 0% 100%, 0% 100%, 0% 0%, 100% 0%, 100% 100%, 100% 100%, 100% 0%);
    opacity: 0; 
}

.enter-screen span {
    color: #ffffff;
    font-size: 20px;
    letter-spacing: 2px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}