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

html {
    scroll-behavior: smooth;
}

:root {
    --primary-color: #6200EA;
    --secondary-color: #3700B3;
    --dark-bg: #0A0A0A;
    --darker-bg: #050505;
    --text-primary: #FFFFFF;
    --text-secondary: #94A3B8;
    --accent-color: #2979FF;
    --neon-blue: #00B8D4;
    --neon-purple: #B388FF;
    --neon-green: #00E676;
    --neon-cyan: #00BCD4;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--darker-bg);
    color: var(--text-primary);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#page-wrapper {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

main {
    flex-grow: 1;
}

/* Remove the scanline effect */
body::before {
    display: none;
}

/* Add a subtle gradient background */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(98, 0, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(41, 121, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 184, 212, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 0% 100%, rgba(0, 230, 118, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 100% 0%, rgba(0, 188, 212, 0.05) 0%, transparent 50%);
    z-index: -1;
}

.container {
    margin: 0 auto;
    padding: 0;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

/* Navigation */
.navbar {
    background: rgba(5, 5, 5, 0.95);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(98, 0, 234, 0.2);
    box-shadow: 0 4px 30px rgba(98, 0, 234, 0.1);
    backdrop-filter: blur(10px);
}

.navbar .container {
    display: flex;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 1px;
    padding-left: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-container {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.logo-border {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(45deg, #2979FF, #6200EA);
    z-index: 1;
    animation: rotate 3s linear infinite;
}

.logo-border::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    border-radius: 50%;
    background: var(--darker-bg);
    z-index: 1;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.nav-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
}

.hamburger {
    display: none;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: auto;
    position: relative;
    z-index: 1001;
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 1rem;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(5, 5, 5, 0.98);
        padding: 6rem 2rem 2rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        backdrop-filter: blur(10px);
        border-left: 1px solid rgba(98, 0, 234, 0.1);
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        visibility: hidden;
    }

    .nav-links.active {
        display: flex;
        transform: translateX(0);
        visibility: visible;
    }

    .nav-links.active .language-switcher .language-dropdown {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
        position: static; /* Make it part of the flow */
        width: 100%;
        margin-top: 1rem;
        box-shadow: none;
        border: none;
        background: transparent;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 8px;
        cursor: pointer;
        padding: 0.5rem;
        margin-left: auto;
        position: relative;
        z-index: 1001;
    }

    .hamburger span {
        display: block;
        width: 30px;
        height: 2px;
        background: var(--text-primary);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 2px;
        transform-origin: center;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }

    .logo-container {
        width: 35px;
        height: 35px;
    }
    
    .logo {
        font-size: 1rem;
        gap: 0.75rem;
        padding-left: 0;
    }
}

/* Section Divider */
.section-divider {
    position: relative;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(98, 0, 234, 0.2) 25%,
        rgba(41, 121, 255, 0.3) 50%,
        rgba(98, 0, 234, 0.2) 75%,
        transparent 100%
    );
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    box-shadow: 0 0 20px rgba(98, 0, 234, 0.1);
}

.section-divider::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -3px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(45deg, 
        var(--neon-purple),
        var(--neon-blue),
        var(--neon-cyan)
    );
    box-shadow: 
        0 0 5px rgba(98, 0, 234, 0.2),
        0 0 10px rgba(41, 121, 255, 0.15),
        0 0 15px rgba(0, 188, 212, 0.1);
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    color: var(--text-primary);
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--neon-cyan));
    border-radius: 2px;
    box-shadow: 0 0 20px var(--accent-color);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 0 0 2rem;
    width: 100%;
}

/* Modern Particle Effect */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(98, 0, 234, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(41, 121, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 184, 212, 0.03) 0%, transparent 50%);
    z-index: 1;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: linear-gradient(45deg, 
        var(--neon-purple),
        var(--neon-blue),
        var(--neon-cyan)
    );
    border-radius: 50%;
    box-shadow: 
        0 0 5px var(--neon-purple),
        0 0 10px var(--neon-blue),
        0 0 15px var(--neon-cyan);
    opacity: 0.2;
    animation: particleFloat 20s infinite linear;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: -5s;
}

.particle:nth-child(3) {
    top: 40%;
    left: 40%;
    animation-delay: -10s;
}

.particle:nth-child(4) {
    top: 80%;
    left: 20%;
    animation-delay: -15s;
}

.particle:nth-child(5) {
    top: 30%;
    left: 70%;
    animation-delay: -7s;
}

.particle:nth-child(6) {
    top: 70%;
    left: 30%;
    animation-delay: -12s;
}

@keyframes particleFloat {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(100px, 50px) scale(1.5);
        opacity: 0.5;
    }
    50% {
        transform: translate(50px, 100px) scale(1);
        opacity: 0.3;
    }
    75% {
        transform: translate(-50px, 50px) scale(1.5);
        opacity: 0.5;
    }
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
}

.hero-content {
    text-align: center;
    max-width: 800px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 6rem;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1.1;
    position: relative;
    display: inline-block;
    transform-style: preserve-3d;
    perspective: 1000px;
    transform: translateZ(0);
    background: linear-gradient(135deg, 
        var(--neon-purple) 0%,
        var(--neon-blue) 30%,
        var(--neon-cyan) 50%,
        var(--neon-purple) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 
        0 0 15px rgba(98, 0, 234, 0.1),
        0 0 30px rgba(41, 121, 255, 0.08),
        0 0 45px rgba(0, 188, 212, 0.05);
    animation: gradientFlow 8s linear infinite;
}

.hero-logo {
    max-width: 600px;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 0 5px rgba(98, 0, 234, 0.1))
            drop-shadow(0 0 15px rgba(41, 121, 255, 0.1))
            drop-shadow(0 0 25px rgba(0, 188, 212, 0.1));
    transition: all 0.3s ease;
}

.hero-content:hover .hero h1 {
    animation: float3D 3s ease-in-out infinite;
}

@keyframes float3D {
    0%, 100% {
        transform: translateZ(0) rotateX(0deg) rotateY(0deg);
    }
    25% {
        transform: translateZ(20px) rotateX(2deg) rotateY(2deg);
    }
    50% {
        transform: translateZ(0) rotateX(0deg) rotateY(0deg);
    }
    75% {
        transform: translateZ(-20px) rotateX(-2deg) rotateY(-2deg);
    }
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3.5rem;
        transform: translateZ(0);
    }
    
    .hero-logo {
        max-width: 280px;
        margin: 0 auto 0.5rem;
    }
    
    .hero-content {
        /* padding removed */
    }
    
    .hero h1::before {
        transform: translateZ(-10px);
    }
    
    .hero h1::after {
        transform: translateZ(-20px);
    }
}

/* Remove the divider styles */
.hero h1::after {
    display: none;
}

.tagline {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin: 1rem 0 3rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 400;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.hero .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-decoration: none;
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    min-width: 280px;
    line-height: 1;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    color: white;
    text-shadow: 
        -1px -1px 1px rgba(0,0,0,0.3),
        1px -1px 1px rgba(0,0,0,0.3),
        -1px 1px 1px rgba(0,0,0,0.3),
        1px 1px 1px rgba(0,0,0,0.3);
}

.hero .btn::before {
    content: '';
    position: absolute;
    top: var(--y, 50%);
    left: var(--x, 50%);
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: width 0.6s ease, height 0.6s ease;
}

.hero .btn:hover {
    transform: translateY(-3px);
}

.hero .btn.primary {
    background: linear-gradient(90deg, 
        rgba(41, 121, 255, 0.9) 0%,
        rgba(41, 121, 255, 1) 20%,
        rgba(30, 136, 229, 1) 80%,
        rgba(30, 136, 229, 0.9) 100%
    );
    box-shadow: 
        inset 0 -2px 0 rgba(0,0,0,0.3),
        inset 0 2px 0 rgba(255,255,255,0.5),
        0 1px 0 #1E88E5,
        0 4px 15px rgba(41, 121, 255, 0.4);
}

.hero .btn.primary:hover {
    box-shadow: 
        inset 0 -2px 0 rgba(0,0,0,0.3),
        inset 0 2px 0 rgba(255,255,255,0.5),
        0 1px 0 #1E88E5,
        0 8px 20px rgba(41, 121, 255, 0.5);
}

.hero .btn.secondary {
    background: linear-gradient(90deg, 
        rgba(98, 0, 234, 0.9) 0%,
        rgba(98, 0, 234, 1) 20%,
        rgba(55, 0, 179, 1) 80%,
        rgba(55, 0, 179, 0.9) 100%
    );
    box-shadow: 
        inset 0 -2px 0 rgba(0,0,0,0.3),
        inset 0 2px 0 rgba(255,255,255,0.5),
        0 1px 0 #3700B3,
        0 4px 15px rgba(98, 0, 234, 0.4);
}

.hero .btn.secondary:hover {
    box-shadow: 
        inset 0 -2px 0 rgba(0,0,0,0.3),
        inset 0 2px 0 rgba(255,255,255,0.5),
        0 1px 0 #3700B3,
        0 8px 20px rgba(98, 0, 234, 0.5);
}

.hero .btn.discord-btn {
    background: linear-gradient(90deg, 
        rgba(98, 0, 234, 0.9) 0%,
        rgba(98, 0, 234, 1) 20%,
        rgba(55, 0, 179, 1) 80%,
        rgba(55, 0, 179, 0.9) 100%
    );
    box-shadow: 
        inset 0 -2px 0 rgba(0,0,0,0.3),
        inset 0 2px 0 rgba(255,255,255,0.5),
        0 1px 0 #3700B3,
        0 4px 15px rgba(98, 0, 234, 0.4);
}

.hero .btn.discord-btn:hover {
    box-shadow: 
        inset 0 -2px 0 rgba(0,0,0,0.3),
        inset 0 2px 0 rgba(255,255,255,0.5),
        0 1px 0 #3700B3,
        0 8px 20px rgba(98, 0, 234, 0.5);
}

.btn-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-icon.kick-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.hero .btn:hover .btn-icon {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .tagline {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        margin: 0 1rem;
    }

    .hero .btn {
        min-width: 90%;
        margin: 0 auto;
        padding: 14px 24px;
    }

    .hero .btn.secondary {
        min-width: 90% !important;
    }
}

/* Add gradient line after hero section */
.hero::after {
    content: none;
}

/* Hero bottom divider */
.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(98, 0, 234, 0.7),
        rgba(41, 121, 255, 0.7),
        transparent
    );
    z-index: 3;
    box-shadow: 
        0 0 15px rgba(98, 0, 234, 0.5),
        0 0 25px rgba(41, 121, 255, 0.4);
    filter: blur(1px);
}

/* Featured Section */
.featured {
    background: var(--darker-bg);
    padding: 4rem 0;
    width: 100%;
    position: relative;
}

.featured::before {
    content: none;
}

.featured .container {
    max-width: 1400px;
}

.featured-content-wrapper {
    padding: 4rem 2rem;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.featured-item {
    background: rgba(13, 13, 13, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(98, 0, 234, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.featured-item:hover {
    transform: translateY(-5px);
    border-color: var(--neon-purple);
    box-shadow: 0 12px 40px rgba(98, 0, 234, 0.2);
}

.featured-image {
    position: relative;
    width: 100%;
    flex-shrink: 0;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top;
}

/* Position partner logos at the top of their container */
.featured-image:has(.featured-badge) img {
    object-position: top;
}

/* Modern Badge Styles */
.featured-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 
        0 4px 12px rgba(255, 107, 107, 0.4),
        0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 10;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: badgePulse 2s ease-in-out infinite;
}

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

.featured-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-grow: 1;
    justify-content: space-between;
}

.featured-content h3 {
    margin-bottom: 1rem;
}

.featured-content h3.long-name {
    font-size: 1em;
}

.featured-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* Featured Item Buttons - Matching Hero Section Styles */
.featured-item .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 28px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-decoration: none;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    min-width: 200px;
    line-height: 1;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    color: white;
    text-shadow: 
        -1px -1px 1px rgba(0,0,0,0.3),
        1px -1px 1px rgba(0,0,0,0.3),
        -1px 1px 1px rgba(0,0,0,0.3),
        1px 1px 1px rgba(0,0,0,0.3);
}

.featured-item .btn::before {
    content: '';
    position: absolute;
    top: var(--y, 50%);
    left: var(--x, 50%);
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: width 0.6s ease, height 0.6s ease;
}

.featured-item .btn:hover {
    transform: translateY(-2px);
}

.featured-item .btn:hover .btn-icon {
    transform: translateX(3px);
}

/* YouTube Button in Featured Items */
.featured-item .btn.youtube-btn {
    background: linear-gradient(90deg, 
        rgba(255, 0, 0, 0.9) 0%,
        rgba(255, 0, 0, 1) 20%,
        rgba(220, 0, 0, 1) 80%,
        rgba(220, 0, 0, 0.9) 100%
    );
    box-shadow: 
        inset 0 -2px 0 rgba(0,0,0,0.3),
        inset 0 2px 0 rgba(255,255,255,0.5),
        0 1px 0 #DC0000,
        0 4px 15px rgba(255, 0, 0, 0.4);
}

.featured-item .btn.youtube-btn:hover {
    box-shadow: 
        inset 0 -2px 0 rgba(0,0,0,0.3),
        inset 0 2px 0 rgba(255,255,255,0.5),
        0 1px 0 #DC0000,
        0 6px 18px rgba(255, 0, 0, 0.5);
}

/* Kick Button in Featured Items */
.featured-item .btn.kick-btn {
    background: linear-gradient(90deg, 
        rgba(76, 175, 80, 0.9) 0%,
        rgba(76, 175, 80, 1) 20%,
        rgba(56, 142, 60, 1) 80%,
        rgba(56, 142, 60, 0.9) 100%
    );
    box-shadow: 
        inset 0 -2px 0 rgba(0,0,0,0.3),
        inset 0 2px 0 rgba(255,255,255,0.5),
        0 1px 0 #00C864,
        0 4px 15px rgba(0, 230, 118, 0.4);
}

.featured-item .btn.kick-btn:hover {
    box-shadow: 
        inset 0 -2px 0 rgba(0,0,0,0.3),
        inset 0 2px 0 rgba(255,255,255,0.5),
        0 1px 0 #00C864,
        0 6px 18px rgba(0, 230, 118, 0.5);
}

/* Button Icons in Featured Items */
.featured-item .btn-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.featured-item .btn-icon.kick-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .featured {
        padding: 2rem 0;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .featured-image {
        height: 200px;
    }
    
    .featured-item:not(:has(.featured-badge)) .featured-image {
        height: auto;
    }
    
    .featured-image:has(.featured-badge) {
        display: flex;
        align-items: center;
        justify-content: center;
        height: auto;
    }
    
    /* Mobile Button Styles */
    .featured-item .btn {
        min-width: 100%;
        padding: 12px 24px;
        font-size: 0.85rem;
    }
    
    .featured-item .btn-icon {
        width: 16px;
        height: 16px;
    }
    
    .featured-item .btn-icon.kick-icon {
        width: 18px;
        height: 18px;
    }

    .featured-badge {
        top: 8px;
        right: 8px;
        padding: 4px 10px;
        font-size: 0.7rem;
    }
}

/* Stats Section */
.stats {
    background: var(--darker-bg);
    position: relative;
}

.stats::before {
    content: none;
}

.stats-wrapper {
    padding: 8rem 0;
    position: relative;
    z-index: 2;
}

.stats .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    background: rgba(13, 13, 13, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(41, 121, 255, 0.1);
    border-radius: 15px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--neon-blue);
    box-shadow: 0 12px 40px rgba(41, 121, 255, 0.2);
}

.stat-icon {
    margin-bottom: 2rem;
}

.stat-icon i {
    font-size: 2.5rem;
    background: linear-gradient(45deg, 
        var(--neon-purple),
        var(--neon-blue),
        var(--neon-cyan)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 8px rgba(41, 121, 255, 0.2));
}

.stat-info h3 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.stat-info h3::after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--accent-color);
    opacity: 0.5;
}

.stat-info p {
    color: var(--text-secondary);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    margin-top: 1rem;
}

@media (max-width: 992px) {
    .stats-wrapper {
        padding: 6rem 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 700px;
    }
    
    .stat-item {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 576px) {
    .stats-wrapper {
        padding: 4rem 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
    }
    
    .stat-item {
        padding: 2rem;
    }
    
    .stat-info h3 {
        font-size: 3rem;
    }
    
    .stat-icon i {
        font-size: 2rem;
    }
}

/* Footer Styles */
.footer {
    background: rgba(13, 13, 13, 0.98);
    padding: 5rem 0 0;
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    border-top: 1px solid rgba(98, 0, 234, 0.2);
    box-shadow: 0 -4px 30px rgba(98, 0, 234, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 2rem;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.footer-section h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, 
    var(--neon-purple) 0%,
    var(--neon-blue) 30%,
    var(--neon-cyan) 50%,
    var(--neon-purple) 100%
);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 1rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    position: relative;
}

.footer-section ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--text-primary);
    transition: width 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--text-primary);
    transform: translateX(5px);
}

.footer-section ul li a:hover::after {
    width: 100%;
}

.coming-soon-badge {
    background: var(--accent-color);
    color: var(--text-primary);
    font-size: 0.6rem;
    padding: 2px 6px;
    border-radius: 4px;
    margin-right: 8px;
    text-transform: uppercase;
    font-weight: 700;
}

.footer .social-links {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-top: 1rem;
}

.footer .social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer .social-link img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.footer .social-link:hover {
    transform: translateY(-3px);
}

.footer .social-link.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.footer .social-link.instagram:hover {
    background: linear-gradient(45deg, #e4405f, #c13584);
    border-color: #e4405f;
}

.footer .social-link.discord:hover {
    background: #5865F2;
    border-color: #5865F2;
}

.footer .social-link.kick:hover {
    background: #00ff00;
    border-color: #00ff00;
}

.footer .social-link.youtube:hover {
    background: #ff0000;
    border-color: #ff0000;
}

.footer .social-link.tiktok:hover {
    background: #000000;
    border-color: #000000;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 2rem;
    margin: 0;
}

.footer-terms {
    display: flex;
    gap: 2rem;
}

.footer-terms a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    position: relative;
}

.footer-terms a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--text-primary);
    transition: width 0.3s ease;
}

.footer-terms a:hover {
    color: var(--text-primary);
}

.footer-terms a:hover::after {
    width: 100%;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-align: right;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        padding: 1.5rem;
        margin-top: 1.5rem;
    }

    .footer-terms {
        flex-direction: column;
        gap: 0.8rem;
    }

    .footer-bottom p {
        text-align: center;
    }
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        padding: 0 1.5rem;
    }

    .footer-section:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section h3 {
        font-size: 2rem;
    }

    .footer-section h4 {
        font-size: 1rem;
    }

    .footer .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .footer-terms {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .footer-terms a {
        font-size: 0.85rem;
    }

    .footer-bottom p {
        text-align: center;
        font-size: 0.85rem;
        margin-top: 0.5rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2.5rem 0 0;
    }

    .footer-content {
        gap: 2rem;
        padding: 0 1rem;
    }

    .footer-section h3 {
        font-size: 1.8rem;
    }

    .footer .social-links {
        gap: 0.75rem;
    }

    .footer .social-link {
        width: 36px;
        height: 36px;
    }

    .footer .social-link img {
        width: 20px;
        height: 20px;
    }

    .footer-terms {
        gap: 0.75rem;
    }
}

/* Animations */
[data-aos] {
    opacity: 1 !important;
    transition: none !important;
}

[data-aos].aos-animate {
    opacity: 1 !important;
}

@media (max-width: 768px) {
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-image {
        height: 250px;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 2;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
    font-weight: 500;
    animation: fadeInOut 2s ease-in-out infinite;
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(
        to bottom,
        var(--neon-purple) 0%,
        var(--neon-blue) 50%,
        var(--neon-cyan) 100%
    );
    position: relative;
    border-radius: 2px;
    overflow: hidden;
}

.scroll-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100%);
    }
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .scroll-indicator {
        bottom: 1.5rem;
    }
    
    .scroll-text {
        font-size: 0.8rem;
    }
    
    .scroll-line {
        height: 50px;
    }
}

/* Remove the custom YouTube and Kick button styles */
.hero .btn.youtube-btn,
.hero .btn.kick-btn,
.hero .btn.discord-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-decoration: none;
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    min-width: 280px;
    line-height: 1;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    color: white;
    text-shadow: 
        -1px -1px 1px rgba(0,0,0,0.3),
        1px -1px 1px rgba(0,0,0,0.3),
        -1px 1px 1px rgba(0,0,0,0.3),
        1px 1px 1px rgba(0,0,0,0.3);
}

.hero .btn.youtube-btn {
    background: linear-gradient(90deg, 
        rgba(255, 0, 0, 0.9) 0%,
        rgba(255, 0, 0, 1) 20%,
        rgba(220, 0, 0, 1) 80%,
        rgba(220, 0, 0, 0.9) 100%
    );
    box-shadow: 
        inset 0 -2px 0 rgba(0,0,0,0.3),
        inset 0 2px 0 rgba(255,255,255,0.5),
        0 1px 0 #DC0000,
        0 4px 15px rgba(255, 0, 0, 0.4);
}

.hero .btn.youtube-btn:hover {
    transform: translateY(-3px);
    box-shadow: 
        inset 0 -2px 0 rgba(0,0,0,0.3),
        inset 0 2px 0 rgba(255,255,255,0.5),
        0 1px 0 #DC0000,
        0 8px 20px rgba(255, 0, 0, 0.5);
}

.hero .btn.kick-btn {
    background: linear-gradient(90deg, 
        rgba(76, 175, 80, 0.9) 0%,
        rgba(76, 175, 80, 1) 20%,
        rgba(56, 142, 60, 1) 80%,
        rgba(56, 142, 60, 0.9) 100%
    );
    box-shadow: 
        inset 0 -2px 0 rgba(0,0,0,0.3),
        inset 0 2px 0 rgba(255,255,255,0.5),
        0 1px 0 #00C864,
        0 4px 15px rgba(0, 230, 118, 0.4);
}

.hero .btn.kick-btn:hover {
    transform: translateY(-3px);
    box-shadow: 
        inset 0 -2px 0 rgba(0,0,0,0.3),
        inset 0 2px 0 rgba(255,255,255,0.5),
        0 1px 0 #00C864,
        0 8px 20px rgba(0, 230, 118, 0.5);
}

/* Page Hero for inner pages */
.page-hero {
    background: linear-gradient(135deg, rgba(98, 0, 234, 0.1) 0%, rgba(41, 121, 255, 0.1) 100%);
    padding: 8rem 0 4rem 0;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-shadow: 0 0 20px rgba(98, 0, 234, 0.3);
}

.page-hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* Provider Logos Section */
.provider-logos {
    margin-top: 3rem;
    padding: 2rem 0;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.provider-logos-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: none;
    margin: 0;
    animation: slideLeft 30s linear infinite;
    width: max-content;
}

.provider-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(1.2) contrast(1.1);
    transition: all 0.4s ease;
    opacity: 0.8;
    flex-shrink: 0;
    -webkit-filter: grayscale(100%) brightness(1.2) contrast(1.1);
}

.provider-logo:hover {
    filter: grayscale(0%) brightness(1) contrast(1);
    opacity: 1;
    transform: scale(1.1);
    -webkit-filter: grayscale(0%) brightness(1) contrast(1);
}

/* Specific styling for SVG logos */
.provider-logo[src*=".svg"] {
    filter: brightness(0) invert(1) saturate(0);
    -webkit-filter: brightness(0) invert(1) saturate(0);
}

.provider-logo[src*=".svg"]:hover {
    filter: brightness(1) saturate(1) contrast(1);
    -webkit-filter: brightness(1) saturate(1) contrast(1);
}

@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .provider-logos {
        margin-top: 2rem;
        padding: 1.5rem 0;
    }
    
    .provider-logos-container {
        gap: 3rem;
    }
    
    .provider-logo {
        height: 45px;
    }
}

@media (max-width: 576px) {
    .provider-logos {
        margin-top: 1.5rem;
        padding: 1rem 0;
    }
    
    .provider-logos-container {
        gap: 2.5rem;
    }
    
    .provider-logo {
        height: 40px;
    }
} 