/* ============================================
   ROULETTE THEME - main.css (moban-105)
   Casino Roulette Theme
   Colors: Red #C62828, Black #0D0D0D, Green #1B5E20, Gold #FFD700
   ============================================ */

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Righteous', cursive;
    font-weight: 400;
    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;
    background: linear-gradient(90deg, #FFD700, #FFA500, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === KEYFRAME ANIMATIONS === */
@keyframes wheelSpin {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(90deg); }
    50% { transform: rotate(180deg); }
    75% { transform: rotate(270deg); }
    100% { transform: rotate(360deg); }
}

@keyframes ballBounce {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    }
    15% {
        transform: translate(15px, -20px) scale(1.1);
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    }
    30% {
        transform: translate(-10px, -8px) scale(0.95);
        box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    }
    45% {
        transform: translate(8px, -15px) scale(1.05);
        box-shadow: 0 0 18px rgba(255, 215, 0, 0.7);
    }
    60% {
        transform: translate(-5px, -5px) scale(0.98);
        box-shadow: 0 0 12px rgba(255, 215, 0, 0.5);
    }
    80% {
        transform: translate(3px, -2px) scale(1.02);
        box-shadow: 0 0 14px rgba(255, 215, 0, 0.6);
    }
}

@keyframes numberHighlight {
    0%, 100% {
        background-color: transparent;
        color: #E8E8F0;
        transform: scale(1);
    }
    20% {
        background-color: rgba(198, 40, 40, 0.3);
        color: #FFD700;
        transform: scale(1.05);
    }
    50% {
        background-color: rgba(198, 40, 40, 0.6);
        color: #fff;
        transform: scale(1.1);
        box-shadow: 0 0 20px rgba(198, 40, 40, 0.5);
    }
    80% {
        background-color: rgba(198, 40, 40, 0.3);
        color: #FFD700;
        transform: scale(1.05);
    }
}

@keyframes tableGlow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(198, 40, 40, 0.2), 0 0 30px rgba(27, 94, 32, 0.1);
        border-color: rgba(198, 40, 40, 0.3);
    }
    33% {
        box-shadow: 0 0 25px rgba(198, 40, 40, 0.5), 0 0 50px rgba(27, 94, 32, 0.2);
        border-color: rgba(255, 215, 0, 0.5);
    }
    66% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.3), 0 0 40px rgba(198, 40, 40, 0.2);
        border-color: rgba(27, 94, 32, 0.5);
    }
}

@keyframes pulseRed {
    0%, 100% {
        box-shadow: 0 0 20px rgba(198, 40, 40, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(198, 40, 40, 0.6), 0 0 60px rgba(198, 40, 40, 0.2);
    }
}

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

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

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

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

@keyframes counterGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 0 0 40px rgba(198, 40, 40, 0.3);
    }
}

@keyframes glowRingPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.6;
    }
}

/* === HEADER === */
.site-header {
    background: linear-gradient(180deg, #1a0000 0%, #0D0D0D 100%);
    border-bottom: 2px solid rgba(198, 40, 40, 0.4);
    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;
    filter: drop-shadow(0 0 8px rgba(198, 40, 40, 0.5));
    transition: filter 0.3s ease;
}

.logo img:hover {
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.7));
}

.header-time {
    font-family: 'Righteous', cursive;
    font-size: 16px;
    color: #FFD700;
    letter-spacing: 2px;
}

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

.btn-login,
.btn-register,
.btn-demo {
    padding: 8px 20px;
    border-radius: 4px;
    font-family: 'Righteous', cursive;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-login {
    background: transparent;
    border: 1px solid #C62828;
    color: #C62828;
}

.btn-login:hover {
    background: #C62828;
    color: #fff;
    box-shadow: 0 0 15px rgba(198, 40, 40, 0.5);
}

.btn-register {
    background: linear-gradient(135deg, #C62828, #E53935);
    border: none;
    color: #fff;
}

.btn-register:hover {
    background: linear-gradient(135deg, #E53935, #C62828);
    box-shadow: 0 0 20px rgba(198, 40, 40, 0.6);
    color: #fff;
}

.btn-demo {
    background: transparent;
    border: 1px solid #FFD700;
    color: #FFD700;
}

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

/* === MAIN NAVIGATION === */
.main-navigation {
    background: linear-gradient(90deg, #1a0000, #0D0D0D, #1a0000);
    border-top: 1px solid rgba(198, 40, 40, 0.3);
    border-bottom: 1px solid rgba(198, 40, 40, 0.3);
}

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

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 12px 16px;
    color: #E8E8F0;
    font-family: 'Righteous', cursive;
    font-size: 13px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.nav-link:hover {
    color: #FFD700;
    background: rgba(198, 40, 40, 0.15);
    border-bottom-color: #C62828;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

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

.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, #C62828, #1B5E20, #C62828);
    overflow: hidden;
    padding: 8px 0;
}

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

/* === 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(135deg, #1a0000, #0D0D0D);
    border: 2px solid rgba(198, 40, 40, 0.5);
    border-radius: 12px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    animation: fadeInUp 0.5s ease;
    box-shadow: 0 0 40px rgba(198, 40, 40, 0.3);
}

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

.announcement-close:hover {
    color: #C62828;
}

.announcement-header-icon {
    text-align: center;
    font-size: 40px;
    color: #C62828;
    margin-bottom: 10px;
    animation: spinSlow 4s linear infinite;
}

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

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

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

.announcement-item:hover {
    background: rgba(198, 40, 40, 0.25);
    border-color: #C62828;
    color: #fff;
}

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

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

.announcement-badge.new {
    background: #1B5E20;
    color: #fff;
}

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

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

.announcement-item i {
    color: #FFD700;
    flex-shrink: 0;
}

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

.announcement-cta {
    display: inline-block;
    padding: 12px 40px;
    background: linear-gradient(135deg, #C62828, #E53935);
    color: #fff;
    font-family: 'Righteous', cursive;
    font-size: 16px;
    letter-spacing: 2px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.announcement-cta:hover {
    background: linear-gradient(135deg, #E53935, #C62828);
    box-shadow: 0 0 20px rgba(198, 40, 40, 0.6);
    color: #fff;
}

/* === HERO SECTION === */
.roulette-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: radial-gradient(ellipse at center, #1a0000 0%, #0D0D0D 70%);
    overflow: hidden;
    margin-bottom: 40px;
    border-bottom: 3px solid rgba(198, 40, 40, 0.4);
}

.wheel-glow-rings {
    position: absolute;
    top: 50%;
    right: 80px;
    transform: translate(50%, -50%);
}

.glow-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(198, 40, 40, 0.2);
    animation: glowRingPulse 3s ease-in-out infinite;
}

.glow-ring.ring-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
    border-color: rgba(198, 40, 40, 0.3);
}

.glow-ring.ring-2 {
    width: 220px;
    height: 220px;
    top: -110px;
    left: -110px;
    border-color: rgba(255, 215, 0, 0.2);
    animation-delay: 0.5s;
}

.glow-ring.ring-3 {
    width: 140px;
    height: 140px;
    top: -70px;
    left: -70px;
    border-color: rgba(27, 94, 32, 0.3);
    animation-delay: 1s;
}

.spinning-wheel-deco {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 200px;
    animation: wheelSpin 12s linear infinite;
    opacity: 0.7;
}

.wheel-segment {
    position: absolute;
    width: 0;
    height: 0;
}

.seg-red {
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 100px solid rgba(198, 40, 40, 0.4);
    top: 0;
    left: 50px;
}

.seg-black {
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-top: 100px solid rgba(13, 13, 13, 0.6);
    bottom: 0;
    left: 50px;
}

.seg-green {
    border-top: 50px solid transparent;
    border-bottom: 50px solid transparent;
    border-right: 100px solid rgba(27, 94, 32, 0.3);
    top: 50px;
    left: 0;
}

.wheel-center-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, #FFD700, #C62828);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.wheel-ball {
    position: absolute;
    top: 10px;
    right: 20px;
    width: 14px;
    height: 14px;
    background: radial-gradient(circle, #fff, #ccc);
    border-radius: 50%;
    animation: ballBounce 2s ease-in-out infinite;
}

.hero-inner-content {
    position: relative;
    z-index: 2;
    padding: 60px 20px;
    max-width: 700px;
}

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

.hero-brand {
    display: block;
    font-size: 60px;
    color: #C62828;
    letter-spacing: 8px;
    text-shadow: 0 0 30px rgba(198, 40, 40, 0.5);
}

.hero-divider-line {
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #C62828, #FFD700, #1B5E20);
    margin: 10px 0;
    border-radius: 2px;
}

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

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

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

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

.hero-stat-number {
    display: block;
    font-family: 'Righteous', cursive;
    font-size: 28px;
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

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

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

.btn-gold-primary {
    display: inline-block;
    padding: 14px 35px;
    background: linear-gradient(135deg, #C62828, #E53935);
    color: #fff;
    font-family: 'Righteous', cursive;
    font-size: 15px;
    letter-spacing: 2px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(198, 40, 40, 0.4);
}

.btn-gold-primary:hover {
    background: linear-gradient(135deg, #E53935, #C62828);
    box-shadow: 0 6px 25px rgba(198, 40, 40, 0.6);
    transform: translateY(-2px);
    color: #fff;
}

.btn-outline-gold {
    display: inline-block;
    padding: 14px 35px;
    border: 2px solid #FFD700;
    color: #FFD700;
    font-family: 'Righteous', cursive;
    font-size: 15px;
    letter-spacing: 2px;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

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

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

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

/* === NUMBER GRID GAMES SECTION === */
.number-grid-games {
    padding: 40px 0;
}

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

.number-game-card {
    position: relative;
    background: linear-gradient(135deg, #1a0000, #151515);
    border: 1px solid rgba(198, 40, 40, 0.3);
    border-radius: 10px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
    color: #E8E8F0;
    animation: tableGlow 6s ease-in-out infinite;
}

.number-game-card:hover {
    transform: translateY(-8px);
    border-color: #C62828;
    box-shadow: 0 10px 30px rgba(198, 40, 40, 0.3);
}

.number-game-card.card-red {
    border-top: 3px solid #C62828;
}

.number-game-card.card-black {
    border-top: 3px solid #333;
}

.number-game-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    background: #C62828;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Righteous', cursive;
    font-size: 14px;
    box-shadow: 0 0 10px rgba(198, 40, 40, 0.5);
    animation: numberHighlight 4s ease-in-out infinite;
}

.card-black .number-game-badge {
    background: #222;
    border: 1px solid #C62828;
}

.number-game-icon {
    font-size: 40px;
    color: #C62828;
    margin-bottom: 12px;
}

.card-black .number-game-icon {
    color: #FFD700;
}

.number-game-rating {
    margin-bottom: 10px;
    color: #FFD700;
    font-size: 12px;
}

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

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

.number-game-players {
    font-size: 12px;
    color: #1B5E20;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* === BETTING TABLE SECTION === */
.betting-table-section {
    padding: 40px 0;
}

.betting-table-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 900px;
    margin: 0 auto;
}

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

.betting-cell {
    position: relative;
    padding: 20px 15px;
    border-radius: 6px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    color: #E8E8F0;
}

.betting-cell:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.cell-red {
    background: linear-gradient(135deg, #C62828, #8B0000);
}

.cell-black {
    background: linear-gradient(135deg, #222, #111);
}

.cell-green {
    background: linear-gradient(135deg, #1B5E20, #0a3010);
}

.cell-number {
    font-family: 'Righteous', cursive;
    font-size: 24px;
    color: #FFD700;
    margin-bottom: 5px;
}

.cell-label {
    font-size: 12px;
    color: #E8E8F0;
    letter-spacing: 1px;
}

/* === FEATURES SECTION === */
.roulette-features {
    padding: 40px 0;
}

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

.roulette-feature-card {
    background: linear-gradient(135deg, #151515, #1a0000);
    border: 1px solid rgba(198, 40, 40, 0.2);
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
}

.roulette-feature-card:hover {
    border-color: #C62828;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(198, 40, 40, 0.2);
}

.roulette-feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: rgba(198, 40, 40, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #C62828;
    transition: all 0.3s ease;
}

.roulette-feature-card:hover .roulette-feature-icon {
    background: #C62828;
    color: #fff;
    box-shadow: 0 0 20px rgba(198, 40, 40, 0.5);
}

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

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

/* === STATS SECTION === */
.roulette-stats {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
}

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

.red-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(198, 40, 40, 0.1) 0%, transparent 70%);
}

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

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

.roulette-stat-card {
    background: rgba(13, 13, 13, 0.8);
    border: 1px solid rgba(198, 40, 40, 0.3);
    border-radius: 10px;
    padding: 30px 15px;
    text-align: center;
    transition: all 0.3s ease;
    animation: tableGlow 5s ease-in-out infinite;
}

.roulette-stat-card:hover {
    border-color: #FFD700;
    transform: translateY(-5px);
}

.stat-deco {
    color: rgba(198, 40, 40, 0.3);
    font-size: 20px;
    margin-bottom: 10px;
}

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

.stat-number {
    font-family: 'Righteous', cursive;
    font-size: 36px;
    color: #FFD700;
    animation: counterGlow 3s ease-in-out infinite;
}

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

/* === PROMOTIONS SECTION === */
.roulette-promos {
    padding: 40px 0;
}

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

.roulette-promo-card {
    position: relative;
    background: linear-gradient(135deg, #1a0000, #151515);
    border: 1px solid rgba(198, 40, 40, 0.3);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.roulette-promo-card:hover {
    transform: translateY(-5px);
    border-color: #C62828;
    box-shadow: 0 10px 30px rgba(198, 40, 40, 0.3);
}

.promo-bg-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(198, 40, 40, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.roulette-promo-inner {
    position: relative;
    padding: 30px 20px;
    text-align: center;
}

.promo-icon {
    font-size: 36px;
    color: #C62828;
    margin-bottom: 15px;
}

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

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

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

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

.promo-badge.hot {
    background: #C62828;
    color: #fff;
}

.promo-badge.new {
    background: #1B5E20;
    color: #fff;
}

.promo-badge.vip {
    background: #FFD700;
    color: #0D0D0D;
}

.btn-promo {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, #C62828, #E53935);
    color: #fff;
    font-family: 'Righteous', cursive;
    font-size: 13px;
    letter-spacing: 1px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-promo:hover {
    background: linear-gradient(135deg, #E53935, #C62828);
    box-shadow: 0 0 15px rgba(198, 40, 40, 0.5);
    color: #fff;
}

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

.footer-cta-roulette-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a0000, #0D0D0D, #0a1a0a);
    z-index: 0;
}

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

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

.cta-wheel-circle {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    border: 3px solid #C62828;
    border-radius: 50%;
    animation: wheelSpin 8s linear infinite;
    position: relative;
}

.cta-wheel-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: #FFD700;
    border-radius: 50%;
}

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

.footer-cta-inner p {
    font-size: 15px;
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.cta-feature {
    color: #E8E8F0;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-feature i {
    color: #C62828;
}

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

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

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

.article-card {
    background: linear-gradient(135deg, #151515, #1a0000);
    border: 1px solid rgba(198, 40, 40, 0.2);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: block;
    color: #E8E8F0;
}

.article-card:hover {
    transform: translateY(-5px);
    border-color: #C62828;
    box-shadow: 0 10px 25px rgba(198, 40, 40, 0.2);
    color: #E8E8F0;
}

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

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

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

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

.article-card-title span,
.article-card-title a {
    font-family: 'Righteous', cursive;
    font-size: 15px;
    color: #FFD700;
    line-height: 1.4;
    display: block;
}

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

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

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

.article-card-more {
    display: inline-block;
    padding: 8px 15px;
    color: #C62828;
    font-size: 13px;
    font-weight: 700;
    transition: color 0.3s;
}

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

.view-more-btn {
    display: block;
    text-align: center;
    padding: 12px 30px;
    font-family: 'Righteous', cursive;
    font-size: 14px;
    letter-spacing: 2px;
    border: 2px solid #C62828;
    border-radius: 6px;
    color: #C62828;
    max-width: 200px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.view-more-btn:hover {
    background: #C62828;
    color: #fff;
    box-shadow: 0 0 15px rgba(198, 40, 40, 0.5);
}

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

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

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

.sidebar-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: rgba(13, 13, 13, 0.9);
    border: 1px solid rgba(198, 40, 40, 0.3);
    border-radius: 6px;
    color: #FFD700;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.sidebar-btn:hover {
    background: #C62828;
    color: #fff;
    border-color: #C62828;
}

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

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

.sidebar-label {
    font-size: 11px;
    font-family: 'Righteous', cursive;
    letter-spacing: 1px;
}

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

.breadcrumb a {
    color: #C62828;
}

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

.breadcrumb span {
    color: #555;
}

/* === CATEGORY HEADER === */
.category-header {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(198, 40, 40, 0.3);
}

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

.category-desc {
    color: #999;
    font-size: 14px;
    margin-top: 8px;
}

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

/* === SINGLE ARTICLE === */
.single-article {
    background: linear-gradient(135deg, #151515, #1a0000);
    border: 1px solid rgba(198, 40, 40, 0.2);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
}

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

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

.article-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 13px;
    color: #777;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(198, 40, 40, 0.2);
}

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

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

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

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

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

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

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

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

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

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

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

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

/* === ARTICLE TAGS === */
.article-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(198, 40, 40, 0.2);
    font-size: 13px;
    color: #777;
}

.tag-link {
    padding: 4px 12px;
    background: rgba(198, 40, 40, 0.15);
    border: 1px solid rgba(198, 40, 40, 0.3);
    border-radius: 20px;
    font-size: 12px;
    color: #C62828;
    transition: all 0.3s ease;
}

.tag-link:hover {
    background: #C62828;
    color: #fff;
}

/* === ARTICLE SHARE === */
.article-share {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    font-size: 13px;
    color: #777;
}

.share-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    transition: all 0.3s ease;
}

.share-fb {
    background: rgba(24, 119, 242, 0.15);
    color: #1877F2;
}

.share-fb:hover {
    background: #1877F2;
    color: #fff;
}

.share-tw {
    background: rgba(29, 161, 242, 0.15);
    color: #1DA1F2;
}

.share-tw:hover {
    background: #1DA1F2;
    color: #fff;
}

.share-tg {
    background: rgba(0, 136, 204, 0.15);
    color: #0088cc;
}

.share-tg:hover {
    background: #0088cc;
    color: #fff;
}

/* === RELATED POSTS === */
.related-posts {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(198, 40, 40, 0.2);
}

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

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

.related-card {
    background: rgba(13, 13, 13, 0.6);
    border: 1px solid rgba(198, 40, 40, 0.15);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #E8E8F0;
}

.related-card:hover {
    border-color: #C62828;
    transform: translateY(-3px);
    color: #E8E8F0;
}

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

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

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

.related-card h4 {
    padding: 10px 12px 5px;
    font-size: 13px;
    color: #FFD700;
    line-height: 1.4;
}

.related-date {
    display: block;
    padding: 0 12px 10px;
    font-size: 11px;
    color: #777;
}

.related-date i {
    color: #C62828;
    margin-right: 4px;
}

/* === PAGINATION === */
.pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 30px;
}

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

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

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

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

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

.error-wheel-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    border: 4px solid #C62828;
    border-top-color: #FFD700;
    border-radius: 50%;
    animation: wheelSpin 3s linear infinite;
}

.error-code {
    font-size: 80px;
    color: #C62828;
    text-shadow: 0 0 30px rgba(198, 40, 40, 0.5);
}

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

.error-desc {
    color: #999;
    font-size: 15px;
    max-width: 500px;
    margin: 0 auto 25px;
    line-height: 1.8;
}

/* === FOOTER === */
.site-footer {
    background: linear-gradient(180deg, #0D0D0D 0%, #1a0000 50%, #0D0D0D 100%);
    border-top: 3px solid rgba(198, 40, 40, 0.4);
    padding: 50px 0 30px;
    margin-top: 40px;
}

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

.footer-brand-logo img {
    height: 45px;
    margin-bottom: 12px;
    filter: drop-shadow(0 0 8px rgba(198, 40, 40, 0.5));
}

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

.footer-18plus {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #C62828;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-family: 'Righteous', cursive;
    font-size: 16px;
    margin-bottom: 12px;
}

.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(198, 40, 40, 0.15);
    border: 1px solid rgba(198, 40, 40, 0.3);
    border-radius: 50%;
    color: #FFD700;
    font-size: 14px;
    transition: all 0.3s ease;
}

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

.footer-col h4 {
    font-size: 15px;
    color: #FFD700;
    margin-bottom: 15px;
    letter-spacing: 2px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(198, 40, 40, 0.3);
}

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

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

.footer-col ul li a {
    color: #999;
    font-size: 13px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-col ul li a::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 10px;
    color: #C62828;
}

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

/* === LICENSE BAR === */
.footer-license-bar {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(198, 40, 40, 0.2);
    border-bottom: 1px solid rgba(198, 40, 40, 0.2);
    margin-bottom: 20px;
}

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

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

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

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

.license-item span {
    font-size: 11px;
    letter-spacing: 1px;
}

/* === FOOTER BOTTOM === */
.footer-bottom {
    text-align: center;
    padding-top: 15px;
}

.footer-copyright {
    font-size: 13px;
    color: #777;
    letter-spacing: 1px;
}

/* === PAGE ARTICLE === */
.page-article {
    padding: 30px;
}

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

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