/* ============================================
   QUICKTAP THEME - main.css (moban-125)
   Lightning Speed Tap Theme
   Colors: #FDD835 (Yellow), #1A1A1A (Black), #FFFFFF (White)
   Fonts: Fugaz One + Source Sans 3
   ============================================ */

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

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

body {
    font-family: 'Source Sans 3', sans-serif;
    background: #1A1A1A;
    color: #E8E8E8;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

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

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

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

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

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

.yellow-text {
    color: #FDD835;
    background: linear-gradient(90deg, #FDD835, #FFB300, #FDD835);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.speed-text {
    background: linear-gradient(90deg, #FDD835, #FFFFFF, #FDD835);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === KEYFRAME ANIMATIONS === */

/* 1. lightningBolt - Simulates a lightning bolt flash effect */
@keyframes lightningBolt {
    0%, 100% {
        opacity: 1;
        filter: brightness(1) saturate(1);
        transform: scale(1);
        text-shadow: 0 0 5px rgba(253, 216, 53, 0.3);
    }
    10% {
        opacity: 0.6;
        filter: brightness(2.5) saturate(0.5);
        transform: scale(1.08);
        text-shadow: 0 0 30px rgba(253, 216, 53, 1);
    }
    20% {
        opacity: 1;
        filter: brightness(1.2) saturate(1.2);
        transform: scale(1.02);
        text-shadow: 0 0 10px rgba(253, 216, 53, 0.5);
    }
    30% {
        opacity: 0.7;
        filter: brightness(3) saturate(0.3);
        transform: scale(1.12);
        text-shadow: 0 0 50px rgba(253, 216, 53, 1), 0 0 80px rgba(255, 255, 255, 0.5);
    }
    50% {
        opacity: 1;
        filter: brightness(1) saturate(1);
        transform: scale(1);
        text-shadow: 0 0 5px rgba(253, 216, 53, 0.3);
    }
    70% {
        opacity: 0.8;
        filter: brightness(1.8) saturate(0.8);
        transform: scale(1.05);
        text-shadow: 0 0 20px rgba(253, 216, 53, 0.8);
    }
}

/* 2. quickFlash - Rapid flashing highlight effect */
@keyframes quickFlash {
    0%, 100% {
        opacity: 1;
        background-position: 0% 50%;
        box-shadow: 0 0 0 rgba(253, 216, 53, 0);
    }
    15% {
        opacity: 0.85;
        background-position: 50% 50%;
        box-shadow: 0 0 15px rgba(253, 216, 53, 0.4);
    }
    30% {
        opacity: 1;
        background-position: 100% 50%;
        box-shadow: 0 0 30px rgba(253, 216, 53, 0.6);
    }
    45% {
        opacity: 0.9;
        background-position: 50% 50%;
        box-shadow: 0 0 15px rgba(253, 216, 53, 0.3);
    }
    60% {
        opacity: 1;
        background-position: 0% 50%;
        box-shadow: 0 0 5px rgba(253, 216, 53, 0.1);
    }
    80% {
        opacity: 0.95;
        background-position: 100% 50%;
        box-shadow: 0 0 20px rgba(253, 216, 53, 0.5);
    }
}

/* 3. tapSpeed - Pulsing speed ring effect for tap interactions */
@keyframes tapSpeed {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
        border-color: rgba(253, 216, 53, 0.8);
    }
    25% {
        transform: scale(1.05);
        opacity: 1;
        border-color: rgba(253, 216, 53, 1);
    }
    50% {
        transform: scale(1.15);
        opacity: 0.6;
        border-color: rgba(255, 255, 255, 0.5);
    }
    75% {
        transform: scale(1.08);
        opacity: 0.9;
        border-color: rgba(253, 216, 53, 0.9);
    }
    100% {
        transform: scale(0.8);
        opacity: 0.8;
        border-color: rgba(253, 216, 53, 0.8);
    }
}

/* 4. boltStrike - Electric strike animation from top to bottom */
@keyframes boltStrike {
    0% {
        clip-path: polygon(45% 0%, 55% 0%, 55% 0%, 45% 0%);
        opacity: 0;
        filter: brightness(3);
    }
    15% {
        clip-path: polygon(40% 0%, 60% 0%, 55% 30%, 45% 30%);
        opacity: 1;
        filter: brightness(5);
    }
    30% {
        clip-path: polygon(35% 0%, 65% 0%, 60% 50%, 40% 50%);
        opacity: 1;
        filter: brightness(3);
    }
    50% {
        clip-path: polygon(30% 0%, 70% 0%, 65% 70%, 35% 70%);
        opacity: 0.9;
        filter: brightness(2);
    }
    70% {
        clip-path: polygon(25% 0%, 75% 0%, 70% 100%, 30% 100%);
        opacity: 0.7;
        filter: brightness(1.5);
    }
    85% {
        clip-path: polygon(20% 0%, 80% 0%, 80% 100%, 20% 100%);
        opacity: 0.4;
        filter: brightness(1.2);
    }
    100% {
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
        opacity: 0;
        filter: brightness(1);
    }
}

/* Additional supporting animations */
@keyframes speedPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 rgba(253, 216, 53, 0); }
    50% { transform: scale(1.03); box-shadow: 0 0 20px rgba(253, 216, 53, 0.3); }
}

@keyframes boltGlow {
    0%, 100% { text-shadow: 0 0 5px rgba(253, 216, 53, 0.5); }
    50% { text-shadow: 0 0 20px rgba(253, 216, 53, 0.8), 0 0 40px rgba(253, 216, 53, 0.3); }
}

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

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

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

/* === HEADER === */
.site-header {
    background: linear-gradient(180deg, #111111 0%, #1A1A1A 100%);
    border-bottom: 3px solid #FDD835;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.header-time {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 13px;
    color: #FDD835;
    background: rgba(253, 216, 53, 0.08);
    padding: 6px 15px;
    border-radius: 20px;
    border: 1px solid rgba(253, 216, 53, 0.2);
    letter-spacing: 1px;
}

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

.btn-login {
    display: inline-block;
    padding: 8px 20px;
    border: 2px solid #FDD835;
    color: #FDD835;
    border-radius: 25px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: rgba(253, 216, 53, 0.15);
    color: #fff;
    box-shadow: 0 0 15px rgba(253, 216, 53, 0.3);
}

.btn-register {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #FDD835, #FFB300);
    color: #1A1A1A;
    border-radius: 25px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-register:hover {
    background: linear-gradient(135deg, #FFB300, #FDD835);
    color: #1A1A1A;
    box-shadow: 0 0 20px rgba(253, 216, 53, 0.5);
    transform: translateY(-2px);
    text-shadow: none;
}

.btn-demo {
    display: inline-block;
    padding: 8px 20px;
    border: 2px solid #fff;
    color: #fff;
    border-radius: 25px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-demo:hover {
    background: #fff;
    color: #1A1A1A;
    text-shadow: none;
}

/* === NAVIGATION === */
.main-navigation {
    background: rgba(0, 0, 0, 0.6);
    border-top: 1px solid rgba(253, 216, 53, 0.15);
    border-bottom: 1px solid rgba(253, 216, 53, 0.15);
}

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

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 12px 16px;
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

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

.nav-link:hover {
    color: #FDD835;
    text-shadow: 0 0 10px rgba(253, 216, 53, 0.5);
}

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: 2px solid #FDD835;
    color: #FDD835;
    font-size: 22px;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(253, 216, 53, 0.15);
}

/* === NOTIFICATION BAR === */
.notification-bar {
    background: linear-gradient(90deg, #FDD835, #FFB300, #FDD835);
    background-size: 200% 100%;
    animation: quickFlash 4s ease infinite;
    padding: 8px 0;
    overflow: hidden;
}

.notification-content {
    display: flex;
    gap: 50px;
    animation: notificationScroll 25s linear infinite;
    white-space: nowrap;
    color: #1A1A1A;
    font-weight: 700;
    font-size: 13px;
}

/* === 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;
    animation: fadeInUp 0.4s ease;
}

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

.announcement-content {
    position: relative;
    background: linear-gradient(135deg, #1A1A1A 0%, #2a2a2a 100%);
    border: 2px solid #FDD835;
    border-radius: 20px;
    padding: 35px;
    max-width: 500px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 0 40px rgba(253, 216, 53, 0.3);
}

.announcement-close {
    position: absolute;
    top: 12px;
    right: 15px;
    background: none;
    border: none;
    color: #FDD835;
    font-size: 28px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

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

.announcement-header-icon i {
    font-size: 48px;
    color: #FDD835;
    animation: lightningBolt 3s ease infinite;
}

.announcement-title {
    text-align: center;
    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: 12px 15px;
    background: rgba(253, 216, 53, 0.05);
    border: 1px solid rgba(253, 216, 53, 0.15);
    border-radius: 12px;
    transition: all 0.3s ease;
    color: #E8E8E8;
}

.announcement-item:hover {
    background: rgba(253, 216, 53, 0.12);
    border-color: #FDD835;
    transform: translateX(5px);
}

.announcement-badge {
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    flex-shrink: 0;
}

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

.announcement-badge.new {
    background: #FDD835;
    color: #1A1A1A;
}

.announcement-badge.info {
    background: #2196F3;
    color: #fff;
}

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

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

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

.announcement-cta {
    display: inline-block;
    padding: 12px 40px;
    background: linear-gradient(135deg, #FDD835, #FFB300);
    color: #1A1A1A;
    border-radius: 25px;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.announcement-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 25px rgba(253, 216, 53, 0.5);
    color: #1A1A1A;
    text-shadow: none;
}

/* === HERO SECTION === */
.quicktap-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1A1A1A 0%, #111 30%, #1A1A1A 60%, #222 100%);
    border-radius: 20px;
    margin: 20px 0;
    padding: 60px 30px;
    border: 1px solid rgba(253, 216, 53, 0.2);
}

.quicktap-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(253, 216, 53, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

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

.bolt-beam {
    position: absolute;
    width: 2px;
    background: linear-gradient(180deg, transparent, rgba(253, 216, 53, 0.4), transparent);
    animation: boltStrike 4s ease infinite;
}

.bolt-beam.beam-1 { left: 10%; height: 60%; top: 0; animation-delay: 0s; }
.bolt-beam.beam-2 { left: 30%; height: 80%; top: 0; animation-delay: 0.8s; }
.bolt-beam.beam-3 { left: 50%; height: 70%; top: 0; animation-delay: 1.6s; }
.bolt-beam.beam-4 { left: 70%; height: 90%; top: 0; animation-delay: 2.4s; }
.bolt-beam.beam-5 { left: 90%; height: 65%; top: 0; animation-delay: 3.2s; }

.speed-lightning {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 200px;
    opacity: 0.7;
}

.lightning-bolt {
    position: absolute;
    width: 0;
    height: 0;
    animation: lightningBolt 5s ease infinite;
}

.lightning-bolt.bolt-1 {
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 60px solid rgba(253, 216, 53, 0.6);
    top: 10px;
    left: 85px;
    animation-delay: 0s;
}

.lightning-bolt.bolt-2 {
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 60px solid rgba(253, 216, 53, 0.6);
    bottom: 10px;
    left: 85px;
    animation-delay: 0.5s;
}

.lightning-bolt.bolt-3 {
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 60px solid rgba(253, 216, 53, 0.4);
    top: 85px;
    left: 10px;
    animation-delay: 1s;
}

.lightning-bolt.bolt-4 {
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 60px solid rgba(253, 216, 53, 0.4);
    top: 85px;
    right: 10px;
    animation-delay: 1.5s;
}

.lightning-bolt.bolt-5 {
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 45px solid rgba(255, 255, 255, 0.3);
    top: 25px;
    left: 90px;
    animation-delay: 2s;
}

.lightning-bolt.bolt-6 {
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 45px solid rgba(255, 255, 255, 0.3);
    bottom: 25px;
    left: 90px;
    animation-delay: 2.5s;
}

.lightning-inner-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(253, 216, 53, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: speedPulse 3s ease infinite;
}

.speed-sweep-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(253, 216, 53, 0.05), rgba(255, 255, 255, 0.03), transparent);
    animation: quickFlash 8s ease infinite;
    pointer-events: none;
}

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

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

.hero-brand {
    display: block;
    font-size: 64px;
    color: #FDD835;
    letter-spacing: 10px;
    text-shadow: 0 0 30px rgba(253, 216, 53, 0.5);
    animation: lightningBolt 5s ease infinite;
}

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

.hero-tagline {
    display: block;
    font-size: 22px;
    color: #FFFFFF;
    letter-spacing: 5px;
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 300;
}

.hero-description {
    font-size: 16px;
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 300;
}

.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: 'Fugaz One', cursive;
    font-size: 32px;
    color: #FDD835;
    text-shadow: 0 0 10px rgba(253, 216, 53, 0.3);
}

.hero-stat-label {
    display: block;
    font-size: 13px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

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

.btn-yellow-primary {
    display: inline-block;
    padding: 14px 35px;
    background: linear-gradient(135deg, #FDD835, #FFB300);
    color: #1A1A1A;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-yellow-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(253, 216, 53, 0.5);
    color: #1A1A1A;
    text-shadow: none;
}

.btn-outline-yellow {
    display: inline-block;
    padding: 14px 35px;
    border: 2px solid #FDD835;
    color: #FDD835;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-outline-yellow:hover {
    background: rgba(253, 216, 53, 0.15);
    color: #fff;
    box-shadow: 0 0 20px rgba(253, 216, 53, 0.3);
}

/* === SECTION TITLES === */
.section-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 10px;
    letter-spacing: 2px;
    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, transparent, #FDD835, transparent);
}

.section-title i {
    margin-right: 10px;
    font-size: 24px;
}

.section-subtitle {
    text-align: center;
    color: #999;
    font-size: 15px;
    margin-bottom: 40px;
    font-weight: 300;
}

/* === QUICK STAR GAMES === */
.quick-star-games {
    padding: 50px 0;
    position: relative;
}

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

.quick-star-game-card {
    position: relative;
    background: linear-gradient(135deg, #222 0%, #1A1A1A 100%);
    border: 1px solid rgba(253, 216, 53, 0.15);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
    display: block;
    color: #E8E8E8;
}

.quick-star-game-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(253, 216, 53, 0.1), transparent);
    animation: boltRotate 10s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.quick-star-game-card:hover {
    border-color: #FDD835;
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(253, 216, 53, 0.2);
    color: #E8E8E8;
    text-shadow: none;
}

.quick-star-game-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(253, 216, 53, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

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

.quick-star-game-icon {
    position: relative;
    z-index: 2;
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(253, 216, 53, 0.15), rgba(253, 216, 53, 0.05));
    border-radius: 50%;
    border: 2px solid rgba(253, 216, 53, 0.3);
    transition: all 0.4s ease;
}

.quick-star-game-icon i {
    font-size: 28px;
    color: #FDD835;
}

.quick-star-game-card:hover .quick-star-game-icon {
    border-color: #FDD835;
    box-shadow: 0 0 20px rgba(253, 216, 53, 0.4);
    animation: tapSpeed 2s ease infinite;
}

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

.quick-star-game-rating i {
    color: #FDD835;
    font-size: 12px;
}

.quick-star-game-card h3 {
    position: relative;
    z-index: 2;
    font-size: 18px;
    color: #FFFFFF;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.quick-star-game-card p {
    position: relative;
    z-index: 2;
    font-size: 13px;
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 15px;
}

.quick-star-game-players {
    position: relative;
    z-index: 2;
    font-size: 12px;
    color: #FDD835;
    font-weight: 600;
}

.quick-star-game-players i {
    margin-right: 5px;
}

/* === QUICK GRID SECTION === */
.quick-grid-section {
    padding: 50px 0;
}

.quick-grid-map {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.quick-grid-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 10px;
    background: linear-gradient(135deg, #222, #1A1A1A);
    border: 1px solid rgba(253, 216, 53, 0.12);
    border-radius: 12px;
    transition: all 0.3s ease;
    color: #E8E8E8;
}

.quick-grid-node:hover {
    border-color: #FDD835;
    background: rgba(253, 216, 53, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(253, 216, 53, 0.15);
    color: #FDD835;
    text-shadow: none;
}

.quick-node-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(253, 216, 53, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.quick-node-icon i {
    font-size: 18px;
    color: #FDD835;
}

.quick-grid-node:hover .quick-node-icon {
    background: rgba(253, 216, 53, 0.2);
    box-shadow: 0 0 15px rgba(253, 216, 53, 0.3);
    animation: tapSpeed 1.5s ease infinite;
}

.quick-node-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* === SPEED FEATURES === */
.speed-features {
    padding: 50px 0;
    position: relative;
}

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

.speed-feature-card {
    background: linear-gradient(135deg, #222 0%, #1A1A1A 100%);
    border: 1px solid rgba(253, 216, 53, 0.12);
    border-radius: 16px;
    padding: 35px 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

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

.speed-feature-card:hover {
    border-color: #FDD835;
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(253, 216, 53, 0.15);
}

.speed-feature-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(253, 216, 53, 0.15), rgba(253, 216, 53, 0.05));
    border-radius: 50%;
    border: 2px solid rgba(253, 216, 53, 0.25);
    transition: all 0.4s ease;
}

.speed-feature-icon i {
    font-size: 26px;
    color: #FDD835;
}

.speed-feature-card:hover .speed-feature-icon {
    border-color: #FDD835;
    box-shadow: 0 0 25px rgba(253, 216, 53, 0.4);
    animation: lightningBolt 3s ease infinite;
}

.speed-feature-card h3 {
    font-size: 16px;
    color: #FFFFFF;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

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

/* === QUICK STATS === */
.quick-stats {
    position: relative;
    padding: 60px 0;
    margin: 40px 0;
    overflow: hidden;
}

.quick-stats-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #111 0%, #1A1A1A 50%, #222 100%);
    border-radius: 20px;
    border: 1px solid rgba(253, 216, 53, 0.15);
}

.speed-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(253, 216, 53, 0.06) 0%, transparent 60%);
}

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

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

.quick-stat-card {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(253, 216, 53, 0.2);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.quick-stat-card:hover {
    border-color: #FDD835;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(253, 216, 53, 0.15);
}

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

.stat-bolt-decoration i {
    font-size: 20px;
    color: rgba(253, 216, 53, 0.3);
}

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

.stat-number {
    font-family: 'Fugaz One', cursive;
    font-size: 42px;
    color: #FDD835;
    text-shadow: 0 0 15px rgba(253, 216, 53, 0.3);
    margin-bottom: 8px;
}

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

/* === QUICK PROMOS === */
.quick-promos {
    padding: 50px 0;
}

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

.quick-promo-card {
    position: relative;
    background: linear-gradient(135deg, #222 0%, #1A1A1A 100%);
    border: 1px solid rgba(253, 216, 53, 0.15);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.quick-promo-card:hover {
    border-color: #FDD835;
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(253, 216, 53, 0.2);
}

.promo-speed-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(253, 216, 53, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

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

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

.promo-icon i {
    font-size: 36px;
    color: #FDD835;
    animation: boltGlow 3s ease infinite;
}

.quick-promo-inner h3 {
    font-size: 16px;
    color: #FDD835;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

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

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

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

.promo-badge.hot { background: #ff4444; color: #fff; }
.promo-badge.new { background: #FDD835; color: #1A1A1A; }
.promo-badge.vip { background: linear-gradient(135deg, #FDD835, #FFB300); color: #1A1A1A; }

.btn-promo {
    display: inline-block;
    padding: 10px 30px;
    background: linear-gradient(135deg, #FDD835, #FFB300);
    color: #1A1A1A;
    border-radius: 25px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-promo:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(253, 216, 53, 0.4);
    color: #1A1A1A;
    text-shadow: none;
}

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

.footer-cta-speedfield {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #111 0%, #1A1A1A 50%, #222 100%);
    border: 1px solid rgba(253, 216, 53, 0.2);
    border-radius: 20px;
}

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

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

.cta-speed-bolt {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(253, 216, 53, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: speedPulse 2s ease infinite;
}

.footer-cta-section h2 {
    font-size: 32px;
    color: #FDD835;
    margin-bottom: 15px;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(253, 216, 53, 0.3);
}

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

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

.cta-feature {
    font-size: 14px;
    color: #FDD835;
    font-weight: 600;
}

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

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

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

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

.view-more-btn {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #FDD835;
    color: #FDD835;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-align: center;
}

.view-more-btn:hover {
    background: rgba(253, 216, 53, 0.12);
    color: #fff;
    box-shadow: 0 0 15px rgba(253, 216, 53, 0.3);
}

.yellow-view-more {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

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

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

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 0;
    font-size: 13px;
    color: #888;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: #FDD835;
}

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

.breadcrumb span {
    color: #666;
}

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

.article-card {
    background: linear-gradient(135deg, #222 0%, #1A1A1A 100%);
    border: 1px solid rgba(253, 216, 53, 0.1);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.4s ease;
    display: block;
    color: #E8E8E8;
}

.article-card:hover {
    border-color: #FDD835;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(253, 216, 53, 0.15);
    color: #E8E8E8;
    text-shadow: none;
}

.article-card-thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.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-size: 15px;
    font-weight: 700;
    line-height: 1.4;
}

.article-card-title a {
    color: #FFFFFF;
    transition: color 0.3s ease;
}

.article-card-title a:hover {
    color: #FDD835;
}

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

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

.article-card-excerpt {
    padding: 0 15px 12px;
    font-size: 13px;
    color: #aaa;
    line-height: 1.6;
}

.article-card-more {
    display: inline-block;
    margin: 0 15px 15px;
    padding: 6px 16px;
    border: 1px solid #FDD835;
    color: #FDD835;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.article-card-more:hover {
    background: #FDD835;
    color: #1A1A1A;
    text-shadow: none;
}

.no-posts {
    text-align: center;
    padding: 60px 20px;
    color: #888;
    font-size: 16px;
}

/* === CATEGORY PAGE === */
.category-header {
    text-align: center;
    padding: 30px 0;
}

.category-title {
    font-size: 28px;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

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

.provider-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 30px;
}

.provider-tab {
    padding: 8px 18px;
    background: rgba(253, 216, 53, 0.05);
    border: 1px solid rgba(253, 216, 53, 0.15);
    color: #ccc;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.provider-tab:hover,
.provider-tab.active {
    background: #FDD835;
    color: #1A1A1A;
    border-color: #FDD835;
}

/* === SINGLE ARTICLE === */
.single-article {
    background: linear-gradient(135deg, #222, #1A1A1A);
    border: 1px solid rgba(253, 216, 53, 0.1);
    border-radius: 16px;
    padding: 35px;
    margin-bottom: 30px;
}

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

.article-title {
    font-size: 28px;
    color: #FFFFFF;
    margin-bottom: 15px;
    line-height: 1.4;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 13px;
    color: #888;
}

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

.article-meta a {
    color: #FDD835;
}

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

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

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

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

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

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

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

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

.article-tags i {
    color: #FDD835;
}

.article-tags span {
    padding: 4px 12px;
    background: rgba(253, 216, 53, 0.08);
    border: 1px solid rgba(253, 216, 53, 0.15);
    border-radius: 15px;
    font-size: 12px;
    color: #ccc;
}

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

.article-nav a {
    color: #FDD835;
    font-size: 14px;
    font-weight: 600;
}

.article-nav a:hover {
    color: #fff;
}

/* === RELATED POSTS === */
.related-posts {
    padding: 30px 0;
}

.related-posts-title {
    font-size: 20px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

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

.related-item {
    background: linear-gradient(135deg, #222, #1A1A1A);
    border: 1px solid rgba(253, 216, 53, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: block;
    color: #E8E8E8;
}

.related-item:hover {
    border-color: #FDD835;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(253, 216, 53, 0.12);
    color: #E8E8E8;
    text-shadow: none;
}

.related-item-thumb {
    aspect-ratio: 16/10;
    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 12px;
    font-size: 13px;
    color: #fff;
    line-height: 1.4;
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 600;
}

/* === PAGINATION === */
.pagination {
    padding: 30px 0;
    text-align: center;
}

.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(253, 216, 53, 0.2);
    border-radius: 10px;
    color: #ccc;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: #FDD835;
    color: #1A1A1A;
    border-color: #FDD835;
}

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

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

.footer-col h4 {
    font-size: 15px;
    color: #FDD835;
    margin-bottom: 18px;
    letter-spacing: 1px;
}

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

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

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

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

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

.footer-brand-logo img {
    height: 45px;
}

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

.footer-18plus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 2px solid #ff4444;
    color: #ff4444;
    border-radius: 50%;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 15px;
}

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

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

.footer-social-links a:hover {
    background: #FDD835;
    color: #1A1A1A;
    border-color: #FDD835;
}

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

.footer-license-bar h4 {
    font-size: 14px;
    color: #FDD835;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.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: #888;
    font-size: 12px;
}

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

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

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

/* === 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: rgba(26, 26, 26, 0.95);
    border: 1px solid rgba(253, 216, 53, 0.3);
    border-radius: 50%;
    color: #FDD835;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.sidebar-btn:hover {
    background: #FDD835;
    color: #1A1A1A;
    border-color: #FDD835;
    transform: scale(1.1);
    text-shadow: none;
}

.sidebar-label {
    display: none;
}

.sidebar-btn-facebook:hover { background: #1877F2; border-color: #1877F2; color: #fff; }
.sidebar-btn-telegram:hover { background: #0088cc; border-color: #0088cc; color: #fff; }

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

.error-icon {
    margin-bottom: 20px;
}

.error-icon i {
    font-size: 80px;
    color: #FDD835;
    animation: lightningBolt 3s ease infinite;
}

.error-title {
    font-size: 80px;
    letter-spacing: 5px;
    margin-bottom: 15px;
}

.error-404-page h2 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.error-404-page p {
    color: #aaa;
    font-size: 15px;
    margin-bottom: 30px;
}

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