/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    overflow-x: hidden;
}

/* Entrance Overlay */
.entrance-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.8s ease;
    cursor: pointer;
}

.entrance-overlay.fade-out {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
}

.entrance-content {
    text-align: center;
    color: white;
    animation: entrancePulse 2s ease-in-out infinite;
}

.entrance-title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 30px;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    letter-spacing: 3px;
}

.entrance-subtitle {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 40px;
    font-weight: 200;
    letter-spacing: 4px;
    opacity: 0.9;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.entrance-loader {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.loader-dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: loaderBounce 1.4s ease-in-out infinite both;
}

.loader-dot:nth-child(1) { animation-delay: -0.32s; }
.loader-dot:nth-child(2) { animation-delay: -0.16s; }
.loader-dot:nth-child(3) { animation-delay: 0s; }

@keyframes entrancePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes loaderBounce {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: url('assets/images/background.gif');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    min-height: 100vh;
    width: 100%;
    color: #ffffff;
    min-height: 100vh;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}


/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
}

.profile-card {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transition: box-shadow 0.3s ease;
}

.profile-card:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

/* Profile Info Section */
.profile-info-section {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-picture {
    margin-bottom: 20px;
}

.profile-picture img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}


.profile-info-section .profile-name {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    text-shadow: 
        0 0 10px rgba(114, 137, 218, 0.8),
        0 0 20px rgba(114, 137, 218, 0.6),
        0 0 30px rgba(114, 137, 218, 0.4),
        0 0 40px rgba(114, 137, 218, 0.2);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 
            0 0 10px rgba(114, 137, 218, 0.8),
            0 0 20px rgba(114, 137, 218, 0.6),
            0 0 30px rgba(114, 137, 218, 0.4),
            0 0 40px rgba(114, 137, 218, 0.2);
    }
    to {
        text-shadow: 
            0 0 15px rgba(114, 137, 218, 1),
            0 0 25px rgba(114, 137, 218, 0.8),
            0 0 35px rgba(114, 137, 218, 0.6),
            0 0 45px rgba(114, 137, 218, 0.4);
    }
}

.profile-greeting {
    font-size: 1.3rem;
    color: #ffffff;
    font-weight: 400;
    margin: 0;
}

.profile-location {
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 300;
    margin: 10px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.5),
        0 0 20px rgba(255, 255, 255, 0.3),
        0 0 30px rgba(255, 255, 255, 0.1);
}

.profile-location i {
    font-size: 0.8rem;
    color: #ffffff;
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.5),
        0 0 20px rgba(255, 255, 255, 0.3);
}


/* Social Links */
.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    text-decoration: none;
    color: #ffffff;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}


.social-link:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.social-link i {
    font-size: 1.5rem;
    width: 24px;
    text-align: center;
}

.social-link span {
    font-weight: 500;
    font-size: 1rem;
}

/* Social Link Colors */
.discord { background: rgba(114, 137, 218, 0.15); }
.discord:hover { background: rgba(114, 137, 218, 0.4); border-color: #7289da; }

.facebook { background: rgba(24, 119, 242, 0.15); }
.facebook:hover { background: rgba(24, 119, 242, 0.4); border-color: #1877f2; }

.instagram { background: linear-gradient(45deg, rgba(225, 48, 108, 0.15), rgba(255, 218, 121, 0.15)); }
.instagram:hover { background: linear-gradient(45deg, rgba(225, 48, 108, 0.4), rgba(255, 218, 121, 0.4)); border-color: #e1306c; }

.youtube { background: rgba(255, 0, 0, 0.15); }
.youtube:hover { background: rgba(255, 0, 0, 0.4); border-color: #ff0000; }

.spotify { background: rgba(30, 215, 96, 0.15); }
.spotify:hover { background: rgba(30, 215, 96, 0.4); border-color: #1ed760; }

.telegram { background: rgba(0, 136, 204, 0.15); }
.telegram:hover { background: rgba(0, 136, 204, 0.4); border-color: #0088cc; }

.tiktok { background: rgba(0, 0, 0, 0.15); }
.tiktok:hover { background: rgba(0, 0, 0, 0.4); border-color: #000000; }

.steam { background: rgba(0, 0, 0, 0.15); }
.steam:hover { background: rgba(0, 0, 0, 0.4); border-color: #000000; }



/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .profile-card {
        padding: 25px;
    }
    
    .profile-name {
        font-size: 2rem;
    }
    
    .profile-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .username-section {
        justify-content: center;
    }
    
    .social-links {
        grid-template-columns: 1fr;
    }
    
    .social-link {
        padding: 12px 15px;
    }
}

@media (max-width: 480px) {
    .profile-name {
        font-size: 1.8rem;
    }
    
    .profile-status {
        font-size: 1rem;
    }
    
    .profile-card {
        padding: 20px;
    }
    
    .social-link {
        padding: 10px 12px;
    }
    
    .social-link i {
        font-size: 1.3rem;
    }
    
    .social-link span {
        font-size: 0.9rem;
    }
}


/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: rgba(114, 137, 218, 0.6);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(114, 137, 218, 0.8);
}

/* Music Control Panel */
.music-control-panel {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    padding: 8px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
    overflow: hidden;
    width: 50px;
    height: 50px;
}

.music-control-panel:hover {
    background: rgba(0, 0, 0, 0.4);
    border-color: rgba(114, 137, 218, 0.3);
    width: 200px;
    border-radius: 25px;
}

/* Music Toggle Button */
.music-toggle {
    width: 34px;
    height: 34px;
    background: transparent;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.music-toggle:hover {
    background: rgba(114, 137, 218, 0.3);
    transform: scale(1.1);
}

.music-toggle.muted {
    color: #ff6b6b;
}

.music-toggle.muted:hover {
    background: rgba(255, 107, 107, 0.3);
}

/* Volume Control */
.volume-control {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.4s ease;
    pointer-events: none;
    margin-left: 10px;
    white-space: nowrap;
}

.music-control-panel:hover .volume-control {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

.volume-slider {
    width: 70px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    background: #7289da;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.volume-slider::-webkit-slider-thumb:hover {
    background: #99aab5;
    transform: scale(1.2);
}

.volume-slider::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: #7289da;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.volume-slider::-moz-range-thumb:hover {
    background: #99aab5;
    transform: scale(1.2);
}

.volume-display {
    color: white;
    font-size: 10px;
    font-weight: 400;
    min-width: 25px;
    text-align: center;
    opacity: 0.8;
}

/* Dot Rain Effect */
.rain-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.rain-drop {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: rain-fall linear infinite;
    box-shadow: 0 0 12px rgba(255, 255, 255, 1);
}

@keyframes rain-fall {
    0% {
        transform: translateY(-100vh) translateX(0px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) translateX(20px);
        opacity: 0;
    }
}
