/* ============================================
   GRID88 THEME - main.css (moban-25)
   Arena Stage Lighting Theme
   Colors: #6C5CE7 (Purple), #A29BFE (Gold), #F8F9FA (Black)
   Fonts: Audiowide + Teko
   ============================================ */

/* === RESET & BASE === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #F8F9FA;
    color: #2C3E50;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', cursive;
    font-weight: 400;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: #A29BFE;
    transition: all 0.3s ease;
}

a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.gold-text {
    color: #A29BFE;
    background: linear-gradient(90deg, #A29BFE, #FFA500, #A29BFE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.purple-text {
    color: #6C5CE7;
    background: linear-gradient(90deg, #6C5CE7, #9C27B0, #6C5CE7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === KEYFRAME ANIMATIONS === */
@keyframes arenaSpotlight {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1) rotate(0deg);
        filter: blur(40px);
    }
    25% {
        opacity: 0.7;
        transform: scale(1.3) rotate(5deg);
        filter: blur(30px);
    }
    50% {
        opacity: 1;
        transform: scale(1.5) rotate(0deg);
        filter: blur(20px);
    }
    75% {
        opacity: 0.6;
        transform: scale(1.2) rotate(-5deg);
        filter: blur(35px);
    }
}

@keyframes crowdRoar {
    0%, 100% {
        transform: scaleY(1) translateY(0);
        opacity: 0.5;
    }
    10% {
        transform: scaleY(1.05) translateY(-2px);
        opacity: 0.7;
    }
    20% {
        transform: scaleY(1) translateY(0);
        opacity: 0.5;
    }
    30% {
        transform: scaleY(1.08) translateY(-3px);
        opacity: 0.8;
    }
    50% {
        transform: scaleY(1.1) translateY(-5px);
        opacity: 1;
    }
    70% {
        transform: scaleY(1.05) translateY(-2px);
        opacity: 0.7;
    }
    90% {
        transform: scaleY(1.02) translateY(-1px);
        opacity: 0.6;
    }
}

@keyframes stageBeam {
    0% {
        transform: rotate(-30deg) scaleY(1);
        opacity: 0.4;
        background-position: 0% 0%;
    }
    25% {
        transform: rotate(-15deg) scaleY(1.2);
        opacity: 0.8;
        background-position: 50% 0%;
    }
    50% {
        transform: rotate(0deg) scaleY(1.5);
        opacity: 1;
        background-position: 100% 0%;
    }
    75% {
        transform: rotate(15deg) scaleY(1.2);
        opacity: 0.8;
        background-position: 50% 0%;
    }
    100% {
        transform: rotate(30deg) scaleY(1);
        opacity: 0.4;
        background-position: 0% 0%;
    }
}

@keyframes tournamentPulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(106, 27, 154, 0.3),
                    0 0 20px rgba(106, 27, 154, 0.2),
                    0 0 40px rgba(106, 27, 154, 0.1);
        transform: scale(1);
    }
    25% {
        box-shadow: 0 0 15px rgba(255, 215, 0, 0.4),
                    0 0 30px rgba(106, 27, 154, 0.3),
                    0 0 60px rgba(106, 27, 154, 0.15);
        transform: scale(1.02);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.5),
                    0 0 40px rgba(255, 215, 0, 0.3),
                    0 0 80px rgba(106, 27, 154, 0.2);
        transform: scale(1.05);
    }
    75% {
        box-shadow: 0 0 15px rgba(106, 27, 154, 0.4),
                    0 0 30px rgba(106, 27, 154, 0.25),
                    0 0 50px rgba(106, 27, 154, 0.12);
        transform: scale(1.02);
    }
}

@keyframes spotlightSweep {
    0% { left: -20%; }
    100% { left: 120%; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatUpDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes shimmerGold {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.6),
                    0 0 40px rgba(106, 27, 154, 0.3);
    }
}

@keyframes beamRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* === HEADER === */
.site-header {
    background: linear-gradient(180deg, #F8F9FA 0%, #EFEFFF 50%, #F8F9FA 100%);
    border-bottom: 2px solid rgba(106, 27, 154, 0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(106, 27, 154, 0.3);
}

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

.logo img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
    transition: all 0.3s ease;
}

.logo img:hover {
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.6));
    transform: scale(1.05);
}

.header-time {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #A29BFE;
    letter-spacing: 1px;
    font-weight: 300;
}

.header-btn-group {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-login {
    padding: 8px 20px;
    border: 1px solid rgba(106, 27, 154, 0.6);
    border-radius: 4px;
    color: #2C3E50;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-login:hover {
    border-color: #6C5CE7;
    background: rgba(106, 27, 154, 0.2);
    box-shadow: 0 0 15px rgba(106, 27, 154, 0.3);
    color: #fff;
}

.btn-register {
    padding: 8px 20px;
    background: linear-gradient(135deg, #A29BFE, #FFA500);
    border-radius: 4px;
    color: #F8F9FA;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
}

.btn-register:hover {
    background: linear-gradient(135deg, #FFA500, #A29BFE);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
    color: #F8F9FA;
}

.btn-demo {
    padding: 8px 20px;
    border: 1px solid rgba(255, 215, 0, 0.5);
    border-radius: 4px;
    color: #A29BFE;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-demo:hover {
    border-color: #A29BFE;
    background: rgba(255, 215, 0, 0.1);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

/* === NAVIGATION === */
.main-navigation {
    background: linear-gradient(90deg, #F8F9FA, #EFEFFF, #F8F9FA);
    border-top: 1px solid rgba(106, 27, 154, 0.3);
    border-bottom: 1px solid rgba(106, 27, 154, 0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 12px 16px;
    color: #2C3E50;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #A29BFE, transparent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: #A29BFE;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.nav-link:hover::after {
    width: 80%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #A29BFE;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
}

/* Dropdown */
.has-dropdown .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #EFEFFF;
    min-width: 200px;
    border: 1px solid rgba(106, 27, 154, 0.4);
    border-radius: 4px;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.has-dropdown:hover .sub-menu {
    display: block;
}

.sub-menu .nav-link {
    padding: 10px 20px;
    font-size: 14px;
}

/* === NOTIFICATION BAR === */
.notification-bar {
    background: linear-gradient(90deg, #6C5CE7, #5B4BD5, #6C5CE7);
    padding: 8px 0;
    overflow: hidden;
    position: relative;
}

.notification-content {
    display: flex;
    gap: 50px;
    animation: scrollNotification 30s linear infinite;
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #A29BFE;
    letter-spacing: 0.5px;
}

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

/* === ANNOUNCEMENT MODAL === */
.announcement-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.announcement-modal.active {
    display: flex;
}

.announcement-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.announcement-content {
    position: relative;
    background: linear-gradient(135deg, #EFEFFF, #F8F9FA);
    border: 2px solid rgba(106, 27, 154, 0.6);
    border-radius: 12px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    z-index: 10001;
    animation: tournamentPulse 2s ease infinite;
}

.announcement-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: #A29BFE;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.announcement-close:hover {
    color: #fff;
    transform: rotate(90deg);
}

.announcement-header-icon {
    text-align: center;
    margin-bottom: 15px;
}

.announcement-header-icon i {
    font-size: 40px;
    color: #A29BFE;
    animation: floatUpDown 2s ease infinite;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.announcement-title {
    text-align: center;
    font-family: 'Poppins', cursive;
    font-size: 20px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.announcement-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.announcement-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: rgba(106, 27, 154, 0.15);
    border: 1px solid rgba(106, 27, 154, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
    color: #2C3E50;
}

.announcement-item:hover {
    background: rgba(106, 27, 154, 0.3);
    border-color: #6C5CE7;
    transform: translateX(5px);
    color: #fff;
}

.announcement-badge {
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
    white-space: nowrap;
}

.announcement-badge.hot {
    background: linear-gradient(135deg, #ff4444, #cc0000);
    color: #fff;
}

.announcement-badge.new {
    background: linear-gradient(135deg, #6C5CE7, #9C27B0);
    color: #fff;
}

.announcement-badge.info {
    background: linear-gradient(135deg, #A29BFE, #FFA500);
    color: #F8F9FA;
}

.announcement-text {
    flex: 1;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.announcement-item i.fa-chevron-right {
    color: #6C5CE7;
    font-size: 12px;
}

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

.announcement-cta {
    display: inline-block;
    padding: 12px 40px;
    background: linear-gradient(135deg, #A29BFE, #FFA500);
    color: #F8F9FA;
    font-family: 'Poppins', cursive;
    font-size: 16px;
    border-radius: 6px;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.announcement-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 25px rgba(255, 215, 0, 0.5);
    color: #F8F9FA;
}

/* === HERO SECTION === */
.arena-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(ellipse at center, #EFEFFF 0%, #F8F9FA 70%);
    margin-bottom: 40px;
    border-radius: 12px;
    border: 1px solid rgba(106, 27, 154, 0.3);
}

.stage-beams {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.stage-beam {
    position: absolute;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, rgba(106, 27, 154, 0.8), rgba(255, 215, 0, 0.3), transparent);
    transform-origin: top center;
    opacity: 0.6;
}

.stage-beam.beam-1 {
    left: 10%;
    animation: stageBeam 6s ease-in-out infinite;
    animation-delay: 0s;
}

.stage-beam.beam-2 {
    left: 30%;
    animation: stageBeam 7s ease-in-out infinite;
    animation-delay: 1s;
}

.stage-beam.beam-3 {
    left: 50%;
    animation: stageBeam 5s ease-in-out infinite;
    animation-delay: 0.5s;
}

.stage-beam.beam-4 {
    left: 70%;
    animation: stageBeam 8s ease-in-out infinite;
    animation-delay: 2s;
}

.stage-beam.beam-5 {
    left: 90%;
    animation: stageBeam 6.5s ease-in-out infinite;
    animation-delay: 1.5s;
}

.arena-spotlight-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.spotlight {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
}

.spotlight.spotlight-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(106, 27, 154, 0.4), transparent);
    top: 10%;
    left: 20%;
    animation: arenaSpotlight 5s ease infinite;
}

.spotlight.spotlight-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3), transparent);
    top: 30%;
    right: 15%;
    animation: arenaSpotlight 7s ease infinite;
    animation-delay: 1s;
}

.spotlight.spotlight-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(106, 27, 154, 0.3), transparent);
    bottom: 20%;
    left: 50%;
    animation: arenaSpotlight 6s ease infinite;
    animation-delay: 2s;
}

.hero-inner-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 40px 20px;
    max-width: 800px;
}

.hero-main-title {
    margin-bottom: 25px;
}

.hero-brand {
    display: block;
    font-family: 'Poppins', cursive;
    font-size: 64px;
    letter-spacing: 10px;
    background: linear-gradient(90deg, #A29BFE, #FFA500, #A29BFE, #FFA500);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerGold 3s linear infinite;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.4));
}

.hero-divider-line {
    display: block;
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #6C5CE7, #A29BFE, #6C5CE7, transparent);
    margin: 15px auto;
}

.hero-tagline {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    letter-spacing: 5px;
    color: #2C3E50;
    font-weight: 300;
}

.hero-description {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.hero-stats-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    display: block;
    font-family: 'Poppins', cursive;
    font-size: 32px;
    color: #A29BFE;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.3));
}

.hero-stat-label {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #aaa;
    letter-spacing: 1px;
    font-weight: 300;
}

.hero-cta-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-gold-primary {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(135deg, #A29BFE, #FFA500);
    color: #F8F9FA;
    font-family: 'Poppins', cursive;
    font-size: 16px;
    border-radius: 6px;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    animation: pulseGlow 2s ease infinite;
}

.btn-gold-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
    color: #F8F9FA;
}

.btn-outline-gold {
    display: inline-block;
    padding: 14px 40px;
    border: 2px solid #A29BFE;
    color: #A29BFE;
    font-family: 'Poppins', cursive;
    font-size: 16px;
    border-radius: 6px;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-outline-gold:hover {
    background: rgba(255, 215, 0, 0.1);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    transform: translateY(-3px);
    color: #A29BFE;
}

/* === SECTION TITLES === */
.section-title {
    font-family: 'Poppins', cursive;
    font-size: 28px;
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: 3px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #6C5CE7, #A29BFE, #6C5CE7);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #aaa;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 35px;
}

/* === ARENA STAR GAMES === */
.arena-star-games {
    padding: 40px 0;
    position: relative;
}

.arena-star-games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.arena-star-game-card {
    position: relative;
    background: linear-gradient(135deg, rgba(26, 10, 46, 0.8), rgba(13, 13, 13, 0.9));
    border: 1px solid rgba(106, 27, 154, 0.3);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
    display: block;
    color: #2C3E50;
}

.arena-star-game-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(106, 27, 154, 0.1), transparent, rgba(255, 215, 0, 0.1), transparent);
    animation: beamRotate 8s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.arena-star-game-card:hover::before {
    opacity: 1;
}

.arena-star-game-card:hover {
    border-color: #6C5CE7;
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(106, 27, 154, 0.3);
    color: #fff;
}

.arena-star-game-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(106, 27, 154, 0.1), transparent);
    pointer-events: none;
    transition: all 0.4s ease;
}

.arena-star-game-card:hover .arena-star-game-glow {
    background: radial-gradient(circle at center, rgba(106, 27, 154, 0.2), transparent);
}

.arena-star-game-icon {
    position: relative;
    z-index: 2;
    margin-bottom: 15px;
}

.arena-star-game-icon i {
    font-size: 40px;
    color: #A29BFE;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.4));
    transition: all 0.3s ease;
}

.arena-star-game-card:hover .arena-star-game-icon i {
    transform: scale(1.2);
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.6));
}

.arena-star-game-rating {
    position: relative;
    z-index: 2;
    margin-bottom: 12px;
}

.arena-star-game-rating i {
    color: #A29BFE;
    font-size: 12px;
    margin: 0 1px;
}

.arena-star-game-card h3 {
    position: relative;
    z-index: 2;
    font-family: 'Poppins', cursive;
    font-size: 18px;
    color: #A29BFE;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.arena-star-game-card p {
    position: relative;
    z-index: 2;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: #bbb;
    line-height: 1.6;
    margin-bottom: 15px;
}

.arena-star-game-players {
    position: relative;
    z-index: 2;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: #6C5CE7;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.arena-star-game-players i {
    margin-right: 4px;
}

/* === ARENA GRID SECTION === */
.arena-grid-section {
    padding: 40px 0;
    position: relative;
}

.arena-grid-map {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.arena-grid-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.arena-grid-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 15px;
    background: linear-gradient(135deg, rgba(26, 10, 46, 0.6), rgba(13, 13, 13, 0.8));
    border: 1px solid rgba(106, 27, 154, 0.25);
    border-radius: 10px;
    transition: all 0.3s ease;
    color: #2C3E50;
    text-align: center;
}

.arena-grid-node:hover {
    border-color: #A29BFE;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(106, 27, 154, 0.3);
    background: linear-gradient(135deg, rgba(26, 10, 46, 0.9), rgba(13, 13, 13, 0.95));
    color: #fff;
}

.arena-node-icon {
    margin-bottom: 10px;
}

.arena-node-icon i {
    font-size: 28px;
    color: #6C5CE7;
    transition: all 0.3s ease;
}

.arena-grid-node:hover .arena-node-icon i {
    color: #A29BFE;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
    transform: scale(1.15);
}

.arena-node-label {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
}

/* === STAGE FEATURES === */
.stage-features {
    padding: 40px 0;
    position: relative;
}

.stage-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.stage-feature-card {
    background: linear-gradient(135deg, rgba(26, 10, 46, 0.7), rgba(13, 13, 13, 0.9));
    border: 1px solid rgba(106, 27, 154, 0.3);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stage-feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.05), transparent);
    transition: left 0.6s ease;
}

.stage-feature-card:hover::after {
    left: 100%;
}

.stage-feature-card:hover {
    border-color: #A29BFE;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(106, 27, 154, 0.3);
}

.stage-feature-icon {
    margin-bottom: 18px;
}

.stage-feature-icon i {
    font-size: 36px;
    color: #A29BFE;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.3));
    transition: all 0.3s ease;
}

.stage-feature-card:hover .stage-feature-icon i {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.5));
}

.stage-feature-card h3 {
    font-family: 'Poppins', cursive;
    font-size: 16px;
    color: #A29BFE;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.stage-feature-card p {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: #bbb;
    line-height: 1.6;
}

/* === ARENA STATS === */
.arena-stats {
    position: relative;
    padding: 60px 0;
    margin: 40px 0;
    border-radius: 12px;
    overflow: hidden;
}

.arena-stats-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #EFEFFF, #F8F9FA);
    z-index: 0;
}

.purple-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(106, 27, 154, 0.2), transparent);
}

.arena-stats .section-title,
.arena-stats .section-subtitle {
    position: relative;
    z-index: 2;
}

.arena-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    position: relative;
    z-index: 2;
}

.arena-stat-card {
    background: linear-gradient(135deg, rgba(26, 10, 46, 0.8), rgba(13, 13, 13, 0.9));
    border: 1px solid rgba(106, 27, 154, 0.3);
    border-radius: 12px;
    padding: 30px 15px;
    text-align: center;
    transition: all 0.3s ease;
    animation: tournamentPulse 4s ease infinite;
}

.arena-stat-card:hover {
    border-color: #A29BFE;
    transform: translateY(-5px);
}

.stat-arena-decoration {
    margin-bottom: 10px;
}

.stat-arena-decoration i {
    font-size: 20px;
    color: #6C5CE7;
    opacity: 0.6;
}

.stat-arena-decoration.bottom {
    margin-bottom: 0;
    margin-top: 10px;
}

.stat-number {
    font-family: 'Poppins', cursive;
    font-size: 36px;
    color: #A29BFE;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
    margin-bottom: 5px;
}

.stat-label {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #aaa;
    font-weight: 300;
    letter-spacing: 1px;
}

/* === ARENA PROMOS === */
.arena-promos {
    padding: 40px 0;
    position: relative;
}

.arena-promos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.arena-promo-card {
    position: relative;
    background: linear-gradient(135deg, rgba(26, 10, 46, 0.8), rgba(13, 13, 13, 0.9));
    border: 1px solid rgba(106, 27, 154, 0.3);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.arena-promo-card:hover {
    border-color: #6C5CE7;
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(106, 27, 154, 0.3),
                0 0 40px rgba(106, 27, 154, 0.2),
                inset 0 0 20px rgba(255, 215, 0, 0.05);
}

.promo-arena-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(106, 27, 154, 0.15), transparent);
    pointer-events: none;
}

.arena-promo-inner {
    position: relative;
    z-index: 2;
    padding: 30px 20px;
    text-align: center;
}

.promo-icon {
    margin-bottom: 15px;
}

.promo-icon i {
    font-size: 36px;
    color: #A29BFE;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.arena-promo-inner h3 {
    font-family: 'Poppins', cursive;
    font-size: 16px;
    color: #A29BFE;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.arena-promo-inner p {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: #bbb;
    line-height: 1.6;
    margin-bottom: 15px;
}

.promo-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: #888;
    font-weight: 300;
}

.promo-badge {
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
}

.promo-badge.hot {
    background: linear-gradient(135deg, #ff4444, #cc0000);
    color: #fff;
}

.promo-badge.new {
    background: linear-gradient(135deg, #6C5CE7, #9C27B0);
    color: #fff;
}

.promo-badge.vip {
    background: linear-gradient(135deg, #A29BFE, #FFA500);
    color: #F8F9FA;
}

.btn-promo {
    display: inline-block;
    padding: 10px 30px;
    background: linear-gradient(135deg, #6C5CE7, #5B4BD5);
    color: #A29BFE;
    font-family: 'Poppins', cursive;
    font-size: 13px;
    border-radius: 5px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.btn-promo:hover {
    background: linear-gradient(135deg, #A29BFE, #FFA500);
    color: #F8F9FA;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

/* === FOOTER CTA === */
.footer-cta-section {
    position: relative;
    padding: 60px 20px;
    margin: 40px 0;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
}

.footer-cta-arenafield {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #EFEFFF, #F8F9FA);
    z-index: 0;
}

.footer-cta-inner {
    position: relative;
    z-index: 2;
}

.cta-arena-decoration {
    margin-bottom: 20px;
}

.cta-arena-trophy {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #A29BFE, #FFA500);
    border-radius: 50%;
    position: relative;
    animation: floatUpDown 3s ease infinite;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.cta-arena-trophy::after {
    content: '\f091';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: #F8F9FA;
}

.footer-cta-inner h2 {
    font-family: 'Poppins', cursive;
    font-size: 32px;
    color: #A29BFE;
    margin-bottom: 15px;
    letter-spacing: 3px;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.footer-cta-inner > p {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto 25px;
    line-height: 1.8;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.cta-feature {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #A29BFE;
    letter-spacing: 0.5px;
}

.cta-feature i {
    margin-right: 6px;
    color: #6C5CE7;
}

.cta-main-btn {
    font-size: 18px;
    padding: 16px 50px;
}

/* === NEWS SECTION === */
.home-news-section {
    padding: 40px 0;
}

.home-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.article-card {
    background: linear-gradient(135deg, rgba(26, 10, 46, 0.6), rgba(13, 13, 13, 0.8));
    border: 1px solid rgba(106, 27, 154, 0.25);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: block;
    color: #2C3E50;
}

.article-card:hover {
    border-color: #6C5CE7;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(106, 27, 154, 0.25);
    color: #fff;
}

.article-card-thumb {
    height: 200px;
    overflow: hidden;
}

.article-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.article-card:hover .article-card-thumb img {
    transform: scale(1.08);
}

.article-card-title {
    padding: 15px 15px 8px;
    font-family: 'Poppins', cursive;
    font-size: 15px;
    line-height: 1.4;
    min-height: 50px;
}

.article-card-title span,
.article-card-title a {
    color: #2C3E50;
    transition: color 0.3s ease;
}

.article-card:hover .article-card-title span,
.article-card:hover .article-card-title a {
    color: #A29BFE;
}

.article-card-meta {
    padding: 0 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: #888;
    font-weight: 300;
    display: flex;
    gap: 15px;
}

.article-card-meta i {
    margin-right: 4px;
    color: #6C5CE7;
}

.article-card-excerpt {
    padding: 8px 15px 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #aaa;
    line-height: 1.6;
}

.article-card-more {
    display: block;
    padding: 12px 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #A29BFE;
    letter-spacing: 1px;
    border-top: 1px solid rgba(106, 27, 154, 0.2);
    transition: all 0.3s ease;
}

.article-card-more:hover {
    background: rgba(106, 27, 154, 0.1);
    color: #A29BFE;
    padding-left: 20px;
}

.view-more-btn {
    display: block;
    text-align: center;
    padding: 14px 30px;
    font-family: 'Poppins', cursive;
    font-size: 15px;
    letter-spacing: 2px;
    border: 2px solid #6C5CE7;
    border-radius: 8px;
    color: #A29BFE;
    transition: all 0.3s ease;
    max-width: 300px;
    margin: 0 auto;
}

.view-more-btn:hover {
    background: rgba(106, 27, 154, 0.2);
    border-color: #A29BFE;
    box-shadow: 0 0 20px rgba(106, 27, 154, 0.3);
    color: #A29BFE;
}

/* === CONTENT AREA LAYOUT === */
.content-area {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 30px;
    padding: 20px 0;
}

.main-content {
    min-width: 0;
}

/* === BREADCRUMB === */
.breadcrumb {
    padding: 15px 0;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #888;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: #6C5CE7;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #A29BFE;
}

.breadcrumb span {
    color: #888;
}

/* === CATEGORY HEADER === */
.category-header {
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(26, 10, 46, 0.6), rgba(13, 13, 13, 0.8));
    border: 1px solid rgba(106, 27, 154, 0.3);
    border-radius: 10px;
}

.category-title {
    font-family: 'Poppins', cursive;
    font-size: 24px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.category-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: #bbb;
}

/* === PROVIDER TABS === */
.provider-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.provider-tab {
    padding: 8px 18px;
    background: rgba(26, 10, 46, 0.5);
    border: 1px solid rgba(106, 27, 154, 0.3);
    border-radius: 20px;
    color: #2C3E50;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.provider-tab:hover {
    border-color: #6C5CE7;
    background: rgba(106, 27, 154, 0.2);
}

.provider-tab.active {
    background: linear-gradient(135deg, #6C5CE7, #5B4BD5);
    border-color: #6C5CE7;
    color: #A29BFE;
    font-weight: 500;
}

/* === ARTICLE GRID === */
.article-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

/* === SINGLE ARTICLE === */
.single-article {
    background: linear-gradient(135deg, rgba(26, 10, 46, 0.5), rgba(13, 13, 13, 0.8));
    border: 1px solid rgba(106, 27, 154, 0.25);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
}

.article-header {
    margin-bottom: 25px;
}

.article-title {
    font-family: 'Poppins', cursive;
    font-size: 28px;
    color: #A29BFE;
    margin-bottom: 15px;
    letter-spacing: 1px;
    line-height: 1.4;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #888;
}

.article-meta i {
    margin-right: 4px;
    color: #6C5CE7;
}

.article-meta a {
    color: #6C5CE7;
}

.article-featured-img {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 25px;
    border: 1px solid rgba(106, 27, 154, 0.2);
}

.article-featured-img img {
    width: 100%;
    display: block;
}

.article-content {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #ddd;
    line-height: 1.9;
}

.article-content h2,
.article-content h3,
.article-content h4 {
    color: #A29BFE;
    margin: 25px 0 15px;
}

.article-content p {
    margin-bottom: 18px;
}

.article-content a {
    color: #6C5CE7;
    text-decoration: underline;
}

.article-content img {
    border-radius: 8px;
    margin: 15px 0;
}

.article-content blockquote {
    border-left: 4px solid #6C5CE7;
    padding: 15px 20px;
    margin: 20px 0;
    background: rgba(106, 27, 154, 0.1);
    border-radius: 0 8px 8px 0;
    font-style: italic;
}

.article-content ul,
.article-content ol {
    padding-left: 25px;
    margin-bottom: 18px;
}

.article-content li {
    margin-bottom: 8px;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid rgba(106, 27, 154, 0.2);
    margin-top: 25px;
}

.article-tags i {
    color: #6C5CE7;
}

.article-tags span {
    padding: 4px 12px;
    background: rgba(106, 27, 154, 0.15);
    border: 1px solid rgba(106, 27, 154, 0.3);
    border-radius: 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: #bbb;
    font-weight: 300;
}

.article-tags span a {
    color: #bbb;
}

.article-tags span a:hover {
    color: #A29BFE;
}

/* === ARTICLE NAV === */
.article-nav {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1px solid rgba(106, 27, 154, 0.2);
    margin-top: 20px;
}

.article-nav-prev a,
.article-nav-next a {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #6C5CE7;
    transition: all 0.3s ease;
}

.article-nav-prev a:hover,
.article-nav-next a:hover {
    color: #A29BFE;
}

/* === RELATED POSTS === */
.related-posts {
    margin-bottom: 30px;
}

.related-posts-title {
    font-family: 'Poppins', cursive;
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(106, 27, 154, 0.3);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.related-item {
    display: block;
    color: #2C3E50;
    transition: all 0.3s ease;
}

.related-item:hover {
    color: #fff;
}

.related-item-thumb {
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 8px;
    border: 1px solid rgba(106, 27, 154, 0.2);
}

.related-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-item:hover .related-item-thumb img {
    transform: scale(1.05);
}

.related-item-title {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: #ccc;
}

.related-item:hover .related-item-title {
    color: #A29BFE;
}

/* === PAGE ARTICLE === */
.page-article {
    background: linear-gradient(135deg, rgba(26, 10, 46, 0.5), rgba(13, 13, 13, 0.8));
    border: 1px solid rgba(106, 27, 154, 0.25);
    border-radius: 12px;
    padding: 30px;
}

.page-title {
    font-family: 'Poppins', cursive;
    font-size: 28px;
    color: #A29BFE;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.page-featured-img {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 25px;
}

.page-content {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #ddd;
    line-height: 1.9;
}

.page-content h2,
.page-content h3 {
    color: #A29BFE;
    margin: 25px 0 15px;
}

.page-content p {
    margin-bottom: 18px;
}

/* === NO POSTS === */
.no-posts {
    text-align: center;
    padding: 60px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #888;
    font-weight: 300;
}

/* === PAGINATION === */
.pagination {
    margin: 30px 0;
}

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

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(106, 27, 154, 0.3);
    border-radius: 6px;
    color: #2C3E50;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease;
    background: rgba(26, 10, 46, 0.4);
}

.pagination .page-numbers:hover {
    border-color: #6C5CE7;
    background: rgba(106, 27, 154, 0.2);
    color: #A29BFE;
}

.pagination .page-numbers.current {
    background: linear-gradient(135deg, #6C5CE7, #5B4BD5);
    border-color: #6C5CE7;
    color: #A29BFE;
}

/* === ERROR PAGE === */
.error-page {
    text-align: center;
    padding: 80px 20px;
}

.error-arena {
    margin-bottom: 25px;
}

.error-arena-trophy {
    display: inline-block;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #A29BFE, #FFA500);
    border-radius: 50%;
    position: relative;
    animation: tournamentPulse 2s ease infinite;
}

.error-arena-trophy::after {
    content: '\f091';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    color: #F8F9FA;
}

.error-code {
    font-family: 'Poppins', cursive;
    font-size: 80px;
    color: #A29BFE;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.3));
    letter-spacing: 10px;
}

.error-title {
    font-family: 'Poppins', cursive;
    font-size: 24px;
    color: #2C3E50;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.error-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 300;
    color: #aaa;
    max-width: 500px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

/* === FOOTER === */
.site-footer {
    background: linear-gradient(180deg, #F8F9FA, #EFEFFF, #F8F9FA);
    border-top: 2px solid rgba(106, 27, 154, 0.5);
    padding: 50px 0 30px;
    margin-top: 40px;
}

.footer-columns-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-brand-logo {
    margin-bottom: 15px;
}

.footer-brand-logo img {
    height: 45px;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.2));
}

.footer-brand-text {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-18plus {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: linear-gradient(135deg, #ff4444, #cc0000);
    color: #fff;
    font-family: 'Poppins', cursive;
    font-size: 14px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.footer-social-links {
    display: flex;
    gap: 12px;
}

.footer-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(106, 27, 154, 0.4);
    border-radius: 50%;
    color: #2C3E50;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-social-links a:hover {
    border-color: #A29BFE;
    background: rgba(255, 215, 0, 0.1);
    color: #A29BFE;
    transform: translateY(-3px);
}

.footer-col h4 {
    font-family: 'Poppins', cursive;
    font-size: 14px;
    color: #A29BFE;
    letter-spacing: 2px;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(106, 27, 154, 0.3);
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #aaa;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.footer-col ul li a:hover {
    color: #A29BFE;
    padding-left: 5px;
}

/* === LICENSE BAR === */
.footer-license-bar {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid rgba(106, 27, 154, 0.3);
    border-bottom: 1px solid rgba(106, 27, 154, 0.3);
    margin-bottom: 20px;
}

.footer-license-bar h4 {
    font-family: 'Poppins', cursive;
    font-size: 14px;
    color: #A29BFE;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.license-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.license-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.license-item i {
    font-size: 24px;
    color: #6C5CE7;
    transition: color 0.3s ease;
}

.license-item:hover i {
    color: #A29BFE;
}

.license-item span {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #888;
    font-weight: 300;
}

/* === FOOTER BOTTOM === */
.footer-bottom {
    text-align: center;
    padding-top: 15px;
}

.footer-copyright {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #888;
    letter-spacing: 0.5px;
}

/* === FLOATING SIDEBAR === */
.floating-sidebar {
    position: fixed;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #6C5CE7, #5B4BD5);
    border-radius: 50%;
    color: #A29BFE;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.sidebar-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 0 20px rgba(106, 27, 154, 0.5);
    color: #A29BFE;
}

.sidebar-btn-facebook {
    background: linear-gradient(135deg, #1877F2, #0d5bbd);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

.sidebar-btn-telegram {
    background: linear-gradient(135deg, #0088cc, #006699);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

.sidebar-label {
    display: none;
    position: absolute;
    right: 55px;
    background: #F8F9FA;
    color: #A29BFE;
    padding: 5px 12px;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 400;
    white-space: nowrap;
    border: 1px solid rgba(106, 27, 154, 0.4);
}

.sidebar-btn:hover .sidebar-label {
    display: block;
}

/* === HOME NEWS PLACEHOLDER === */
.home-news-placeholder .article-card {
    margin-bottom: 0;
}

/* === SCROLLBAR === */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #F8F9FA;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #6C5CE7, #5B4BD5);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #9C27B0, #6C5CE7);
}

/* === SELECTION === */
::selection {
    background: rgba(106, 27, 154, 0.4);
    color: #A29BFE;
}

/* === UTILITY CLASSES === */
.text-center { text-align: center; }
.text-gold { color: #A29BFE; }
.text-purple { color: #6C5CE7; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.p-20 { padding: 20px; }

/* === LOADING ANIMATION === */
@keyframes loadingPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* === ADDITIONAL ARENA EFFECTS === */
.arena-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(106, 27, 154, 0.03) 2px,
        rgba(106, 27, 154, 0.03) 4px
    );
    pointer-events: none;
    z-index: 1;
}

.arena-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(transparent, rgba(13, 13, 13, 0.8));
    pointer-events: none;
    z-index: 2;
}

/* Crowd roar effect on sections */
.arena-star-games::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #6C5CE7, #A29BFE, #6C5CE7, transparent);
    animation: crowdRoar 3s ease infinite;
}

/* Stage beam decoration on features */
.stage-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #A29BFE, #6C5CE7, #A29BFE, transparent);
    opacity: 0.6;
}

/* Tournament pulse on promo section */
.arena-promos .arena-promos-grid .arena-promo-card:nth-child(1) {
    animation-delay: 0s;
}

.arena-promos .arena-promos-grid .arena-promo-card:nth-child(2) {
    animation-delay: 0.5s;
}

.arena-promos .arena-promos-grid .arena-promo-card:nth-child(3) {
    animation-delay: 1s;
}

/* === DYNAMIC SPOTLIGHT PARTICLES (for JS) === */
.dynamic-arena-spotlight {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 5;
}

.arena-particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10;
}

/* === JS-TRIGGERED SWEEP === */
.js-arena-sweep {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(106, 27, 154, 0.05), rgba(255, 215, 0, 0.05), transparent);
    pointer-events: none;
    z-index: 1;
}

/* === RESPONSIVE PREP === */
@media (max-width: 768px) {
    .content-area {
        grid-template-columns: 1fr;
    }
    
    .floating-sidebar {
        right: 8px;
    }
    
    .sidebar-btn {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}
