/* ============================================================
   QUICKBET Theme - Main Stylesheet
   Color: Yellow (#FFEB3B) + Black (#111) + White
   Font: Russo One (headings) + Roboto (body)
   ============================================================ */

/* === CSS Variables === */
:root {
    --yellow: #FFEB3B;
    --yellow-light: #FFF176;
    --yellow-dark: #FDD835;
    --yellow-glow: rgba(255, 235, 59, 0.4);
    --black: #111;
    --black-light: #1a1a1a;
    --black-card: #222;
    --black-surface: #2a2a2a;
    --white: #fff;
    --gray: #aaa;
    --gray-light: #ccc;
    --gray-dark: #555;
    --font-heading: 'Russo One', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --transition: all 0.3s ease;
    --shadow-yellow: 0 0 20px rgba(255, 235, 59, 0.3);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.4);
}

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

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: var(--yellow);
    transition: var(--transition);
}

a:hover {
    color: var(--yellow-light);
}

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

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--white);
    line-height: 1.3;
}

.yellow-text {
    color: var(--yellow) !important;
}

/* === Content Area === */
.content-area {
    display: flex;
    gap: 25px;
    padding: 20px 0;
}

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

/* === HEADER === */
.site-header {
    background: var(--black);
    border-bottom: 3px solid var(--yellow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.logo-bolt {
    font-size: 32px;
    color: var(--yellow);
    filter: drop-shadow(0 0 8px var(--yellow-glow));
    animation: boltFlash 2s ease-in-out infinite;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 26px;
    color: var(--yellow);
    letter-spacing: 3px;
    text-shadow: 0 0 10px var(--yellow-glow);
}

.header-time {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--yellow);
    background: rgba(255, 235, 59, 0.1);
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 235, 59, 0.2);
}

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

.btn-login {
    padding: 8px 18px;
    background: transparent;
    border: 2px solid var(--yellow);
    color: var(--yellow);
    font-family: var(--font-heading);
    font-size: 13px;
    border-radius: 25px;
    transition: var(--transition);
    letter-spacing: 1px;
}

.btn-login:hover {
    background: var(--yellow);
    color: var(--black);
}

.btn-register {
    padding: 8px 18px;
    background: var(--yellow);
    color: var(--black);
    font-family: var(--font-heading);
    font-size: 13px;
    border-radius: 25px;
    border: 2px solid var(--yellow);
    transition: var(--transition);
    letter-spacing: 1px;
    font-weight: 700;
}

.btn-register:hover {
    background: var(--yellow-light);
    box-shadow: var(--shadow-yellow);
    transform: translateY(-2px);
}

.btn-demo {
    padding: 8px 18px;
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 13px;
    border-radius: 25px;
    transition: var(--transition);
    letter-spacing: 1px;
}

.btn-demo:hover {
    background: var(--white);
    color: var(--black);
}

/* === Navigation === */
.main-navigation {
    background: var(--black-light);
    border-top: 1px solid rgba(255, 235, 59, 0.15);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--yellow);
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
}

.nav-menu {
    display: flex;
    justify-content: center;
    gap: 0;
}

.nav-link {
    display: block;
    padding: 12px 16px;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 13px;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--yellow);
    background: rgba(255, 235, 59, 0.1);
}

.nav-item.has-dropdown .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--black-card);
    border: 1px solid rgba(255, 235, 59, 0.2);
    min-width: 200px;
    z-index: 100;
    border-radius: 0 0 8px 8px;
}

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

.sub-menu .nav-link {
    padding: 10px 16px;
    font-size: 12px;
    border-bottom: 1px solid rgba(255, 235, 59, 0.1);
}

/* === Notification Bar === */
.notification-bar {
    background: var(--yellow);
    overflow: hidden;
    padding: 8px 0;
}

.notification-content {
    display: flex;
    gap: 60px;
    animation: notificationScroll 25s linear infinite;
    white-space: nowrap;
}

.notification-content span {
    color: var(--black);
    font-family: var(--font-heading);
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 700;
}

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

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

.announcement-content {
    position: relative;
    background: var(--black-card);
    border: 2px solid var(--yellow);
    border-radius: 16px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    z-index: 1;
    box-shadow: 0 0 40px var(--yellow-glow);
}

.announcement-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: var(--gray);
    font-size: 28px;
    cursor: pointer;
    transition: var(--transition);
}

.announcement-close:hover {
    color: var(--yellow);
}

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

.bolt-icon {
    font-size: 48px;
    color: var(--yellow);
    display: inline-block;
    animation: boltFlash 1.5s ease-in-out infinite;
}

.announcement-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.announcement-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.announcement-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: rgba(255, 235, 59, 0.05);
    border: 1px solid rgba(255, 235, 59, 0.1);
    border-radius: 8px;
    transition: var(--transition);
    color: var(--white);
}

.announcement-item:hover {
    background: rgba(255, 235, 59, 0.1);
    border-color: var(--yellow);
    transform: translateX(5px);
}

.announcement-badge {
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    flex-shrink: 0;
}

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

.announcement-badge.new {
    background: var(--yellow);
    color: var(--black);
}

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

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

.announcement-item i {
    color: var(--yellow);
    font-size: 12px;
}

.announcement-footer {
    text-align: center;
    margin-top: 20px;
}

.announcement-cta {
    display: inline-block;
    padding: 12px 40px;
    background: var(--yellow);
    color: var(--black);
    font-family: var(--font-heading);
    font-size: 15px;
    border-radius: 25px;
    letter-spacing: 2px;
    transition: var(--transition);
}

.announcement-cta:hover {
    background: var(--yellow-light);
    box-shadow: var(--shadow-yellow);
    color: var(--black);
    transform: translateY(-2px);
}

/* === BUTTONS === */
.btn-yellow-primary {
    display: inline-block;
    padding: 14px 35px;
    background: var(--yellow);
    color: var(--black);
    font-family: var(--font-heading);
    font-size: 16px;
    border-radius: 30px;
    letter-spacing: 2px;
    transition: var(--transition);
    border: 2px solid var(--yellow);
    font-weight: 700;
}

.btn-yellow-primary:hover {
    background: var(--yellow-light);
    box-shadow: 0 0 30px var(--yellow-glow);
    transform: translateY(-3px);
    color: var(--black);
}

.btn-outline-yellow {
    display: inline-block;
    padding: 14px 35px;
    background: transparent;
    color: var(--yellow);
    font-family: var(--font-heading);
    font-size: 16px;
    border-radius: 30px;
    border: 2px solid var(--yellow);
    letter-spacing: 2px;
    transition: var(--transition);
}

.btn-outline-yellow:hover {
    background: var(--yellow);
    color: var(--black);
    box-shadow: var(--shadow-yellow);
    transform: translateY(-3px);
}

/* === SECTION TITLES === */
.section-title {
    font-family: var(--font-heading);
    font-size: 32px;
    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: var(--yellow);
    border-radius: 2px;
}

.title-bolt {
    color: var(--yellow);
    margin-right: 8px;
    font-size: 28px;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 15px;
    margin-bottom: 40px;
    margin-top: 15px;
}

/* ============================================================
   1. HERO SECTION
   ============================================================ */
.qb-hero {
    position: relative;
    background: linear-gradient(135deg, var(--yellow-dark), var(--yellow), var(--yellow-light));
    border-radius: 16px;
    padding: 70px 40px;
    overflow: hidden;
    margin-bottom: 30px;
}

.qb-hero-speed-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(0, 0, 0, 0.04) 10px,
        rgba(0, 0, 0, 0.04) 20px
    );
    pointer-events: none;
}

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

.hero-bolt {
    position: absolute;
    font-size: 40px;
    color: rgba(0, 0, 0, 0.06);
    animation: boltFloat 6s ease-in-out infinite;
}

.hero-bolt-1 { top: 10%; left: 5%; animation-delay: 0s; font-size: 50px; }
.hero-bolt-2 { top: 60%; left: 10%; animation-delay: 1s; font-size: 35px; }
.hero-bolt-3 { top: 20%; right: 8%; animation-delay: 2s; font-size: 45px; }
.hero-bolt-4 { bottom: 15%; right: 15%; animation-delay: 0.5s; font-size: 30px; }
.hero-bolt-5 { top: 45%; left: 50%; animation-delay: 1.5s; font-size: 55px; }

@keyframes boltFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
    50% { transform: translateY(-15px) rotate(10deg); opacity: 0.6; }
}

.qb-hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

.qb-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--black);
    color: var(--yellow);
    padding: 8px 20px;
    border-radius: 25px;
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 25px;
    animation: pulseGlow 2s ease-in-out infinite;
}

.badge-bolt {
    font-size: 16px;
    animation: boltFlash 1s ease-in-out infinite;
}

.qb-hero-lightning {
    margin-bottom: 20px;
}

.mega-bolt {
    font-size: 80px;
    color: var(--black);
    display: inline-block;
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.3));
    animation: boltFlash 2s ease-in-out infinite;
}

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

.qb-brand {
    display: block;
    font-family: var(--font-heading);
    font-size: 60px;
    color: var(--black);
    letter-spacing: 8px;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
}

.qb-divider {
    display: block;
    margin: 15px auto;
    width: 120px;
    height: 3px;
    background: var(--black);
    border-radius: 2px;
    position: relative;
}

.divider-bolt {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    color: var(--black);
}

.qb-tagline {
    display: block;
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--black);
    letter-spacing: 4px;
    opacity: 0.85;
}

.qb-hero-desc {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.75);
    max-width: 650px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

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

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

.qb-stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--black);
    letter-spacing: 2px;
}

.qb-stat-label {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.6);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.qb-hero-cta-group .btn-yellow-primary {
    background: var(--black);
    color: var(--yellow);
    border-color: var(--black);
}

.qb-hero-cta-group .btn-yellow-primary:hover {
    background: var(--black-light);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.qb-hero-cta-group .btn-outline-yellow {
    border-color: var(--black);
    color: var(--black);
}

.qb-hero-cta-group .btn-outline-yellow:hover {
    background: var(--black);
    color: var(--yellow);
}

/* ============================================================
   2. QUICK GUIDE (3-STEP)
   ============================================================ */
.quick-guide {
    background: var(--black-card);
    border-radius: 16px;
    padding: 50px 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 235, 59, 0.15);
    position: relative;
    overflow: hidden;
}

.quick-guide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 15px,
        rgba(255, 235, 59, 0.02) 15px,
        rgba(255, 235, 59, 0.02) 30px
    );
    pointer-events: none;
}

.quick-guide-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.step-card {
    background: var(--black-surface);
    border: 2px solid rgba(255, 235, 59, 0.15);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    flex: 1;
    max-width: 280px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--yellow);
}

.step-card:hover {
    border-color: var(--yellow);
    transform: translateY(-8px);
    box-shadow: var(--shadow-yellow);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 48px;
    color: var(--yellow);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: 4px;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    background: rgba(255, 235, 59, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    border: 3px solid var(--yellow);
    transition: var(--transition);
}

.step-card:hover .step-icon {
    background: var(--yellow);
    box-shadow: 0 0 20px var(--yellow-glow);
}

.step-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--yellow);
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.step-card p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.step-speed {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 235, 59, 0.15);
    color: var(--yellow);
    padding: 5px 14px;
    border-radius: 15px;
    font-family: var(--font-heading);
    font-size: 12px;
    letter-spacing: 1px;
}

.step-speed i {
    animation: boltFlash 1.5s ease-in-out infinite;
}

.step-arrow {
    font-size: 36px;
    color: var(--yellow);
    flex-shrink: 0;
    animation: stepArrow 1.5s ease-in-out infinite;
}

.arrow-icon {
    font-weight: 700;
}

@keyframes stepArrow {
    0%, 100% { transform: translateX(0); opacity: 0.6; }
    50% { transform: translateX(8px); opacity: 1; }
}

.quick-guide-cta {
    text-align: center;
    margin-top: 35px;
    position: relative;
    z-index: 1;
}

/* ============================================================
   3. SPEED FEATURES
   ============================================================ */
.speed-features {
    background: var(--black-card);
    border-radius: 16px;
    padding: 50px 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 235, 59, 0.15);
    position: relative;
    overflow: hidden;
}

.speed-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 12px,
        rgba(255, 235, 59, 0.02) 12px,
        rgba(255, 235, 59, 0.02) 24px
    );
    pointer-events: none;
}

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

.speed-card {
    background: var(--black-surface);
    border: 2px solid rgba(255, 235, 59, 0.1);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

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

.speed-card:hover {
    border-color: var(--yellow);
    transform: translateY(-5px);
    box-shadow: var(--shadow-yellow);
}

.speed-card-icon {
    margin-bottom: 10px;
}

.speed-bolt {
    font-size: 32px;
    color: var(--yellow);
    display: inline-block;
    animation: boltFlash 2s ease-in-out infinite;
}

.speed-metric {
    margin-bottom: 15px;
}

.speed-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 42px;
    color: var(--yellow);
    letter-spacing: 2px;
    text-shadow: 0 0 15px var(--yellow-glow);
}

.speed-unit {
    font-size: 13px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.speed-card h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.speed-card p {
    color: var(--gray);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.speed-bar {
    height: 4px;
    background: rgba(255, 235, 59, 0.15);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 8px;
}

.speed-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--yellow-dark), var(--yellow));
    border-radius: 2px;
    transition: width 1.5s ease;
    animation: speedDash 3s ease-in-out infinite;
}

@keyframes speedDash {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.speed-label {
    font-size: 11px;
    color: var(--yellow);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ============================================================
   4. QUICK GAMES
   ============================================================ */
.quick-games {
    margin-bottom: 30px;
    padding: 50px 0;
}

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

.game-card {
    background: var(--black-card);
    border: 2px solid rgba(255, 235, 59, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    display: block;
    color: var(--white);
}

.game-card:hover {
    border-color: var(--yellow);
    transform: translateY(-5px);
    box-shadow: var(--shadow-yellow);
    color: var(--white);
}

.game-card-img {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.game-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.game-card:hover .game-card-img img {
    transform: scale(1.1);
}

.game-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.game-card:hover .game-card-overlay {
    opacity: 1;
}

.game-play-icon {
    width: 60px;
    height: 60px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 24px;
    transition: var(--transition);
    transform: scale(0.8);
}

.game-card:hover .game-play-icon {
    transform: scale(1);
}

.game-speed-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--yellow);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 2;
}

.game-card-info {
    padding: 20px;
}

.game-card-info h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--yellow);
    margin-bottom: 6px;
    letter-spacing: 1px;
}

.game-card-info p {
    color: var(--gray);
    font-size: 13px;
    margin-bottom: 12px;
}

.game-cta-btn {
    display: inline-block;
    padding: 8px 20px;
    background: var(--yellow);
    color: var(--black);
    font-family: var(--font-heading);
    font-size: 12px;
    border-radius: 20px;
    letter-spacing: 2px;
    transition: var(--transition);
}

.game-card:hover .game-cta-btn {
    box-shadow: var(--shadow-yellow);
}

/* ============================================================
   5. FOOTER CTA
   ============================================================ */
.footer-cta-section {
    position: relative;
    margin-bottom: 30px;
    border-radius: 16px;
    overflow: hidden;
}

.footer-cta-speed-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 235, 59, 0.03) 10px,
        rgba(255, 235, 59, 0.03) 20px
    );
    pointer-events: none;
    z-index: 0;
}

.footer-cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 60px 30px;
    background: linear-gradient(135deg, var(--black-card), var(--black-surface));
    border: 2px solid var(--yellow);
    border-radius: 16px;
}

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

.cta-bolt {
    position: absolute;
    font-size: 24px;
    color: rgba(255, 235, 59, 0.1);
    animation: boltFloat 5s ease-in-out infinite;
}

.cta-bolt-1 { top: 10%; left: 5%; }
.cta-bolt-2 { top: 20%; right: 10%; animation-delay: 1s; }
.cta-bolt-3 { bottom: 20%; left: 15%; animation-delay: 2s; }
.cta-bolt-4 { bottom: 10%; right: 5%; animation-delay: 0.5s; }
.cta-bolt-5 { top: 50%; left: 50%; animation-delay: 1.5s; }

.cta-mega-bolt {
    margin-bottom: 20px;
}

.cta-mega-bolt span {
    font-size: 60px;
    color: var(--yellow);
    display: inline-block;
    filter: drop-shadow(0 0 15px var(--yellow-glow));
    animation: boltFlash 2s ease-in-out infinite;
}

.footer-cta-inner h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--yellow);
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.footer-cta-inner p {
    color: var(--gray);
    font-size: 16px;
    max-width: 550px;
    margin: 0 auto 25px;
    line-height: 1.6;
}

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

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
}

.cta-feature i {
    color: var(--yellow);
}

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

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

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

.home-news-placeholder {
    display: contents;
}

.article-card {
    background: var(--black-card);
    border: 1px solid rgba(255, 235, 59, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    display: block;
    color: var(--white);
}

.article-card:hover {
    border-color: var(--yellow);
    transform: translateY(-5px);
    box-shadow: var(--shadow-yellow);
    color: var(--white);
}

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

.article-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.article-card-title {
    padding: 15px 15px 8px;
    font-family: var(--font-heading);
    font-size: 15px;
    letter-spacing: 0.5px;
    line-height: 1.4;
    color: var(--white);
}

.article-card-title a {
    color: var(--white);
}

.article-card-title a:hover {
    color: var(--yellow);
}

.article-card-meta {
    padding: 0 15px;
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 8px;
}

.article-card-meta i {
    color: var(--yellow);
    margin-right: 4px;
}

.article-card-excerpt {
    padding: 0 15px 15px;
    font-size: 13px;
    color: var(--gray);
    line-height: 1.5;
}

.article-card-more {
    display: inline-block;
    padding: 8px 15px;
    color: var(--yellow);
    font-family: var(--font-heading);
    font-size: 12px;
    letter-spacing: 1px;
    transition: var(--transition);
}

.article-card-more:hover {
    color: var(--yellow-light);
}

.view-more-btn {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid var(--yellow);
    border-radius: 25px;
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 2px;
    transition: var(--transition);
    text-align: center;
    margin: 0 auto;
}

.yellow-view-more {
    color: var(--yellow);
}

.yellow-view-more:hover {
    background: var(--yellow);
    color: var(--black);
    box-shadow: var(--shadow-yellow);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--black-card);
    border-top: 3px solid var(--yellow);
    padding: 50px 0 20px;
    margin-top: 30px;
}

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

.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.footer-brand-logo .logo-bolt {
    font-size: 28px;
}

.footer-brand-logo .logo-text {
    font-size: 22px;
}

.footer-brand-text {
    color: var(--gray);
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.footer-18plus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid var(--yellow);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--yellow);
    margin-bottom: 15px;
}

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

.footer-social-links a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 235, 59, 0.1);
    border: 1px solid rgba(255, 235, 59, 0.2);
    border-radius: 50%;
    color: var(--yellow);
    font-size: 14px;
    transition: var(--transition);
}

.footer-social-links a:hover {
    background: var(--yellow);
    color: var(--black);
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--yellow);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

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

.footer-col ul li a {
    color: var(--gray);
    font-size: 13px;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--yellow);
    padding-left: 5px;
}

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

.footer-license-bar h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--yellow);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

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

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

.license-item i {
    font-size: 28px;
    color: var(--yellow);
}

.license-item span {
    font-size: 11px;
    color: var(--gray);
    font-weight: 500;
}

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

.footer-copyright {
    color: var(--gray);
    font-size: 12px;
}

.footer-disclaimer {
    color: var(--gray-dark);
    font-size: 12px;
}

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

.sidebar-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black-card);
    border: 2px solid var(--yellow);
    border-radius: 50%;
    color: var(--yellow);
    font-size: 18px;
    transition: var(--transition);
    position: relative;
}

.sidebar-btn:hover {
    background: var(--yellow);
    color: var(--black);
    box-shadow: var(--shadow-yellow);
}

.sidebar-label {
    display: none;
    position: absolute;
    right: 55px;
    background: var(--black-card);
    color: var(--yellow);
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    border: 1px solid var(--yellow);
}

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

.sidebar-btn-facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
    color: white;
}

.sidebar-btn-telegram:hover {
    background: #0088cc;
    border-color: #0088cc;
    color: white;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 0;
    font-size: 13px;
    color: var(--gray);
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--yellow);
}

.breadcrumb span {
    color: var(--gray);
}

/* ============================================================
   CATEGORY PAGE
   ============================================================ */
.category-header {
    padding: 25px 0;
    border-bottom: 2px solid rgba(255, 235, 59, 0.15);
    margin-bottom: 20px;
}

.category-title {
    font-family: var(--font-heading);
    font-size: 30px;
    letter-spacing: 3px;
}

.category-title i {
    color: var(--yellow);
}

.category-desc {
    color: var(--gray);
    font-size: 14px;
    margin-top: 8px;
}

.provider-tabs {
    display: flex;
    gap: 8px;
    padding: 15px 0;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.provider-tab {
    padding: 8px 18px;
    background: var(--black-card);
    border: 1px solid rgba(255, 235, 59, 0.2);
    border-radius: 20px;
    color: var(--gray);
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

.provider-tab:hover,
.provider-tab.active {
    background: var(--yellow);
    color: var(--black);
    border-color: var(--yellow);
    font-weight: 700;
}

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

.no-posts {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--gray);
}

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

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--black-card);
    border: 1px solid rgba(255, 235, 59, 0.2);
    border-radius: 8px;
    color: var(--white);
    font-size: 14px;
    transition: var(--transition);
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: var(--yellow);
    color: var(--black);
    border-color: var(--yellow);
}

/* ============================================================
   SINGLE ARTICLE
   ============================================================ */
.single-article {
    background: var(--black-card);
    border: 1px solid rgba(255, 235, 59, 0.1);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
}

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

.article-title {
    font-family: var(--font-heading);
    font-size: 30px;
    color: var(--white);
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.article-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: var(--gray);
    flex-wrap: wrap;
}

.article-meta i {
    color: var(--yellow);
    margin-right: 5px;
}

.article-meta a {
    color: var(--yellow);
}

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

.article-featured-img img {
    width: 100%;
    border-radius: 12px;
}

.article-content {
    color: var(--gray-light);
    font-size: 16px;
    line-height: 1.8;
}

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

.article-content h2,
.article-content h3 {
    color: var(--yellow);
    margin: 20px 0 10px;
}

.article-content a {
    color: var(--yellow);
    text-decoration: underline;
}

.article-content blockquote {
    border-left: 4px solid var(--yellow);
    padding: 15px 20px;
    background: rgba(255, 235, 59, 0.05);
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

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

.article-content ul li::before {
    content: '⚡';
    margin-right: 8px;
}

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

.article-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 235, 59, 0.1);
    margin-top: 20px;
}

.article-tags i {
    color: var(--yellow);
}

.article-tags span {
    padding: 4px 12px;
    background: rgba(255, 235, 59, 0.1);
    border-radius: 15px;
    font-size: 12px;
    color: var(--yellow);
}

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

.article-nav a {
    color: var(--yellow);
    font-size: 14px;
}

.article-nav a:hover {
    color: var(--yellow-light);
}

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

.related-posts-title {
    font-family: var(--font-heading);
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 235, 59, 0.15);
}

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

.related-item {
    background: var(--black-card);
    border: 1px solid rgba(255, 235, 59, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    display: block;
    color: var(--white);
}

.related-item:hover {
    border-color: var(--yellow);
    transform: translateY(-3px);
    color: var(--white);
}

.related-item-thumb {
    height: 120px;
    overflow: hidden;
}

.related-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-item-title {
    padding: 10px;
    font-size: 13px;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    line-height: 1.4;
}

/* ============================================================
   PAGE
   ============================================================ */
.page-article {
    background: var(--black-card);
    border: 1px solid rgba(255, 235, 59, 0.1);
    border-radius: 16px;
    padding: 30px;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 30px;
    color: var(--yellow);
    letter-spacing: 2px;
    margin-bottom: 20px;
}

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

.page-content {
    color: var(--gray-light);
    font-size: 16px;
    line-height: 1.8;
}

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

.page-content h2,
.page-content h3 {
    color: var(--yellow);
    margin: 20px 0 10px;
}

/* ============================================================
   KEYFRAME ANIMATIONS
   ============================================================ */
@keyframes boltFlash {
    0%, 100% { opacity: 1; filter: brightness(1); }
    50% { opacity: 0.6; filter: brightness(1.5); }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(255, 235, 59, 0.2); }
    50% { box-shadow: 0 0 25px rgba(255, 235, 59, 0.5); }
}

@keyframes speedDash {
    0% { transform: translateX(-5px); filter: blur(0); opacity: 0.7; }
    50% { transform: translateX(5px); filter: blur(1px); opacity: 1; }
    100% { transform: translateX(-5px); filter: blur(0); opacity: 0.7; }
}

@keyframes stepReveal {
    0% { transform: translateX(-30px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes floatBolt {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(5deg); }
    75% { transform: translateY(5px) rotate(-5deg); }
}

/* === Fade In Up Animation === */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === Step Card Animation === */
.step-card.animated {
    animation: stepReveal 0.6s ease forwards;
}

.step-card-1.animated { animation-delay: 0s; }
.step-card-2.animated { animation-delay: 0.2s; }
.step-card-3.animated { animation-delay: 0.4s; }
