@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

body {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Background Image with Blur */
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('background.png') no-repeat center center fixed;
    background-size: cover;
    filter: blur(1px);
    z-index: -2;
}

body::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(69, 69, 69, 0.307);
    backdrop-filter: blur(6px);
    z-index: -1;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 95%;
    height: 95vh;
    padding: 18px;
}

.profile-card {
    background: #0000003f;
    backdrop-filter: blur(10px);
    width: 400px;
    max-width: 90vw;
    padding: 30px;
    text-align: center;
    border-radius: 15px;
    border: 3px solid white;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
}

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 3px solid white;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.566);
}

.profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.name {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.status {
    font-size: 16px;
    color: white;
    opacity: 0.8;
    margin-bottom: 5px;
}

.status::after {
    content: "";
    display: block;
    width: 100%;
    max-width: 250px;
    height: 2px;
    background-color: white;
    margin: 10px auto;
}

.roles {
    font-size: 14px;
    color: white;
    opacity: 0.9;
    margin-bottom: 10px;
}

.bio {
    font-size: 18px;
    font-weight: bold;
    color: white;
    margin-bottom: 15px;
}

.social-icons {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    font-size: 20px;
    color: #000000;
    transition: 0.3s ease;
}

.social-icons a:hover {
    background: #0000003f;
    color: white;
    transform: scale(1.1);
}

.discord-presence {
    margin-top: 15px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    text-align: center;
}

/* Cat Rain Effect */
#cat-rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 2;
}

/* Responsive */
@media (max-width: 768px) {
    .profile-card {
        width: 90%;
        padding: 20px;
    }

    .profile-img {
        width: 120px;
        height: 120px;
    }

    .name {
        font-size: 20px;
    }

    .status, .roles, .bio {
        font-size: 14px;
    }

    .social-icons a {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .profile-card {
        width: 95%;
        padding: 15px;
    }

    .profile-img {
        width: 100px;
        height: 100px;
    }

    .name {
        font-size: 18px;
    }

    .status, .roles, .bio {
        font-size: 12px;
    }

    .social-icons a {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
}
#enter-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    z-index: 9999;
    transition: opacity 1s ease, transform 1s ease, visibility 1s ease;
    transform: scale(1);
}

#enter-overlay.hidden {
    opacity: 0;
    transform: scale(1.2); /* Zoom out */
    visibility: hidden;
}

.enter-message {
    font-weight: bold;
    text-align: center;
    animation: flicker 2s infinite;
}

/* Optional: Flickering glow for the text */
@keyframes flicker {
    0%, 80% { opacity: 0.8; text-shadow: 0 0 5px white; }
    45% { opacity: 1; text-shadow: 0 0 15px white; }
}
.music-header {
    background: #0000003f;
    color: white;
    padding: 8px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: grab;
}
.cover {
    width: 80px;
    height: 80px;
    border-radius: 6px;
    object-fit: cover;
    border: 1px solid #000000;
}

#music-player {
    display: none; /* Hidden by default */
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

#music-player.visible {
    display: block;
    opacity: 0.8;
    transform: translateY(0);
}
#music-player {
    position: fixed;
    bottom: 18px;
    right: 18px;
    width: 380px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    cursor: move;
    padding: 8px;
    display: none;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

#music-player.visible {
    display: block;
    opacity: 0.8;
    transform: translateY(0);
}

.music-header {
    display: flex;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 8px;
    user-select: none;
}

.music-body {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cover {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    object-fit: cover;
}

#song-title {
    display: block;
    margin-bottom: 3px;
    font-size: 12px;
    font-weight: 400;
    #enter-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('your-image.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    z-index: 9999;
    transition: opacity 1s ease, transform 1s ease, visibility 1s ease;
    transform: scale(1);
}

#enter-overlay.hidden {
    opacity: 0;
    transform: scale(1.2);
    visibility: hidden;
}

.enter-message {
    font-weight: bold;
    text-align: center;
    animation: flicker 2s infinite;
}
}
#enter-overlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4); /* dark overlay */
}
.enter-message {
    position: relative;
    z-index: 1;
}

