/* ============================================
   MEGAESPORT THEME - main.css (moban-158)
   Siêu Esports Giải Đấu Lớn - Red Blue Silver
   Colors: #D32F2F, #1565C0, #BDBDBD, #0A0A0A
   Fonts: Teko, Poppins
   ============================================ */

/* === 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: #0A0A0A;
    color: #E8E8F0;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Teko', sans-serif;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

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

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

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

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

.esports-text {
    color: #D32F2F;
    background: linear-gradient(90deg, #D32F2F, #FF5252, #D32F2F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blue-text {
    color: #1565C0;
    background: linear-gradient(90deg, #1565C0, #42A5F5, #1565C0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.silver-text {
    color: #BDBDBD;
    background: linear-gradient(90deg, #BDBDBD, #E0E0E0, #BDBDBD);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === KEYFRAME ANIMATIONS === */
@keyframes megaFlash {
    0%, 100% {
        opacity: 1;
        filter: brightness(1) saturate(1);
        transform: scale(1);
    }
    25% {
        opacity: 0.85;
        filter: brightness(1.6) saturate(1.4);
        transform: scale(1.06);
    }
    50% {
        opacity: 1;
        filter: brightness(2.2) saturate(1.6);
        transform: scale(1.12);
    }
    75% {
        opacity: 0.92;
        filter: brightness(1.4) saturate(1.3);
        transform: scale(1.03);
    }
}

@keyframes esportsThunder {
    0%, 100% {
        clip-path: polygon(50% 0%, 48% 30%, 70% 30%, 40% 100%, 52% 55%, 30% 55%, 50% 0%);
        opacity: 0.7;
        transform: translateY(0) scaleY(1);
    }
    25% {
        clip-path: polygon(50% 0%, 46% 35%, 75% 35%, 35% 100%, 54% 50%, 25% 50%, 50% 0%);
        opacity: 1;
        transform: translateY(-5px) scaleY(1.1);
    }
    50% {
        clip-path: polygon(50% 0%, 50% 28%, 65% 28%, 42% 100%, 48% 58%, 35% 58%, 50% 0%);
        opacity: 0.5;
        transform: translateY(3px) scaleY(0.95);
    }
    75% {
        clip-path: polygon(50% 0%, 44% 32%, 72% 32%, 38% 100%, 56% 52%, 28% 52%, 50% 0%);
        opacity: 0.9;
        transform: translateY(-2px) scaleY(1.05);
    }
}

@keyframes tournamentFire {
    0%, 100% {
        box-shadow: 0 0 5px rgba(211, 47, 47, 0.5), 0 0 10px rgba(211, 47, 47, 0.3);
        transform: translateY(0);
    }
    25% {
        box-shadow: 0 -3px 15px rgba(211, 47, 47, 0.8), 0 -6px 25px rgba(255, 82, 82, 0.5);
        transform: translateY(-2px);
    }
    50% {
        box-shadow: 0 -5px 20px rgba(211, 47, 47, 1), 0 -10px 35px rgba(255, 82, 82, 0.7);
        transform: translateY(-4px);
    }
    75% {
        box-shadow: 0 -2px 12px rgba(211, 47, 47, 0.7), 0 -4px 20px rgba(255, 82, 82, 0.4);
        transform: translateY(-1px);
    }
}

@keyframes grandPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.08);
        opacity: 0.7;
    }
}

/* === ANNOUNCEMENT MODAL === */
.announcement-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    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(8px);
}

.announcement-content {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 100%);
    border: 2px solid #D32F2F;
    border-radius: 12px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    z-index: 10000;
    box-shadow: 0 0 40px rgba(211, 47, 47, 0.3), 0 0 80px rgba(21, 101, 192, 0.2);
}

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

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

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

.announcement-header-icon i {
    font-size: 48px;
    color: #D32F2F;
    animation: grandPulse 2s ease infinite;
}

.announcement-title {
    text-align: center;
    font-size: 22px;
    margin-bottom: 20px;
    font-family: 'Teko', sans-serif;
    letter-spacing: 1px;
}

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

.announcement-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(211, 47, 47, 0.05);
    border: 1px solid rgba(211, 47, 47, 0.15);
    border-radius: 8px;
    color: #E8E8F0;
    transition: all 0.3s ease;
}

.announcement-item:hover {
    background: rgba(211, 47, 47, 0.1);
    border-color: #D32F2F;
    transform: translateX(5px);
    color: #fff;
}

.announcement-badge {
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}

.announcement-badge.hot {
    background: #D32F2F;
    color: #fff;
}

.announcement-badge.new {
    background: #1565C0;
    color: #fff;
}

.announcement-badge.info {
    background: #BDBDBD;
    color: #0A0A0A;
}

.announcement-text {
    flex: 1;
    font-size: 13px;
    line-height: 1.4;
}

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

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

.announcement-cta {
    display: inline-block;
    padding: 12px 40px;
    background: linear-gradient(135deg, #D32F2F, #FF5252);
    color: #fff;
    border-radius: 6px;
    font-family: 'Teko', sans-serif;
    font-size: 18px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.announcement-cta:hover {
    background: linear-gradient(135deg, #B71C1C, #D32F2F);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(211, 47, 47, 0.4);
    color: #fff;
}

/* === HEADER === */
.site-header {
    background: linear-gradient(180deg, #0f0f1a 0%, #1a1a2e 100%);
    border-bottom: 3px solid #D32F2F;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

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

.logo img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(211, 47, 47, 0.5));
}

.header-time {
    font-family: 'Teko', sans-serif;
    font-size: 18px;
    color: #BDBDBD;
    letter-spacing: 1px;
}

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

.btn-login {
    padding: 8px 20px;
    border: 2px solid #1565C0;
    color: #1565C0;
    border-radius: 6px;
    font-family: 'Teko', sans-serif;
    font-size: 16px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: #1565C0;
    color: #fff;
    box-shadow: 0 0 15px rgba(21, 101, 192, 0.4);
}

.btn-register {
    padding: 8px 20px;
    background: linear-gradient(135deg, #D32F2F, #FF5252);
    color: #fff;
    border-radius: 6px;
    font-family: 'Teko', sans-serif;
    font-size: 16px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
}

.btn-register:hover {
    background: linear-gradient(135deg, #B71C1C, #D32F2F);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.4);
    color: #fff;
}

.btn-demo {
    padding: 8px 20px;
    border: 2px solid #BDBDBD;
    color: #BDBDBD;
    border-radius: 6px;
    font-family: 'Teko', sans-serif;
    font-size: 16px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-demo:hover {
    background: #BDBDBD;
    color: #0A0A0A;
    box-shadow: 0 0 15px rgba(189, 189, 189, 0.4);
}

/* === NAVIGATION === */
.main-navigation {
    background: linear-gradient(90deg, #D32F2F 0%, #B71C1C 50%, #1565C0 100%);
    padding: 0;
    position: relative;
}

.main-navigation .container {
    display: flex;
    align-items: center;
}

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

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 12px 18px;
    color: #fff;
    font-family: 'Teko', sans-serif;
    font-size: 17px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    text-shadow: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: #BDBDBD;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

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

/* === NOTIFICATION BAR === */
.notification-bar {
    background: linear-gradient(90deg, #0f0f1a, #1a1a2e, #0f0f1a);
    border-top: 1px solid rgba(211, 47, 47, 0.3);
    border-bottom: 1px solid rgba(21, 101, 192, 0.3);
    overflow: hidden;
    padding: 8px 0;
}

.notification-content {
    display: flex;
    gap: 60px;
    animation: notificationScroll 30s linear infinite;
    white-space: nowrap;
    font-size: 13px;
    color: #BDBDBD;
}

.notification-content span {
    color: #FF5252;
}

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

/* === HERO SECTION === */
.megaesport-hero {
    position: relative;
    padding: 80px 20px;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0f0f1a 0%, #1a0a0a 40%, #0a1a2e 100%);
    border-radius: 12px;
    margin: 20px 0;
    border: 1px solid rgba(211, 47, 47, 0.3);
}

.esports-lightning {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.lightning-bolt {
    position: absolute;
    width: 40px;
    height: 120px;
    background: linear-gradient(180deg, transparent, rgba(211, 47, 47, 0.6), rgba(21, 101, 192, 0.4), transparent);
    animation: esportsThunder 3s ease infinite;
}

.lightning-bolt.bolt-1 { left: 5%; top: 10%; animation-delay: 0s; }
.lightning-bolt.bolt-2 { left: 25%; top: 5%; animation-delay: 0.5s; }
.lightning-bolt.bolt-3 { left: 50%; top: 8%; animation-delay: 1s; }
.lightning-bolt.bolt-4 { left: 75%; top: 12%; animation-delay: 1.5s; }
.lightning-bolt.bolt-5 { left: 90%; top: 6%; animation-delay: 2s; }

.tournament-trophy {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    z-index: 1;
    opacity: 0.3;
}

.trophy-base {
    width: 100%;
    height: 100%;
    border: 3px solid rgba(189, 189, 189, 0.3);
    border-radius: 50%;
    animation: grandPulse 3s ease infinite;
}

.trophy-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(211, 47, 47, 0.3), transparent);
    border-radius: 50%;
    animation: megaFlash 2s ease infinite;
}

.hero-inner-content {
    position: relative;
    z-index: 5;
}

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

.hero-brand {
    display: block;
    font-family: 'Teko', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: #D32F2F;
    background: linear-gradient(90deg, #D32F2F, #FF5252, #D32F2F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: megaFlash 4s ease infinite;
}

.hero-divider-line {
    display: block;
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #1565C0, transparent);
    margin: 10px auto;
}

.hero-tagline {
    display: block;
    font-family: 'Teko', sans-serif;
    font-size: 28px;
    color: #BDBDBD;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-description {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 15px;
    color: #BDBDBD;
    line-height: 1.8;
}

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

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

.hero-stat-number {
    display: block;
    font-family: 'Teko', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #D32F2F;
    line-height: 1;
}

.hero-stat-label {
    font-size: 13px;
    color: #BDBDBD;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.btn-red-primary {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(135deg, #D32F2F, #FF5252);
    color: #fff;
    border-radius: 6px;
    font-family: 'Teko', sans-serif;
    font-size: 20px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    animation: tournamentFire 3s ease infinite;
}

.btn-red-primary:hover {
    background: linear-gradient(135deg, #B71C1C, #D32F2F);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(211, 47, 47, 0.5);
    color: #fff;
}

.btn-outline-blue {
    display: inline-block;
    padding: 14px 40px;
    border: 2px solid #1565C0;
    color: #1565C0;
    border-radius: 6px;
    font-family: 'Teko', sans-serif;
    font-size: 20px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-outline-blue:hover {
    background: #1565C0;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(21, 101, 192, 0.5);
}

/* === SECTION STYLES === */
.section-title {
    font-family: 'Teko', sans-serif;
    font-size: 32px;
    text-align: center;
    margin-bottom: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-title i {
    margin-right: 8px;
}

.section-subtitle {
    text-align: center;
    color: #BDBDBD;
    font-size: 14px;
    margin-bottom: 40px;
}

/* === ESPORTS GAMES SECTION === */
.esports-games {
    padding: 60px 0;
    position: relative;
}

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

.esports-game-card {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 100%);
    border: 1px solid rgba(211, 47, 47, 0.2);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
    display: block;
    color: #E8E8F0;
}

.esports-game-card:hover {
    border-color: #D32F2F;
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(211, 47, 47, 0.3), 0 0 20px rgba(21, 101, 192, 0.2);
    color: #fff;
}

.esports-game-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(211, 47, 47, 0.05), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.esports-game-card:hover .esports-game-glow {
    opacity: 1;
}

.esports-game-icon {
    margin-bottom: 15px;
}

.esports-game-icon i {
    font-size: 42px;
    color: #D32F2F;
    animation: grandPulse 3s ease infinite;
}

.esports-game-rating {
    margin-bottom: 12px;
    color: #FF5252;
    font-size: 14px;
}

.esports-game-rating i {
    margin: 0 2px;
}

.esports-game-card h3 {
    font-family: 'Teko', sans-serif;
    font-size: 22px;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.esports-game-card p {
    font-size: 13px;
    color: #BDBDBD;
    line-height: 1.6;
    margin-bottom: 12px;
}

.esports-game-players {
    font-size: 12px;
    color: #1565C0;
    font-weight: 500;
}

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

/* === TOURNAMENT GRID === */
.tournament-grid-section {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.03), rgba(21, 101, 192, 0.03));
    border-radius: 12px;
    margin: 20px 0;
}

.tournament-grid-map {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

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

.tournament-grid-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 15px;
    background: linear-gradient(135deg, #1a1a2e, #0f0f1a);
    border: 1px solid rgba(211, 47, 47, 0.15);
    border-radius: 10px;
    transition: all 0.3s ease;
    color: #E8E8F0;
    text-align: center;
}

.tournament-grid-node:hover {
    border-color: #D32F2F;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(211, 47, 47, 0.25);
    color: #fff;
}

.tournament-node-icon {
    margin-bottom: 8px;
}

.tournament-node-icon i {
    font-size: 28px;
    color: #D32F2F;
}

.tournament-node-label {
    font-family: 'Teko', sans-serif;
    font-size: 16px;
    letter-spacing: 0.5px;
    color: #BDBDBD;
}

.tournament-grid-node:hover .tournament-node-label {
    color: #fff;
}

/* === TOURNAMENT FEATURES === */
.tournament-features {
    padding: 60px 0;
}

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

.tournament-feature-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 100%);
    border: 1px solid rgba(21, 101, 192, 0.2);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
}

.tournament-feature-card:hover {
    border-color: #1565C0;
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(21, 101, 192, 0.3);
}

.tournament-feature-icon {
    margin-bottom: 15px;
}

.tournament-feature-icon i {
    font-size: 40px;
    color: #1565C0;
    animation: grandPulse 3s ease infinite;
}

.tournament-feature-card h3 {
    font-family: 'Teko', sans-serif;
    font-size: 20px;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.tournament-feature-card p {
    font-size: 13px;
    color: #BDBDBD;
    line-height: 1.7;
}

/* === STATS SECTION === */
.mega-stats {
    position: relative;
    padding: 60px 0;
    margin: 30px 0;
    border-radius: 12px;
    overflow: hidden;
}

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

.esports-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(211, 47, 47, 0.1), rgba(21, 101, 192, 0.1), rgba(189, 189, 189, 0.05));
}

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

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

.mega-stat-card {
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.1), rgba(21, 101, 192, 0.1));
    border: 1px solid rgba(211, 47, 47, 0.3);
    border-radius: 12px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.mega-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(211, 47, 47, 0.3);
    border-color: #D32F2F;
}

.stat-decoration {
    color: #D32F2F;
    font-size: 20px;
    margin-bottom: 8px;
    opacity: 0.6;
}

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

.stat-number {
    font-family: 'Teko', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #D32F2F;
    line-height: 1;
    margin-bottom: 5px;
    background: linear-gradient(90deg, #D32F2F, #FF5252);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 13px;
    color: #BDBDBD;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* === PROMOTIONS SECTION === */
.mega-promos {
    padding: 60px 0;
}

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

.mega-promo-card {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 100%);
    border: 1px solid rgba(211, 47, 47, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.mega-promo-card:hover {
    border-color: #D32F2F;
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(211, 47, 47, 0.3);
}

.promo-esports-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(211, 47, 47, 0.08), transparent 70%);
    pointer-events: none;
}

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

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

.promo-icon i {
    font-size: 40px;
    color: #D32F2F;
    animation: megaFlash 3s ease infinite;
}

.mega-promo-inner h3 {
    font-family: 'Teko', sans-serif;
    font-size: 22px;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.mega-promo-inner p {
    font-size: 13px;
    color: #BDBDBD;
    line-height: 1.7;
    margin-bottom: 15px;
}

.promo-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 12px;
    color: #BDBDBD;
}

.promo-badge {
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.promo-badge.hot { background: #D32F2F; color: #fff; }
.promo-badge.new { background: #1565C0; color: #fff; }
.promo-badge.vip { background: #BDBDBD; color: #0A0A0A; }

.btn-promo {
    display: inline-block;
    padding: 10px 30px;
    background: linear-gradient(135deg, #D32F2F, #FF5252);
    color: #fff;
    border-radius: 6px;
    font-family: 'Teko', sans-serif;
    font-size: 16px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-promo:hover {
    background: linear-gradient(135deg, #B71C1C, #D32F2F);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.4);
    color: #fff;
}

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

.footer-cta-esports-field {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a0a0a 0%, #0a1a2e 50%, #1a1a2e 100%);
    z-index: 0;
}

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

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

.cta-trophy-diamond {
    display: inline-block;
    width: 60px;
    height: 60px;
    border: 3px solid rgba(211, 47, 47, 0.5);
    border-radius: 50%;
    animation: grandPulse 2s ease infinite;
}

.footer-cta-section h2 {
    font-family: 'Teko', sans-serif;
    font-size: 38px;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-cta-section p {
    max-width: 600px;
    margin: 0 auto 20px;
    color: #BDBDBD;
    font-size: 15px;
    line-height: 1.8;
}

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

.cta-feature {
    color: #BDBDBD;
    font-size: 14px;
}

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

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

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

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

.article-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 100%);
    border: 1px solid rgba(211, 47, 47, 0.15);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: block;
    color: #E8E8F0;
}

.article-card:hover {
    border-color: #D32F2F;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(211, 47, 47, 0.2);
    color: #fff;
}

.article-card-thumb {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

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

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

.article-card-title {
    padding: 15px 15px 8px;
    font-family: 'Teko', sans-serif;
    font-size: 18px;
    color: #fff;
    line-height: 1.3;
    letter-spacing: 0.3px;
}

.article-card-title span {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card-meta {
    padding: 0 15px;
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #BDBDBD;
    margin-bottom: 8px;
}

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

.article-card-excerpt {
    padding: 0 15px 15px;
    font-size: 13px;
    color: #BDBDBD;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.view-more-btn {
    display: block;
    text-align: center;
    padding: 14px 40px;
    border: 2px solid #D32F2F;
    color: #D32F2F;
    border-radius: 6px;
    font-family: 'Teko', sans-serif;
    font-size: 18px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    max-width: 300px;
    margin: 0 auto;
}

.view-more-btn:hover {
    background: #D32F2F;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(211, 47, 47, 0.4);
}

/* === CONTENT AREA LAYOUT === */
.content-area {
    display: flex;
    gap: 30px;
    padding: 20px 0;
}

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

/* === BREADCRUMB === */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 0;
    font-size: 13px;
    color: #BDBDBD;
    border-bottom: 1px solid rgba(189, 189, 189, 0.1);
    margin-bottom: 20px;
    flex-wrap: wrap;
}

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

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

.breadcrumb span {
    color: #BDBDBD;
}

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

.article-card-more {
    display: inline-block;
    padding: 8px 15px;
    margin: 0 15px 15px;
    color: #D32F2F;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid rgba(211, 47, 47, 0.3);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.article-card-more:hover {
    background: #D32F2F;
    color: #fff;
    border-color: #D32F2F;
}

.article-card-more i {
    margin-left: 4px;
    font-size: 11px;
}

/* === SINGLE ARTICLE === */
.single-article {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 100%);
    border: 1px solid rgba(211, 47, 47, 0.15);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
}

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

.article-title {
    font-family: 'Teko', sans-serif;
    font-size: 32px;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 13px;
    color: #BDBDBD;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(189, 189, 189, 0.1);
}

.article-meta i {
    margin-right: 5px;
    color: #D32F2F;
}

.article-meta a {
    color: #1565C0;
}

.article-meta a:hover {
    color: #42A5F5;
}

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

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

.article-content {
    font-size: 15px;
    line-height: 1.9;
    color: #E8E8F0;
}

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

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

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

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

.article-content blockquote {
    border-left: 4px solid #D32F2F;
    padding: 15px 20px;
    margin: 20px 0;
    background: rgba(211, 47, 47, 0.05);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #BDBDBD;
}

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

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

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

.article-tags i {
    color: #D32F2F;
    font-size: 16px;
}

.article-tags span {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(211, 47, 47, 0.1);
    border: 1px solid rgba(211, 47, 47, 0.2);
    border-radius: 4px;
    font-size: 12px;
    color: #D32F2F;
}

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

.article-nav {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1px solid rgba(189, 189, 189, 0.1);
    margin-top: 20px;
}

.article-nav-prev a,
.article-nav-next a {
    color: #1565C0;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

/* === RELATED POSTS === */
.related-posts {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 100%);
    border: 1px solid rgba(211, 47, 47, 0.15);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
}

.related-posts-title {
    font-family: 'Teko', sans-serif;
    font-size: 24px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

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

.related-item {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(211, 47, 47, 0.05);
    border: 1px solid rgba(211, 47, 47, 0.1);
    color: #E8E8F0;
}

.related-item:hover {
    transform: translateY(-3px);
    border-color: #D32F2F;
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.2);
    color: #fff;
}

.related-item-thumb {
    width: 100%;
    height: 100px;
    overflow: hidden;
}

.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 {
    padding: 10px;
    font-size: 13px;
    font-family: 'Teko', sans-serif;
    color: #fff;
    line-height: 1.3;
    letter-spacing: 0.3px;
}

/* === CATEGORY HEADER === */
.category-header {
    text-align: center;
    padding: 30px 0;
    margin-bottom: 20px;
}

.category-title {
    font-family: 'Teko', sans-serif;
    font-size: 36px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.category-desc {
    color: #BDBDBD;
    font-size: 14px;
    max-width: 600px;
    margin: 0 auto;
}

/* === PROVIDER TABS === */
.provider-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 30px;
    padding: 15px 0;
    border-top: 1px solid rgba(189, 189, 189, 0.1);
    border-bottom: 1px solid rgba(189, 189, 189, 0.1);
}

.provider-tab {
    padding: 8px 20px;
    background: transparent;
    border: 1px solid rgba(211, 47, 47, 0.3);
    border-radius: 20px;
    color: #BDBDBD;
    font-family: 'Teko', sans-serif;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.provider-tab:hover,
.provider-tab.active {
    background: #D32F2F;
    border-color: #D32F2F;
    color: #fff;
}

/* === PAGINATION === */
.pagination {
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

.pagination .nav-links {
    display: flex;
    gap: 5px;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(211, 47, 47, 0.3);
    border-radius: 6px;
    color: #BDBDBD;
    font-size: 14px;
    transition: all 0.3s ease;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: #D32F2F;
    border-color: #D32F2F;
    color: #fff;
}

/* === NO POSTS === */
.no-posts {
    text-align: center;
    padding: 60px 20px;
    grid-column: 1 / -1;
}

.no-posts p {
    color: #BDBDBD;
    font-size: 16px;
}

/* === PAGE ARTICLE === */
.page-article {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 100%);
    border: 1px solid rgba(211, 47, 47, 0.15);
    border-radius: 12px;
    padding: 30px;
}

.page-title {
    font-family: 'Teko', sans-serif;
    font-size: 32px;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

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

.page-featured-img img {
    width: 100%;
    height: auto;
    display: block;
}

.page-content {
    font-size: 15px;
    line-height: 1.9;
    color: #E8E8F0;
}

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

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

.page-content a {
    color: #D32F2F;
    text-decoration: underline;
}

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

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

.error-trophy-icon {
    display: inline-block;
    width: 100px;
    height: 100px;
    line-height: 100px;
    border: 3px solid #D32F2F;
    border-radius: 50%;
    animation: grandPulse 2s ease infinite;
}

.error-trophy-icon i {
    font-size: 42px;
    color: #D32F2F;
}

.error-code {
    font-family: 'Teko', sans-serif;
    font-size: 120px;
    font-weight: 700;
    color: #D32F2F;
    background: linear-gradient(90deg, #D32F2F, #1565C0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
}

.error-title {
    font-family: 'Teko', sans-serif;
    font-size: 28px;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.error-desc {
    max-width: 500px;
    margin: 0 auto 30px;
    color: #BDBDBD;
    font-size: 15px;
    line-height: 1.7;
}

/* === FOOTER === */
.site-footer {
    background: linear-gradient(180deg, #0f0f1a 0%, #050510 100%);
    border-top: 3px solid #D32F2F;
    padding: 50px 0 30px;
    margin-top: 40px;
}

.footer-columns-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.footer-col h4 {
    font-family: 'Teko', sans-serif;
    font-size: 20px;
    color: #D32F2F;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

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

.footer-col ul li a {
    color: #BDBDBD;
    font-size: 13px;
    transition: all 0.3s ease;
}

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

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

.footer-brand-logo img {
    height: 40px;
    filter: drop-shadow(0 0 8px rgba(211, 47, 47, 0.5));
}

.footer-brand-text {
    font-size: 13px;
    color: #BDBDBD;
    line-height: 1.7;
    margin-bottom: 15px;
}

.footer-18plus {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border: 2px solid #D32F2F;
    border-radius: 50%;
    font-family: 'Teko', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #D32F2F;
    margin-bottom: 15px;
}

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

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

.footer-social-links a:hover {
    background: #D32F2F;
    border-color: #D32F2F;
    color: #fff;
}

.footer-license-bar {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid rgba(189, 189, 189, 0.1);
    border-bottom: 1px solid rgba(189, 189, 189, 0.1);
    margin-bottom: 20px;
}

.footer-license-bar h4 {
    font-family: 'Teko', sans-serif;
    font-size: 20px;
    color: #BDBDBD;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

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

.license-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: #BDBDBD;
    font-size: 12px;
}

.license-item i {
    font-size: 24px;
    color: #1565C0;
}

.footer-bottom {
    text-align: center;
    padding-top: 15px;
}

.footer-copyright {
    font-size: 13px;
    color: #BDBDBD;
}

/* === 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, #D32F2F, #FF5252);
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 3px 15px rgba(211, 47, 47, 0.4);
}

.sidebar-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 5px 20px rgba(211, 47, 47, 0.6);
    color: #fff;
}

.sidebar-btn-facebook {
    background: linear-gradient(135deg, #1565C0, #42A5F5);
    box-shadow: 0 3px 15px rgba(21, 101, 192, 0.4);
}

.sidebar-btn-facebook:hover {
    box-shadow: 0 5px 20px rgba(21, 101, 192, 0.6);
}

.sidebar-btn-telegram {
    background: linear-gradient(135deg, #0088cc, #29b6f6);
    box-shadow: 0 3px 15px rgba(0, 136, 204, 0.4);
}

.sidebar-btn-telegram:hover {
    box-shadow: 0 5px 20px rgba(0, 136, 204, 0.6);
}

.sidebar-label {
    position: absolute;
    right: 55px;
    background: #1a1a2e;
    color: #fff;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(211, 47, 47, 0.3);
}

.sidebar-btn:hover .sidebar-label {
    opacity: 1;
    right: 60px;
}

/* === HOME NEWS PLACEHOLDER === */
.home-news-placeholder {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

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

::-webkit-scrollbar-track {
    background: #0A0A0A;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #D32F2F, #1565C0);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #FF5252, #42A5F5);
}

/* === UTILITY CLASSES === */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
