

/* Header */
.header {
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-content {
    max-width: 1750px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 250px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 18px;
    height: 65px;
    text-decoration: none;
}

.logo img {
    height: 100%;
    width: auto;
    filter: drop-shadow(0 0 12px rgba(168, 85, 247, 0.8));
    animation: glow 2s ease-in-out infinite alternate;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.social-links {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.social-btn {
    padding: 10px 15px;
    border-radius: 31px;
    text-decoration: none;
    color: white;
    font-size: 13px;
    font-weight: bold;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 90px;
    text-align: center;
    white-space: nowrap;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
}

.social-btn:hover::before {
    left: 100%;
}

.telegram { background: linear-gradient(45deg, #0088cc, #00aaff); }
.discord { background: linear-gradient(45deg, #7289da, #99aeff); }
.instagram { background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af); }
.twitch { background: linear-gradient(45deg, #9146ff, #bb66ff); }
.youtube { background: linear-gradient(45deg, #ff0000, #ff4444); }
.twitter { background: linear-gradient(45deg, #1da1f2, #44bbff); }

.social-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.casinim-tv {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    padding: 10px 20px;
    border-radius: 31px;
    color: white;
    font-weight: bold;
    box-shadow: 0 5px 19px rgba(59, 130, 246, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 13px;
    position: relative;
    overflow: hidden;
    min-width: 90px;
    text-align: center;
    white-space: nowrap;
}

.casinim-tv::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
}

.casinim-tv:hover::before {
    left: 100%;
}

.casinim-tv:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.6);
}

.tv-icon {
    width: 20px;
    height: 20px;
    color: white;
    animation: tvGlow 2s ease-in-out infinite alternate;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .header {
        position: relative;
        top: auto;
        padding: 10px 0;
    }

    .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 15px;
    }

    .logo {
        height: 50px;
    }

    .social-links, 
    .casinim-tv-section {
        display: none;
    }

    .menu-toggle {
        display: flex;
        background: none;
        border: none;
        color: white;
        padding: 8px;
        cursor: pointer;
        border-radius: 50%;
        transition: background-color 0.3s ease;
    }
    
    .menu-toggle:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

    .menu-toggle .menu-icon {
        width: 24px;
        height: 24px;
        transition: transform 0.3s ease;
    }

    .menu-toggle[aria-expanded="true"] .menu-icon {
        transform: rotate(90deg);
    }
}
