/* ============================================
   MACAUBET THEME - main.css (moban-71)
   Oriental Casino Theme - Red Gold Luxury
   Colors: #0D0D0D, #C41E3A, #FFD700
   ============================================ */

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

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

body {
    font-family: 'Nunito Sans', sans-serif;
    background: #0D0D0D;
    color: #F0E6D3;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Noto Serif', serif;
    font-weight: 600;
    line-height: 1.3;
}

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

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

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

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

.gold-text {
    color: #FFD700;
}

/* === KEYFRAME ANIMATIONS === */
@keyframes lanternGlow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(196, 30, 58, 0.4), 0 0 30px rgba(255, 215, 0, 0.2);
        filter: brightness(1);
    }
    50% {
        box-shadow: 0 0 25px rgba(196, 30, 58, 0.7), 0 0 50px rgba(255, 215, 0, 0.4);
        filter: brightness(1.2);
    }
}

@keyframes fanUnfurl {
    0% {
        transform: rotate(-90deg) scale(0.5);
        opacity: 0;
    }
    50% {
        transform: rotate(-45deg) scale(0.8);
        opacity: 0.7;
    }
    100% {
        transform: rotate(0deg) scale(1);
        opacity: 1;
    }
}

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

@keyframes fireworkBurst {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    50% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes lanternSwing {
    0%, 100% { transform: rotate(-3deg); }
    50% { transform: rotate(3deg); }
}

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

@keyframes floatUp {
    0% { transform: translateY(20px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes pulseRed {
    0%, 100% { box-shadow: 0 0 5px rgba(196, 30, 58, 0.3); }
    50% { box-shadow: 0 0 20px rgba(196, 30, 58, 0.6), 0 0 40px rgba(196, 30, 58, 0.3); }
}

@keyframes slideInLeft {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
    from { transform: translateX(50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* === HEADER === */
.site-header {
    background: linear-gradient(180deg, #1a0508 0%, #0D0D0D 100%);
    border-bottom: 2px solid #C41E3A;
    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: 'Noto Serif', serif;
    color: #FFD700;
    font-size: 14px;
    letter-spacing: 1px;
}

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

.btn-login {
    padding: 8px 20px;
    border: 1px solid #FFD700;
    color: #FFD700;
    border-radius: 4px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s;
}

.btn-login:hover {
    background: #FFD700;
    color: #0D0D0D;
}

.btn-register {
    padding: 8px 20px;
    background: linear-gradient(135deg, #C41E3A, #e63950);
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
    font-size: 13px;
    border: none;
    transition: all 0.3s;
}

.btn-register:hover {
    background: linear-gradient(135deg, #e63950, #C41E3A);
    box-shadow: 0 0 15px rgba(196, 30, 58, 0.5);
    color: #fff;
}

.btn-demo {
    padding: 8px 20px;
    background: linear-gradient(135deg, #FFD700, #ffaa00);
    color: #0D0D0D;
    border-radius: 4px;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.3s;
}

.btn-demo:hover {
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    color: #0D0D0D;
}

/* === NAVIGATION === */
.main-navigation {
    background: linear-gradient(90deg, #1a0508, #2d0a10, #1a0508);
    border-top: 1px solid rgba(196, 30, 58, 0.3);
    border-bottom: 1px solid rgba(196, 30, 58, 0.3);
}

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

.nav-item {
    position: relative;
}

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

.nav-link:hover {
    color: #FFD700;
    background: rgba(196, 30, 58, 0.2);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.nav-link i {
    margin-right: 5px;
    color: #C41E3A;
}

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

/* === NOTIFICATION BAR === */
.notification-bar {
    background: linear-gradient(90deg, #C41E3A, #8b0000, #C41E3A);
    overflow: hidden;
    padding: 8px 0;
}

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

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

/* === ANNOUNCEMENT MODAL === */
.announcement-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    justify-content: center;
    align-items: 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(135deg, #1a0508, #0D0D0D);
    border: 2px solid #C41E3A;
    border-radius: 12px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 0 30px rgba(196, 30, 58, 0.4), 0 0 60px rgba(255, 215, 0, 0.1);
}

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

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

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

.announcement-header-icon i {
    font-size: 48px;
    color: #C41E3A;
    animation: fanUnfurl 2s ease-out;
}

.announcement-title {
    text-align: center;
    font-size: 20px;
    margin-bottom: 20px;
    font-family: 'Noto Serif', serif;
}

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

.announcement-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(196, 30, 58, 0.1);
    border: 1px solid rgba(196, 30, 58, 0.2);
    border-radius: 8px;
    transition: all 0.3s;
    color: #F0E6D3;
}

.announcement-item:hover {
    background: rgba(196, 30, 58, 0.2);
    border-color: #FFD700;
    color: #FFD700;
}

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

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

.announcement-badge.new {
    background: #FFD700;
    color: #0D0D0D;
}

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

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

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

.announcement-cta {
    display: inline-block;
    padding: 12px 40px;
    background: linear-gradient(135deg, #C41E3A, #e63950);
    color: #fff;
    border-radius: 6px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
}

.announcement-cta:hover {
    box-shadow: 0 0 20px rgba(196, 30, 58, 0.5);
    color: #fff;
}

/* === HERO SECTION === */
.macaubet-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(ellipse at center, #2d0a10 0%, #1a0508 40%, #0D0D0D 80%);
    overflow: hidden;
    padding: 60px 20px;
    border-bottom: 3px solid #C41E3A;
}

/* Lanterns */
.lantern-field {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.lantern {
    position: absolute;
    width: 40px;
    height: 60px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    background: radial-gradient(ellipse at 30% 30%, #ff4444, #C41E3A, #8b0000);
    animation: lanternGlow 3s ease-in-out infinite, lanternSwing 4s ease-in-out infinite;
}

.lantern::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 8px;
    background: #FFD700;
    border-radius: 3px 3px 0 0;
}

.lantern::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 15px;
    background: linear-gradient(to bottom, #FFD700, transparent);
}

.lantern-1 { top: 5%; left: 5%; animation-delay: 0s; }
.lantern-2 { top: 8%; right: 8%; animation-delay: 0.5s; }
.lantern-3 { top: 3%; left: 25%; animation-delay: 1s; width: 30px; height: 45px; }
.lantern-4 { top: 10%; right: 25%; animation-delay: 1.5s; width: 35px; height: 50px; }
.lantern-5 { top: 2%; left: 50%; animation-delay: 2s; width: 25px; height: 38px; }
.lantern-6 { top: 6%; right: 45%; animation-delay: 2.5s; width: 28px; height: 42px; }

/* Fan Patterns */
.fan-pattern {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent, rgba(196, 30, 58, 0.1), transparent, rgba(255, 215, 0, 0.05), transparent);
    animation: fanUnfurl 3s ease-out forwards;
}

.fan-pattern-left {
    bottom: 10%;
    left: -50px;
    transform-origin: bottom right;
}

.fan-pattern-right {
    bottom: 10%;
    right: -50px;
    transform-origin: bottom left;
    animation-delay: 0.5s;
}

/* Fireworks */
.firework {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #FFD700;
    animation: fireworkBurst 2s ease-out infinite;
}

.firework::before, .firework::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
}

.firework::before {
    background: #C41E3A;
    top: -20px;
    left: -10px;
    animation: fireworkBurst 2s ease-out infinite 0.3s;
}

.firework::after {
    background: #FFD700;
    top: -15px;
    right: -15px;
    animation: fireworkBurst 2s ease-out infinite 0.6s;
}

.firework-1 { top: 15%; left: 15%; animation-delay: 0s; }
.firework-2 { top: 20%; right: 20%; animation-delay: 1s; }
.firework-3 { top: 10%; left: 60%; animation-delay: 2s; }

/* Dragon Decorations */
.dragon-decoration {
    position: absolute;
    width: 100px;
    height: 200px;
    opacity: 0.15;
    animation: dragonDance 6s ease-in-out infinite;
}

.dragon-left {
    left: 2%;
    top: 30%;
    background: linear-gradient(135deg, transparent 40%, #C41E3A 50%, transparent 60%);
    border-radius: 0 50% 50% 0;
}

.dragon-right {
    right: 2%;
    top: 30%;
    background: linear-gradient(225deg, transparent 40%, #C41E3A 50%, transparent 60%);
    border-radius: 50% 0 0 50%;
    animation-delay: 3s;
}

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

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

.hero-brand {
    display: block;
    font-size: 56px;
    font-weight: 700;
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5), 2px 2px 4px rgba(0,0,0,0.8);
    letter-spacing: 8px;
    background: linear-gradient(90deg, #FFD700, #fff5cc, #FFD700);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 4s linear infinite;
}

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

.hero-tagline {
    display: block;
    font-size: 22px;
    color: #F0E6D3;
    letter-spacing: 4px;
    font-weight: 400;
}

.hero-description {
    font-size: 16px;
    color: rgba(240, 230, 211, 0.85);
    max-width: 650px;
    margin: 0 auto 25px;
    line-height: 1.8;
}

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

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

.hero-stat-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #FFD700;
    font-family: 'Noto Serif', serif;
}

.hero-stat-label {
    font-size: 12px;
    color: rgba(240, 230, 211, 0.7);
    text-transform: uppercase;
}

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

.btn-gold-primary {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(135deg, #FFD700, #ffaa00);
    color: #0D0D0D;
    font-weight: 700;
    font-size: 16px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-gold-primary:hover {
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
    color: #0D0D0D;
}

.btn-outline-gold {
    display: inline-block;
    padding: 14px 40px;
    border: 2px solid #FFD700;
    color: #FFD700;
    font-weight: 700;
    font-size: 16px;
    border-radius: 6px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-outline-gold:hover {
    background: #FFD700;
    color: #0D0D0D;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.3);
}

/* === SECTION TITLES === */
.section-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

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

.section-subtitle {
    text-align: center;
    color: rgba(240, 230, 211, 0.7);
    font-size: 15px;
    margin-bottom: 40px;
}

/* === STAR GAMES SECTION === */
.star-games {
    padding: 60px 0;
    background: linear-gradient(180deg, #0D0D0D 0%, #1a0508 50%, #0D0D0D 100%);
}

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

.star-game-card {
    position: relative;
    background: linear-gradient(135deg, #1a0508, #0D0D0D);
    border: 1px solid rgba(196, 30, 58, 0.3);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.4s;
    overflow: hidden;
    display: block;
    color: #F0E6D3;
}

.star-game-card:hover {
    border-color: #FFD700;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.3);
    color: #FFD700;
}

.star-game-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(196, 30, 58, 0.05) 0%, transparent 70%);
    transition: all 0.4s;
}

.star-game-card:hover .star-game-glow {
    background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
}

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

.star-game-icon i {
    font-size: 40px;
    color: #C41E3A;
    transition: all 0.3s;
}

.star-game-card:hover .star-game-icon i {
    color: #FFD700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.star-game-rating {
    margin-bottom: 10px;
}

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

.star-game-card h3 {
    font-size: 18px;
    color: #FFD700;
    margin-bottom: 8px;
}

.star-game-card p {
    font-size: 13px;
    color: rgba(240, 230, 211, 0.7);
    margin-bottom: 12px;
    line-height: 1.6;
}

.star-game-players {
    font-size: 12px;
    color: rgba(240, 230, 211, 0.5);
}

.star-game-players i {
    color: #C41E3A;
    margin-right: 4px;
}

/* === GAME GRID SECTION (3x4) === */
.game-grid-section {
    padding: 60px 0;
    background: #0D0D0D;
}

.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;
    padding: 20px 10px;
    background: linear-gradient(135deg, #1a0508, #0D0D0D);
    border: 1px solid rgba(196, 30, 58, 0.2);
    border-radius: 10px;
    transition: all 0.3s;
    color: #F0E6D3;
    text-align: center;
}

.game-grid-node:hover {
    border-color: #FFD700;
    background: linear-gradient(135deg, #2d0a10, #1a0508);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(196, 30, 58, 0.2);
    color: #FFD700;
}

.node-lantern {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: radial-gradient(circle, #C41E3A, #8b0000);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    animation: lanternGlow 3s ease-in-out infinite;
}

.node-lantern i {
    color: #FFD700;
    font-size: 20px;
}

.node-label {
    font-size: 13px;
    font-weight: 600;
}

/* === ORIENTAL FEATURES === */
.oriental-features {
    padding: 60px 0;
    background: linear-gradient(180deg, #0D0D0D, #1a0508, #0D0D0D);
}

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

.oriental-feature-card {
    background: linear-gradient(135deg, #1a0508, #0D0D0D);
    border: 1px solid rgba(196, 30, 58, 0.2);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s;
}

.oriental-feature-card:hover {
    border-color: #FFD700;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(196, 30, 58, 0.2);
}

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

.fan-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #C41E3A, #FFD700, #C41E3A, #FFD700, #C41E3A);
    position: relative;
    animation: fanUnfurl 2s ease-out forwards;
}

.fan-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #0D0D0D;
    border: 2px solid #FFD700;
}

.oriental-feature-card h3 {
    font-size: 16px;
    color: #FFD700;
    margin-bottom: 10px;
}

.oriental-feature-card p {
    font-size: 13px;
    color: rgba(240, 230, 211, 0.7);
    line-height: 1.7;
}

/* === ORIENTAL STATS === */
.oriental-stats {
    position: relative;
    padding: 60px 0;
    background: #0D0D0D;
    overflow: hidden;
}

.oriental-stats-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.lantern-glow-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196, 30, 58, 0.08) 0%, transparent 70%);
}

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

.oriental-stat-card {
    background: linear-gradient(135deg, #1a0508, #0D0D0D);
    border: 1px solid rgba(196, 30, 58, 0.3);
    border-radius: 12px;
    padding: 30px 15px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.oriental-stat-card:hover {
    border-color: #FFD700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.15);
}

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

.stat-lantern-decoration i {
    font-size: 24px;
    color: #C41E3A;
    animation: lanternGlow 2s ease-in-out infinite;
}

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

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #FFD700;
    font-family: 'Noto Serif', serif;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 13px;
    color: rgba(240, 230, 211, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* === ORIENTAL PROMOS === */
.oriental-promos {
    padding: 60px 0;
    background: linear-gradient(180deg, #0D0D0D, #1a0508, #0D0D0D);
}

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

.oriental-promo-card {
    position: relative;
    background: linear-gradient(135deg, #1a0508, #0D0D0D);
    border: 1px solid rgba(196, 30, 58, 0.3);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s;
}

.oriental-promo-card:hover {
    border-color: #FFD700;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.3);
}

.promo-lantern-bg {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196, 30, 58, 0.1) 0%, transparent 70%);
}

.oriental-promo-inner {
    padding: 25px;
    position: relative;
    z-index: 2;
}

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

.promo-icon i {
    font-size: 36px;
    color: #C41E3A;
}

.oriental-promo-inner h3 {
    font-size: 16px;
    color: #FFD700;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.oriental-promo-inner p {
    font-size: 13px;
    color: rgba(240, 230, 211, 0.7);
    line-height: 1.7;
    margin-bottom: 15px;
}

.promo-timer {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 12px;
    color: rgba(240, 230, 211, 0.6);
}

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

.promo-badge.hot { background: #C41E3A; color: #fff; }
.promo-badge.new { background: #FFD700; color: #0D0D0D; }
.promo-badge.vip { background: linear-gradient(135deg, #FFD700, #C41E3A); color: #fff; }

.btn-promo {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, #C41E3A, #e63950);
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-promo:hover {
    box-shadow: 0 0 15px rgba(196, 30, 58, 0.5);
    color: #fff;
}

/* === FOOTER CTA === */
.footer-cta-section {
    position: relative;
    padding: 60px 0;
    text-align: center;
    background: radial-gradient(ellipse at center, #2d0a10, #0D0D0D);
    overflow: hidden;
}

.footer-cta-lanternfield {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.lantern-glow-cta {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
}

.footer-cta-inner {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.cta-lantern-outer {
    width: 60px;
    height: 80px;
    margin: 0 auto;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    background: radial-gradient(ellipse at 30% 30%, #ff4444, #C41E3A, #8b0000);
    animation: lanternGlow 3s ease-in-out infinite;
    position: relative;
}

.cta-lantern-inner {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 10px;
    background: #FFD700;
    border-radius: 3px 3px 0 0;
}

.footer-cta-inner h2 {
    font-size: 32px;
    color: #FFD700;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.footer-cta-inner p {
    font-size: 16px;
    color: rgba(240, 230, 211, 0.8);
    margin-bottom: 20px;
    line-height: 1.7;
}

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

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

.cta-feature i {
    color: #FFD700;
    margin-right: 5px;
}

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

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

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

.article-card {
    background: linear-gradient(135deg, #1a0508, #0D0D0D);
    border: 1px solid rgba(196, 30, 58, 0.2);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
    display: block;
    color: #F0E6D3;
}

.article-card:hover {
    border-color: #FFD700;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(196, 30, 58, 0.2);
    color: #FFD700;
}

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

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

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

.article-card-title {
    padding: 15px 15px 8px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Noto Serif', serif;
    line-height: 1.4;
}

.article-card-meta {
    padding: 0 15px;
    font-size: 12px;
    color: rgba(240, 230, 211, 0.5);
    margin-bottom: 8px;
}

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

.article-card-excerpt {
    padding: 0 15px 15px;
    font-size: 13px;
    color: rgba(240, 230, 211, 0.6);
    line-height: 1.6;
}

.view-more-btn {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid #FFD700;
    color: #FFD700;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
    text-align: center;
}

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

.view-more-btn:hover {
    background: #FFD700;
    color: #0D0D0D;
}

/* === FOOTER === */
.site-footer {
    background: linear-gradient(180deg, #0D0D0D, #1a0508);
    border-top: 2px solid #C41E3A;
    padding: 50px 0 20px;
}

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

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

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

.footer-brand-text {
    font-size: 13px;
    color: rgba(240, 230, 211, 0.6);
    line-height: 1.7;
    margin-bottom: 15px;
}

.footer-18plus {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border: 2px solid #C41E3A;
    border-radius: 50%;
    font-weight: 700;
    color: #C41E3A;
    font-size: 16px;
    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;
    border: 1px solid rgba(196, 30, 58, 0.3);
    border-radius: 50%;
    color: #F0E6D3;
    transition: all 0.3s;
}

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

.footer-col h4 {
    font-size: 15px;
    color: #FFD700;
    margin-bottom: 15px;
    font-family: 'Noto Serif', serif;
    letter-spacing: 1px;
}

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

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

.footer-col ul li a {
    font-size: 13px;
    color: rgba(240, 230, 211, 0.6);
    transition: all 0.3s;
}

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

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

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

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

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

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

.license-item span {
    font-size: 11px;
    color: rgba(240, 230, 211, 0.6);
}

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

.footer-copyright {
    font-size: 13px;
    color: rgba(240, 230, 211, 0.5);
}

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

.sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #C41E3A, #8b0000);
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s;
    position: relative;
}

.sidebar-btn:hover {
    background: linear-gradient(135deg, #FFD700, #ffaa00);
    color: #0D0D0D;
    transform: scale(1.1);
}

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

.sidebar-label {
    display: none;
    position: absolute;
    right: 55px;
    background: #0D0D0D;
    color: #FFD700;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    border: 1px solid #C41E3A;
}

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

/* === BREADCRUMB === */
.breadcrumb {
    padding: 15px 0;
    font-size: 13px;
    color: rgba(240, 230, 211, 0.5);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: #FFD700;
}

.breadcrumb span {
    color: rgba(240, 230, 211, 0.5);
}

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

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

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

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

.article-card-more:hover {
    background: #FFD700;
    color: #0D0D0D;
}

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

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

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(196, 30, 58, 0.3);
    border-radius: 4px;
    color: #F0E6D3;
    font-size: 14px;
    transition: all 0.3s;
}

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

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

.category-title {
    font-size: 26px;
    letter-spacing: 2px;
}

.category-title i {
    color: #C41E3A;
    margin-right: 8px;
}

.category-desc {
    color: rgba(240, 230, 211, 0.6);
    font-size: 14px;
    margin-top: 10px;
}

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

.provider-tab {
    padding: 8px 18px;
    background: rgba(196, 30, 58, 0.1);
    border: 1px solid rgba(196, 30, 58, 0.2);
    border-radius: 20px;
    color: #F0E6D3;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
}

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

/* === SINGLE ARTICLE === */
.single-article {
    background: linear-gradient(135deg, #1a0508, #0D0D0D);
    border: 1px solid rgba(196, 30, 58, 0.2);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
}

.article-title {
    font-size: 28px;
    color: #FFD700;
    margin-bottom: 15px;
}

.article-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 13px;
    color: rgba(240, 230, 211, 0.5);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(196, 30, 58, 0.2);
}

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

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

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

.article-content {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(240, 230, 211, 0.85);
}

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

.article-content h2, .article-content h3 {
    color: #FFD700;
    margin: 20px 0 10px;
}

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

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

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

.article-tags span {
    padding: 4px 12px;
    background: rgba(196, 30, 58, 0.15);
    border-radius: 15px;
    font-size: 12px;
    color: #F0E6D3;
}

.article-nav {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    margin-top: 15px;
    border-top: 1px solid rgba(196, 30, 58, 0.2);
}

.article-nav a {
    color: #FFD700;
    font-size: 14px;
}

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

.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 {
    display: block;
    color: #F0E6D3;
    transition: all 0.3s;
}

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

.related-item-thumb {
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 8px;
}

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

.related-item-title {
    font-size: 13px;
    font-family: 'Noto Serif', serif;
    line-height: 1.4;
}

/* === PAGE ARTICLE === */
.page-article {
    background: linear-gradient(135deg, #1a0508, #0D0D0D);
    border: 1px solid rgba(196, 30, 58, 0.2);
    border-radius: 12px;
    padding: 30px;
}

.page-title {
    font-size: 28px;
    color: #FFD700;
    margin-bottom: 20px;
}

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

.page-content {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(240, 230, 211, 0.85);
}

.page-content p { margin-bottom: 15px; }
.page-content h2, .page-content h3 { color: #FFD700; margin: 20px 0 10px; }

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

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

.error-lantern-outer {
    width: 80px;
    height: 100px;
    margin: 0 auto;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    background: radial-gradient(ellipse at 30% 30%, #ff4444, #C41E3A, #8b0000);
    animation: lanternGlow 3s ease-in-out infinite;
    position: relative;
}

.error-lantern-inner {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 12px;
    background: #FFD700;
    border-radius: 3px 3px 0 0;
}

.error-code {
    font-size: 80px;
    color: #C41E3A;
    text-shadow: 0 0 20px rgba(196, 30, 58, 0.5);
}

.error-title {
    font-size: 24px;
    color: #FFD700;
    margin-bottom: 15px;
}

.error-desc {
    font-size: 15px;
    color: rgba(240, 230, 211, 0.7);
    max-width: 500px;
    margin: 0 auto 25px;
    line-height: 1.7;
}

.no-posts {
    text-align: center;
    padding: 60px 20px;
    color: rgba(240, 230, 211, 0.6);
    font-size: 16px;
}

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