/* =============================================
   LIVECLASSIC - Main Stylesheet
   Theme: moban-169
   Colors: Red(#C62828) + Gold(#FFD700) + Black(#0D0D0D)
   Fonts: Playfair Display + Lato
   ============================================= */

/* === CSS Variables === */
:root {
    --primary-red: #C62828;
    --primary-red-dark: #8E0000;
    --primary-red-light: #FF5F52;
    --primary-gold: #FFD700;
    --primary-gold-dark: #C7A600;
    --primary-gold-light: #FFE44D;
    --primary-black: #0D0D0D;
    --dark-bg: #111111;
    --dark-bg-2: #1A1A1A;
    --dark-bg-3: #222222;
    --dark-bg-4: #2A2A2A;
    --text-white: #FFFFFF;
    --text-light: #E0E0E0;
    --text-muted: #999999;
    --text-dim: #666666;
    --border-color: rgba(255, 215, 0, 0.15);
    --border-red: rgba(198, 40, 40, 0.3);
    --shadow-gold: 0 0 20px rgba(255, 215, 0, 0.2);
    --shadow-red: 0 0 20px rgba(198, 40, 40, 0.3);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --border-radius-lg: 16px;
}

/* === Keyframes === */
@keyframes liveStream {
    0% { background-position: 0% 50%; opacity: 0.8; }
    25% { background-position: 50% 0%; opacity: 1; }
    50% { background-position: 100% 50%; opacity: 0.9; }
    75% { background-position: 50% 100%; opacity: 1; }
    100% { background-position: 0% 50%; opacity: 0.8; }
}

@keyframes cameraFlash {
    0% { opacity: 0; transform: scale(0.8); }
    10% { opacity: 1; transform: scale(1.1); }
    30% { opacity: 0.6; transform: scale(1); }
    100% { opacity: 0; transform: scale(0.8); }
}

@keyframes dealerPulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(198, 40, 40, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 30px 10px rgba(198, 40, 40, 0.2); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(198, 40, 40, 0); }
}

@keyframes cardFlip {
    0% { transform: perspective(800px) rotateY(0deg); }
    50% { transform: perspective(800px) rotateY(90deg); }
    100% { transform: perspective(800px) rotateY(0deg); }
}

@keyframes scanLine {
    0% { top: -5%; }
    100% { top: 105%; }
}

@keyframes recBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

@keyframes lensRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

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

@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 marqueeScroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

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

@keyframes countUp {
    from { opacity: 0; transform: scale(0.5); }
    to { opacity: 1; transform: scale(1); }
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    background-color: var(--primary-black);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

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

ul, ol {
    list-style: none;
}

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

.gold-text {
    color: var(--primary-gold);
}

/* === Layout === */
.content-area {
    display: flex;
    gap: 30px;
    padding: 30px 0;
}

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

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

.announcement-content {
    position: relative;
    background: linear-gradient(145deg, var(--dark-bg-2), var(--dark-bg));
    border: 2px solid var(--primary-gold);
    border-radius: var(--border-radius-lg);
    padding: 35px 30px;
    max-width: 520px;
    width: 90%;
    z-index: 1;
    box-shadow: var(--shadow-gold), var(--shadow-red);
    animation: fadeInUp 0.5s ease;
}

.announcement-close {
    position: absolute;
    top: 12px;
    right: 15px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 28px;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
}

.announcement-close:hover {
    color: var(--primary-gold);
    transform: rotate(90deg);
}

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

.announcement-header-icon i {
    font-size: 48px;
    color: var(--primary-gold);
    animation: dealerPulse 2s infinite;
}

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

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

.announcement-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
    color: var(--text-light);
}

.announcement-item:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--primary-gold);
    transform: translateX(5px);
}

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

.announcement-badge.hot {
    background: var(--primary-red);
    color: white;
}

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

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

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

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

.announcement-cta {
    display: inline-block;
    padding: 12px 40px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-red-dark));
    color: white;
    font-weight: 700;
    font-size: 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.announcement-cta:hover {
    background: linear-gradient(135deg, var(--primary-red-light), var(--primary-red));
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
}

/* === Header === */
.site-header {
    background: linear-gradient(180deg, var(--primary-black), var(--dark-bg));
    border-bottom: 2px solid var(--border-color);
    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;
}

.header-time {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--primary-gold);
    font-weight: 300;
}

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

.btn-login,
.btn-register,
.btn-demo {
    display: inline-block;
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.btn-login {
    background: transparent;
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
}

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

.btn-register {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-red-dark));
    color: white;
    border: none;
}

.btn-register:hover {
    background: linear-gradient(135deg, var(--primary-red-light), var(--primary-red));
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
}

.btn-demo {
    background: transparent;
    border: 1px solid var(--primary-red);
    color: var(--primary-red-light);
}

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

/* === Navigation === */
.main-navigation {
    background: linear-gradient(90deg, var(--primary-red-dark), var(--primary-red), var(--primary-red-dark));
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

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

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 12px 18px;
    color: var(--text-white);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.nav-link:hover,
.nav-item.current-menu-item .nav-link {
    color: var(--primary-gold);
    background: rgba(0, 0, 0, 0.3);
}

.nav-link i {
    margin-right: 5px;
    font-size: 12px;
}

.has-dropdown .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--dark-bg-2);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    z-index: 100;
    box-shadow: var(--shadow-gold);
}

.has-dropdown:hover .sub-menu {
    display: block;
    animation: slideDown 0.3s ease;
}

.sub-menu .nav-link {
    padding: 10px 20px;
    font-size: 12px;
    border-bottom: 1px solid var(--border-color);
}

.sub-menu .nav-link:hover {
    background: rgba(255, 215, 0, 0.1);
}

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

/* === Notification Bar === */
.notification-bar {
    background: var(--dark-bg-2);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
    padding: 8px 0;
}

.notification-content {
    display: flex;
    gap: 40px;
    animation: marqueeScroll 30s linear infinite;
    white-space: nowrap;
}

.notification-content span {
    color: var(--primary-gold);
    font-size: 13px;
    font-weight: 400;
}

/* === Hero Section === */
.liveclassic-hero {
    position: relative;
    padding: 80px 30px;
    background: linear-gradient(145deg, var(--primary-black), #1a0000, var(--dark-bg));
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    margin-bottom: 40px;
    text-align: center;
    border: 1px solid var(--border-red);
}

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

.scan-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(198, 40, 40, 0.3), transparent);
    animation: scanLine 4s linear infinite;
}

.scan-line-1 { animation-delay: 0s; }
.scan-line-2 { animation-delay: 1.3s; }
.scan-line-3 { animation-delay: 2.6s; }

.camera-lens-frame {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    pointer-events: none;
}

.lens-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 2px solid rgba(198, 40, 40, 0.15);
    animation: lensRotate 20s linear infinite;
}

.lens-ring-outer {
    width: 300px;
    height: 300px;
    transform: translate(-50%, -50%);
    border-style: dashed;
}

.lens-ring-inner {
    width: 200px;
    height: 200px;
    transform: translate(-50%, -50%);
    border-color: rgba(255, 215, 0, 0.1);
    animation-direction: reverse;
}

.lens-flare {
    position: absolute;
    top: 20%;
    left: 30%;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3), transparent);
    border-radius: 50%;
    animation: cameraFlash 5s ease infinite;
}

.rec-indicator {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-red);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.rec-dot {
    width: 10px;
    height: 10px;
    background: var(--primary-red);
    border-radius: 50%;
    animation: recBlink 1.5s infinite;
}

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

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

.hero-brand {
    display: block;
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    color: var(--primary-gold);
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    letter-spacing: 3px;
}

.hero-divider-line {
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
    margin: 15px auto;
}

.hero-tagline {
    display: block;
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 300;
    color: var(--text-light);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.hero-description {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
}

.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: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-gold);
}

.hero-stat-label {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

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

/* === Buttons === */
.btn-gold-primary {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-red-dark));
    color: white;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-red);
}

.btn-gold-primary:hover {
    background: linear-gradient(135deg, var(--primary-red-light), var(--primary-red));
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(198, 40, 40, 0.4);
}

.btn-outline-gold {
    display: inline-block;
    padding: 14px 40px;
    background: transparent;
    color: var(--primary-gold);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    border: 2px solid var(--primary-gold);
    cursor: pointer;
    transition: var(--transition);
}

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

/* === Section Titles === */
.section-title {
    font-family: var(--font-heading);
    font-size: 32px;
    text-align: center;
    margin-bottom: 10px;
    position: relative;
}

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

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

/* === Live Table Games Section === */
.live-table-games {
    margin-bottom: 50px;
}

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

.live-table-card {
    position: relative;
    background: linear-gradient(145deg, var(--dark-bg-2), var(--dark-bg-3));
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 30px 25px;
    text-align: center;
    transition: var(--transition);
    overflow: hidden;
    display: block;
    color: var(--text-light);
}

.live-table-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold);
    color: var(--text-light);
}

.live-table-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: var(--primary-red);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
}

.live-dot {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: recBlink 1.5s infinite;
}

.live-table-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(198, 40, 40, 0.2), rgba(255, 215, 0, 0.1));
    border-radius: 50%;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.live-table-icon i {
    font-size: 28px;
    color: var(--primary-gold);
}

.live-table-card:hover .live-table-icon {
    border-color: var(--primary-gold);
    animation: dealerPulse 2s infinite;
}

.live-table-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-gold);
}

.live-table-card p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.6;
}

.live-table-players {
    font-size: 12px;
    color: var(--text-dim);
}

.live-table-players i {
    margin-right: 5px;
    color: var(--primary-red);
}

/* === Game Grid Section === */
.game-grid-section {
    margin-bottom: 50px;
}

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

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

.game-grid-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px 15px;
    background: linear-gradient(145deg, var(--dark-bg-2), var(--dark-bg-3));
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
    color: var(--text-light);
}

.game-grid-node:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: var(--shadow-red);
    color: var(--text-light);
}

.game-node-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.game-node-icon i {
    font-size: 24px;
    color: var(--primary-gold);
}

.game-node-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-white);
    text-align: center;
}

/* === Features Section === */
.live-features {
    margin-bottom: 50px;
}

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

.live-feature-card {
    background: linear-gradient(145deg, var(--dark-bg-2), var(--dark-bg-3));
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition);
}

.live-feature-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold);
}

.live-feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(198, 40, 40, 0.2), rgba(255, 215, 0, 0.1));
    border-radius: 50%;
    border: 2px solid var(--primary-red);
    transition: var(--transition);
}

.live-feature-icon i {
    font-size: 32px;
    color: var(--primary-gold);
}

.live-feature-card:hover .live-feature-icon {
    animation: dealerPulse 2s infinite;
    border-color: var(--primary-gold);
}

.live-feature-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--primary-gold);
}

.live-feature-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* === Stats Section === */
.live-stats {
    position: relative;
    padding: 60px 30px;
    margin-bottom: 50px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.live-stats-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, var(--primary-black), #1a0000, var(--dark-bg));
    z-index: 0;
}

.camera-scan-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(198, 40, 40, 0.03) 2px,
        rgba(198, 40, 40, 0.03) 4px
    );
    animation: liveStream 8s ease infinite;
}

.live-stats .section-title,
.live-stats .section-subtitle {
    position: relative;
    z-index: 1;
}

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

.live-stat-card {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.9), rgba(13, 13, 13, 0.9));
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
}

.live-stat-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.stat-decoration {
    margin-bottom: 15px;
}

.stat-decoration i {
    font-size: 28px;
    color: var(--primary-red);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 8px;
    animation: countUp 1s ease;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* === Promotions Section === */
.live-promos {
    margin-bottom: 50px;
}

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

.live-promo-card {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.live-promo-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-red);
}

.promo-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, var(--dark-bg-2), var(--dark-bg));
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
}

.promo-inner {
    position: relative;
    z-index: 1;
    padding: 35px 25px;
    text-align: center;
}

.promo-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(198, 40, 40, 0.2), rgba(255, 215, 0, 0.1));
    border-radius: 50%;
    border: 2px solid var(--border-color);
}

.promo-icon i {
    font-size: 28px;
    color: var(--primary-gold);
}

.promo-inner h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--primary-gold);
    margin-bottom: 12px;
}

.promo-inner p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.7;
}

.promo-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 12px;
    color: var(--text-dim);
}

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

.promo-badge.hot {
    background: var(--primary-red);
    color: white;
}

.promo-badge.new {
    background: var(--primary-gold);
    color: var(--primary-black);
}

.promo-badge.vip {
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-dark));
    color: var(--primary-black);
}

.btn-promo {
    display: inline-block;
    padding: 10px 30px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-red-dark));
    color: white;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-promo:hover {
    background: linear-gradient(135deg, var(--primary-red-light), var(--primary-red));
    color: white;
    transform: translateY(-2px);
}

/* === Footer CTA === */
.footer-cta-section {
    position: relative;
    padding: 60px 30px;
    margin-bottom: 50px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    text-align: center;
}

.footer-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #1a0000, var(--primary-black), #1a0000);
    border: 1px solid var(--border-red);
    border-radius: var(--border-radius-lg);
    z-index: 0;
}

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

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

.cta-camera-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(198, 40, 40, 0.3), rgba(255, 215, 0, 0.1));
    border-radius: 50%;
    border: 2px solid var(--primary-red);
    animation: dealerPulse 3s infinite;
}

.cta-camera-icon i {
    font-size: 28px;
    color: var(--primary-gold);
}

.footer-cta-inner h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.footer-cta-inner > p {
    max-width: 600px;
    margin: 0 auto 25px;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

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

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

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

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

/* === News Section === */
.home-news-section {
    margin-bottom: 50px;
}

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

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

.article-card {
    display: block;
    background: linear-gradient(145deg, var(--dark-bg-2), var(--dark-bg-3));
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition);
    color: var(--text-light);
}

.article-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
    color: var(--text-light);
}

.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.05);
}

.article-card-title {
    padding: 15px 15px 8px;
}

.article-card-title span {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-white);
    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: var(--text-dim);
    margin-bottom: 8px;
}

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

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

.view-more-btn {
    display: inline-block;
    padding: 12px 35px;
    border: 2px solid var(--primary-red);
    border-radius: 50px;
    color: var(--primary-red-light);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    text-align: center;
}

.view-more-btn:hover {
    background: var(--primary-red);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
}

.view-more-btn i {
    margin-left: 8px;
}

.gold-view-more {
    display: block;
    max-width: 200px;
    margin: 0 auto;
}

/* === Archive / Blog List === */
.archive-section {
    margin-bottom: 40px;
}

.archive-title {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.archive-title i {
    margin-right: 10px;
}

.category-description {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 14px;
}

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

/* === Pagination === */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

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

.pagination-wrapper .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: var(--dark-bg-2);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--text-light);
    font-size: 14px;
    transition: var(--transition);
}

.pagination-wrapper .page-numbers:hover,
.pagination-wrapper .page-numbers.current {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: white;
}

/* === Single Post === */
.single-post {
    background: var(--dark-bg-2);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    margin-bottom: 40px;
}

.single-post-header {
    padding: 30px;
}

.single-post-title {
    font-family: var(--font-heading);
    font-size: 32px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.single-post-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--text-dim);
}

.single-post-meta span i {
    margin-right: 5px;
    color: var(--primary-red);
}

.single-post-thumb {
    margin: 0 30px 30px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.single-post-thumb img {
    width: 100%;
    height: auto;
}

.single-post-content {
    padding: 0 30px 30px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
}

.single-post-content h2,
.single-post-content h3,
.single-post-content h4 {
    margin: 25px 0 15px;
    color: var(--primary-gold);
}

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

.single-post-content img {
    border-radius: var(--border-radius);
    margin: 20px 0;
}

.single-post-content a {
    color: var(--primary-gold);
    border-bottom: 1px dotted var(--primary-gold);
}

.single-post-content a:hover {
    border-bottom-style: solid;
}

.single-post-content ul,
.single-post-content ol {
    margin: 15px 0;
    padding-left: 25px;
}

.single-post-content li {
    margin-bottom: 8px;
    list-style: disc;
}

.single-post-content blockquote {
    border-left: 4px solid var(--primary-red);
    padding: 15px 20px;
    margin: 20px 0;
    background: rgba(198, 40, 40, 0.05);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    font-style: italic;
    color: var(--text-muted);
}

.single-post-tags {
    padding: 0 30px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tags-label {
    font-size: 13px;
    color: var(--text-muted);
}

.single-post-tags a {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 12px;
    color: var(--primary-gold);
}

.single-post-tags a:hover {
    background: var(--primary-gold);
    color: var(--primary-black);
}

.single-post-navigation {
    display: flex;
    justify-content: space-between;
    padding: 20px 30px;
    border-top: 1px solid var(--border-color);
}

.nav-previous a,
.nav-next a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--dark-bg-3);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--text-light);
    font-size: 13px;
    transition: var(--transition);
}

.nav-previous a:hover,
.nav-next a:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

.single-post-cta {
    margin: 30px;
    padding: 30px;
    background: linear-gradient(145deg, rgba(198, 40, 40, 0.1), rgba(255, 215, 0, 0.05));
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    text-align: center;
}

.single-post-cta h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.single-post-cta p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* === Page Template === */
.single-page {
    background: var(--dark-bg-2);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    margin-bottom: 40px;
}

.single-page-header {
    padding: 30px;
}

.single-page-title {
    font-family: var(--font-heading);
    font-size: 32px;
}

.single-page-content {
    padding: 0 30px 30px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
}

/* === Search === */
.search-results-section .archive-title {
    font-size: 22px;
}

.search-results-count {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 14px;
}

.search-form-wrapper {
    margin-bottom: 30px;
}

.search-form {
    display: flex;
    gap: 0;
}

.search-field {
    flex: 1;
    padding: 12px 20px;
    background: var(--dark-bg-3);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    color: var(--text-white);
    font-size: 14px;
    outline: none;
    transition: var(--transition);
}

.search-field:focus {
    border-color: var(--primary-gold);
}

.search-field::placeholder {
    color: var(--text-dim);
}

.search-submit {
    padding: 12px 20px;
    background: var(--primary-red);
    border: 1px solid var(--primary-red);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    color: white;
    cursor: pointer;
    transition: var(--transition);
}

.search-submit:hover {
    background: var(--primary-red-dark);
}

/* === 404 === */
.error-404-section {
    padding: 60px 0;
}

.error-404-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

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

.error-404-icon i {
    font-size: 80px;
    color: var(--primary-red);
    opacity: 0.5;
}

.error-404-code {
    font-family: var(--font-heading);
    font-size: 100px;
    color: var(--primary-red);
    line-height: 1;
    margin-bottom: 10px;
}

.error-404-title {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 15px;
}

.error-404-description {
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.7;
}

.error-404-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.error-404-search {
    margin-bottom: 30px;
}

.error-404-search h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-white);
}

.error-404-search .search-form {
    max-width: 400px;
    margin: 0 auto;
}

.error-404-popular h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-white);
}

.error-404-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.error-404-links a {
    padding: 8px 20px;
    background: var(--dark-bg-3);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-light);
    font-size: 13px;
    transition: var(--transition);
}

.error-404-links a:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

.error-404-links a i {
    margin-right: 5px;
}

/* === No Results === */
.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
    font-size: 16px;
}

/* === Sidebar === */
.sidebar {
    width: 300px;
    flex-shrink: 0;
}

.sidebar-inner {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-widget {
    background: var(--dark-bg-2);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 25px;
}

.sidebar-title {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-color);
}

.sidebar-title i {
    margin-right: 8px;
    font-size: 16px;
}

/* Sidebar Search */
.sidebar-search-form {
    display: flex;
}

.sidebar-search-field {
    flex: 1;
    padding: 10px 15px;
    background: var(--dark-bg-3);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    color: var(--text-white);
    font-size: 13px;
    outline: none;
}

.sidebar-search-field:focus {
    border-color: var(--primary-gold);
}

.sidebar-search-field::placeholder {
    color: var(--text-dim);
}

.sidebar-search-btn {
    padding: 10px 15px;
    background: var(--primary-red);
    border: 1px solid var(--primary-red);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    color: white;
    cursor: pointer;
    transition: var(--transition);
}

.sidebar-search-btn:hover {
    background: var(--primary-red-dark);
}

/* Sidebar CTA */
.sidebar-cta-widget {
    background: linear-gradient(145deg, rgba(198, 40, 40, 0.1), rgba(255, 215, 0, 0.05));
    border-color: var(--border-red);
}

.sidebar-cta {
    text-align: center;
}

.sidebar-cta i {
    font-size: 36px;
    color: var(--primary-gold);
    margin-bottom: 10px;
    animation: dealerPulse 3s infinite;
}

.sidebar-cta h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--primary-gold);
    margin-bottom: 8px;
}

.sidebar-cta p {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 15px;
}

.sidebar-cta-btn {
    font-size: 13px;
    padding: 10px 25px;
}

/* Sidebar Categories */
.sidebar-categories li {
    border-bottom: 1px solid var(--border-color);
}

.sidebar-categories li:last-child {
    border-bottom: none;
}

.sidebar-categories a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    color: var(--text-light);
    font-size: 13px;
    transition: var(--transition);
}

.sidebar-categories a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

.cat-count {
    font-size: 12px;
    color: var(--text-dim);
}

/* Sidebar Recent Posts */
.sidebar-recent-posts {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-recent-item {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
    transition: var(--transition);
}

.sidebar-recent-item:last-child {
    border-bottom: none;
}

.sidebar-recent-item:hover {
    color: var(--primary-gold);
}

.sidebar-recent-thumb {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.sidebar-recent-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-recent-info {
    flex: 1;
    min-width: 0;
}

.sidebar-recent-title {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sidebar-recent-date {
    font-size: 11px;
    color: var(--text-dim);
}

/* Sidebar Games */
.sidebar-games-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-game-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: var(--dark-bg-3);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--text-light);
    font-size: 13px;
    transition: var(--transition);
}

.sidebar-game-item:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    transform: translateX(5px);
}

.sidebar-game-item i {
    color: var(--primary-red);
    font-size: 14px;
}

/* === Footer === */
.site-footer {
    background: linear-gradient(180deg, var(--dark-bg), var(--primary-black));
    border-top: 2px solid var(--border-color);
    padding: 50px 0 30px;
    margin-top: 40px;
}

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

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--primary-gold);
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

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

.footer-brand-logo img {
    height: 40px;
    width: auto;
}

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

.footer-18plus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--primary-red);
    border-radius: 50%;
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

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

.footer-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--dark-bg-3);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-muted);
    font-size: 14px;
    transition: var(--transition);
}

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

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

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

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

/* Footer License */
.footer-license-bar {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 25px;
}

.footer-license-bar h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--primary-gold);
    margin-bottom: 15px;
    border-bottom: none;
    padding-bottom: 0;
}

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

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

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

.license-item span {
    font-size: 12px;
    color: var(--text-muted);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
}

.footer-copyright {
    font-size: 13px;
    color: var(--text-dim);
}

/* === Utility Classes === */
.text-center { text-align: center; }
.text-gold { color: var(--primary-gold); }
.text-red { color: var(--primary-red); }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
