:root {
    --bg-color: #0f0f13;
    --card-bg: rgba(16, 16, 24, 0.4); 
    --card-hover: rgba(100, 100, 255, 0.15); 
    --text-primary: #ffffff;
    --text-secondary: #d0d0d0; 
    --accent-twitch: #9146ff;
    --accent-tiktok: #ff0050; 
    --accent-youtube: #ff0000;
    --accent-insta: #e1306c;
    --accent-twitter: #1d9bf0;
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
}


.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: blur(8px) brightness(0.4); 
    transform: scale(1.1); 
}


body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(to bottom, rgba(15, 15, 19, 0.3), rgba(15, 15, 19, 0.8));
    pointer-events: none;
}


.container {
    width: 100%;
    max-width: 800px;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}


.profile-header {
    margin-bottom: 50px;
    animation: fadeInDown 1s ease-out;
}

.profile-image-container {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
}

.profile-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.1);
    box-shadow: 0 0 30px rgba(118, 75, 162, 0.3);
    transition: transform 0.3s ease;
}

.profile-img:hover {
    transform: scale(1.05);
    border-color: #fff;
}

.status-indicator {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    background-color: #00ff88;
    border: 3px solid var(--bg-color);
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff88;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.tagline {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 300;
}

.divider {
    color: var(--card-hover);
    margin: 0 10px;
}


.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); 
    gap: 15px;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.social-card {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: var(--glass-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(16px) saturate(180%); 
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    box-shadow: var(--glass-shadow);
    position: relative;
    overflow: hidden;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: 0.5s;
}

.social-card:hover::before {
    left: 100%;
}

.social-card:hover {
    background: var(--card-hover);
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.social-card i {
    font-size: 2rem;
    margin-bottom: 0;
    transition: color 0.3s ease;
}

.network-name {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}


.social-card.twitch {
    background: rgba(145, 70, 255, 0.15);
    border-color: rgba(145, 70, 255, 0.3);
}
.social-card.twitch i { color: var(--accent-twitch); filter: drop-shadow(0 0 5px rgba(145, 70, 255, 0.4)); }

.social-card.tiktok {
    background: rgba(255, 0, 80, 0.15);
    border-color: rgba(255, 0, 80, 0.3);
}
.social-card.tiktok i { color: var(--accent-tiktok); filter: drop-shadow(0 0 5px rgba(255, 0, 80, 0.4)); }

.social-card.youtube {
    background: rgba(255, 0, 0, 0.15);
    border-color: rgba(255, 0, 0, 0.3);
}
.social-card.youtube i { color: var(--accent-youtube); filter: drop-shadow(0 0 5px rgba(255, 0, 0, 0.4)); }

.social-card.instagram {
    background: rgba(225, 48, 108, 0.15);
    border-color: rgba(225, 48, 108, 0.3);
}
.social-card.instagram i { color: var(--accent-insta); filter: drop-shadow(0 0 5px rgba(225, 48, 108, 0.4)); }

.social-card.twitter {
    background: rgba(29, 155, 240, 0.15);
    border-color: rgba(29, 155, 240, 0.3);
}
.social-card.twitter i { color: var(--accent-twitter); filter: drop-shadow(0 0 5px rgba(29, 155, 240, 0.4)); }



.social-card.twitch:hover { 
    background: var(--accent-twitch); 
    border-color: var(--accent-twitch);
    box-shadow: 0 10px 30px rgba(145, 70, 255, 0.4);
}
.social-card.tiktok:hover { 
    background: var(--accent-tiktok); 
    border-color: var(--accent-tiktok);
    box-shadow: 0 10px 30px rgba(255, 0, 80, 0.4);
}
.social-card.youtube:hover { 
    background: var(--accent-youtube); 
    border-color: var(--accent-youtube);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.4);
}
.social-card.instagram:hover { 
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(220, 39, 67, 0.4);
}
.social-card.twitter:hover { 
    background: var(--accent-twitter); 
    border-color: var(--accent-twitter);
    box-shadow: 0 10px 30px rgba(29, 155, 240, 0.4);
}

.social-card:hover i { color: #ffffff !important; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2)); }
.social-card:hover .count, .social-card:hover .label, .social-card:hover .network-name { color: #ffffff !important; }

.stats {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.count {
    font-weight: 700;
    font-size: 1.2rem;
}

.label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


.partners-section {
    animation: fadeInUp 1s ease-out 0.6s backwards;
    margin-bottom: 60px;
}

.partners-section h2 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.partners-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.partner-card {
    background: var(--card-bg);
    padding: 15px 30px;
    border-radius: 12px;
    border: var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--glass-shadow);
    transition: transform 0.3s ease, border-color 0.3s ease;
    text-decoration: none; 

    
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}


.nolag-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 215, 0, 0.05); 
    border: 1px solid rgba(255, 215, 0, 0.2);
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.nolag-card:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 10px 30px -5px rgba(255, 215, 0, 0.1), var(--glass-shadow);
    transform: translateY(-3px);
}


.westgaming-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05); 
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.westgaming-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    box-shadow: 0 10px 30px -5px rgba(255, 255, 255, 0.15), var(--glass-shadow);
    transform: translateY(-3px);
}

.westgaming-card .partner-title i {
    color: #ffffff;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}



.partner-img-wrapper {
    width: 60px;
    height: 60px;
    background-color: transparent; 
    border-radius: 12px;
    padding: 0;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0;
}

.partner-content {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.partner-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    letter-spacing: 0.5px;
}

.partner-title i {
    color: #ffd700;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.partner-desc {
    font-size: 0.95rem !important;
    color: var(--text-secondary) !important;
    margin: 0;
    font-weight: 300;
    line-height: 1.4;
}

.partner-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.nolag-card:hover { 
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.4);
}
.westgaming-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}


.partner-name {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    color: #fff;
}

.partner-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}


@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}


.site-footer {
    margin-top: 50px;
    opacity: 0.4;
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 300;
    transition: opacity 0.3s ease;
}

.site-footer:hover {
    opacity: 0.8;
}


@media (max-width: 768px) {
    .container {
        padding: 30px 15px;
    }

    h1 {
        font-size: 2rem;
    }

    .social-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .social-card:last-child {
        grid-column: span 2; 
    }

    .nolag-card {
        padding: 15px;
    }
    
    .partner-title {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .profile-image-container {
        width: 120px;
        height: 120px;
    }

    h1 {
        font-size: 1.8rem;
    }

    .tagline {
        font-size: 0.9rem;
    }

    .social-grid {
        grid-template-columns: 1fr; 
    }
    
    .social-card:last-child {
        grid-column: auto;
    }

    
    .nolag-card, .westgaming-card {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .partner-content {
        align-items: center; 
        text-align: center;
    }

    .partner-title {
        flex-direction: column; 
        gap: 5px;
    }

    .partner-desc {
        font-size: 0.85rem !important;
    }
    
    .partner-img-wrapper {
        margin-bottom: 5px;
    }
    
    .partners-section {
        margin-bottom: 80px; 
    }
}

