/* ============================================
   CAESAR88 THEME - main.css (moban-77)
   Roman Imperial Casino Theme
   Colors: #DAA520 (Gold), #FAFAFA (White), #6D4C41 (Brown), #1A1005 (BG)
   ============================================ */

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

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

body {
    font-family: 'Crimson Text', serif;
    background: #1A1005;
    color: #FAFAFA;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel Decorative', 'Caesar Dressing', serif;
    font-weight: 700;
    line-height: 1.3;
}

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

a:hover {
    color: #FAFAFA;
    text-shadow: 0 0 10px rgba(218, 165, 32, 0.5);
}

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

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

.gold-text {
    color: #DAA520;
}

/* === KEYFRAME ANIMATIONS === */
@keyframes columnRise {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }
    60% {
        transform: translateY(-5%);
        opacity: 1;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes laurelCrown {
    0% {
        transform: scale(0.8) rotate(-10deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.1) rotate(5deg);
        opacity: 1;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

@keyframes shieldFlash {
    0%, 100% {
        box-shadow: 0 0 5px rgba(218, 165, 32, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(218, 165, 32, 0.8), 0 0 40px rgba(218, 165, 32, 0.4);
    }
}

@keyframes emperorWalk {
    0% {
        transform: translateX(-10px);
        opacity: 0;
    }
    25% {
        transform: translateX(5px);
        opacity: 0.5;
    }
    50% {
        transform: translateX(-3px);
        opacity: 0.8;
    }
    75% {
        transform: translateX(2px);
        opacity: 0.9;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

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

@keyframes pulseGold {
    0%, 100% { box-shadow: 0 0 0 0 rgba(218, 165, 32, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(218, 165, 32, 0); }
}

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

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

/* === HEADER === */
.site-header {
    background: linear-gradient(180deg, #2A1A08 0%, #1A1005 100%);
    border-bottom: 2px solid rgba(218, 165, 32, 0.3);
    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: 'Cinzel Decorative', serif;
    color: #DAA520;
    font-size: 14px;
    letter-spacing: 1px;
}

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

.btn-login {
    padding: 8px 20px;
    border: 1px solid #DAA520;
    color: #DAA520;
    border-radius: 4px;
    font-family: 'Cinzel Decorative', serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: rgba(218, 165, 32, 0.1);
    color: #FAFAFA;
}

.btn-register {
    padding: 8px 20px;
    background: linear-gradient(135deg, #DAA520 0%, #B8860B 100%);
    color: #1A1005;
    border-radius: 4px;
    font-family: 'Cinzel Decorative', serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-register:hover {
    background: linear-gradient(135deg, #FFD700 0%, #DAA520 100%);
    color: #1A1005;
    text-shadow: none;
    transform: translateY(-1px);
}

.btn-demo {
    padding: 8px 20px;
    border: 1px solid #6D4C41;
    color: #FAFAFA;
    border-radius: 4px;
    font-family: 'Cinzel Decorative', serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-demo:hover {
    border-color: #DAA520;
    color: #DAA520;
}

/* === NAVIGATION === */
.main-navigation {
    background: linear-gradient(90deg, #2A1A08 0%, #3D2B1F 50%, #2A1A08 100%);
    border-top: 1px solid rgba(218, 165, 32, 0.2);
    border-bottom: 1px solid rgba(218, 165, 32, 0.2);
}

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

.nav-link {
    display: block;
    padding: 12px 16px;
    color: #FAFAFA;
    font-family: 'Cinzel Decorative', serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #DAA520;
    text-shadow: 0 0 8px rgba(218, 165, 32, 0.5);
}

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

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

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

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

/* === NOTIFICATION BAR === */
.notification-bar {
    background: linear-gradient(90deg, #2A1A08, #1A1005);
    padding: 8px 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(218, 165, 32, 0.15);
}

.notification-content {
    display: flex;
    gap: 40px;
    animation: emperorWalk 15s linear infinite;
    white-space: nowrap;
    color: #DAA520;
    font-size: 13px;
}

/* === ANNOUNCEMENT MODAL === */
.announcement-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.announcement-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.announcement-content {
    position: relative;
    background: linear-gradient(135deg, #2A1A08 0%, #1A1005 100%);
    border: 2px solid #DAA520;
    border-radius: 12px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    z-index: 1;
    animation: laurelCrown 0.5s ease-out;
}

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

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

.announcement-header-icon i {
    font-size: 48px;
    color: #DAA520;
    animation: shieldFlash 2s ease-in-out 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;
    background: rgba(218, 165, 32, 0.05);
    border: 1px solid rgba(218, 165, 32, 0.15);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.announcement-item:hover {
    background: rgba(218, 165, 32, 0.1);
    border-color: #DAA520;
}

.announcement-badge {
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    font-family: 'Cinzel Decorative', serif;
    letter-spacing: 1px;
}

.announcement-badge.hot { background: #dc3545; color: #fff; }
.announcement-badge.new { background: #DAA520; color: #1A1005; }
.announcement-badge.info { background: #6D4C41; color: #FAFAFA; }

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

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

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

.announcement-cta {
    display: inline-block;
    padding: 12px 40px;
    background: linear-gradient(135deg, #DAA520, #B8860B);
    color: #1A1005;
    font-family: 'Cinzel Decorative', serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.announcement-cta:hover {
    background: linear-gradient(135deg, #FFD700, #DAA520);
    color: #1A1005;
    text-shadow: none;
    transform: translateY(-2px);
}

/* === HERO SECTION === */
.caesar-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(180deg, #2A1A08 0%, #1A1005 50%, #0D0802 100%);
    border-radius: 0 0 20px 20px;
    margin-bottom: 40px;
}

.colosseum-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.marble-column {
    position: absolute;
    width: 40px;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(218, 165, 32, 0.05) 0%, 
        rgba(218, 165, 32, 0.15) 30%, 
        rgba(250, 250, 250, 0.1) 50%, 
        rgba(218, 165, 32, 0.15) 70%, 
        rgba(218, 165, 32, 0.05) 100%);
    border-radius: 20px 20px 0 0;
    animation: columnRise 1.5s ease-out forwards;
}

.marble-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    width: 60px;
    height: 30px;
    background: linear-gradient(180deg, rgba(218, 165, 32, 0.3), rgba(218, 165, 32, 0.1));
    border-radius: 5px 5px 0 0;
}

.marble-column::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -5px;
    width: 50px;
    height: 20px;
    background: rgba(218, 165, 32, 0.2);
    border-radius: 0 0 3px 3px;
}

.column-left { left: 8%; animation-delay: 0.2s; }
.column-right { right: 8%; animation-delay: 0.4s; }
.column-far-left { left: 2%; animation-delay: 0.6s; opacity: 0.5; width: 30px; }
.column-far-right { right: 2%; animation-delay: 0.8s; opacity: 0.5; width: 30px; }

.laurel-wreath {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 100px;
    animation: laurelCrown 1.2s ease-out 0.5s both;
}

.laurel-left, .laurel-right {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 3px solid rgba(218, 165, 32, 0.4);
    border-radius: 50% 0 50% 50%;
}

.laurel-left {
    left: 10px;
    transform: rotate(-30deg);
}

.laurel-right {
    right: 10px;
    border-radius: 0 50% 50% 50%;
    transform: rotate(30deg);
}

.triumphal-arch {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 150px;
    border: 3px solid rgba(218, 165, 32, 0.1);
    border-bottom: none;
    border-radius: 150px 150px 0 0;
}

.hero-inner-content {
    position: relative;
    z-index: 2;
    padding: 40px 20px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

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

.hero-brand {
    display: block;
    font-size: 56px;
    font-family: 'Cinzel Decorative', serif;
    color: #DAA520;
    letter-spacing: 10px;
    text-shadow: 0 0 30px rgba(218, 165, 32, 0.5), 0 2px 4px rgba(0,0,0,0.5);
    background: linear-gradient(90deg, #B8860B, #DAA520, #FFD700, #DAA520, #B8860B);
    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: 2px;
    background: linear-gradient(90deg, transparent, #DAA520, transparent);
    margin: 15px auto;
}

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

.hero-description {
    max-width: 700px;
    margin: 0 auto 25px;
    font-size: 16px;
    color: rgba(250, 250, 250, 0.8);
    line-height: 1.8;
}

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

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

.hero-stat-number {
    display: block;
    font-family: 'Cinzel Decorative', serif;
    font-size: 28px;
    color: #DAA520;
    font-weight: 700;
}

.hero-stat-label {
    font-size: 13px;
    color: rgba(250, 250, 250, 0.6);
    letter-spacing: 1px;
}

.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, #DAA520 0%, #B8860B 100%);
    color: #1A1005;
    font-family: 'Cinzel Decorative', serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    animation: pulseGold 2s ease-in-out infinite;
}

.btn-gold-primary:hover {
    background: linear-gradient(135deg, #FFD700, #DAA520);
    color: #1A1005;
    text-shadow: none;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(218, 165, 32, 0.4);
}

.btn-outline-gold {
    display: inline-block;
    padding: 14px 40px;
    border: 2px solid #DAA520;
    color: #DAA520;
    font-family: 'Cinzel Decorative', serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background: rgba(218, 165, 32, 0.1);
    color: #FAFAFA;
    text-shadow: none;
}

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

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

.section-subtitle {
    text-align: center;
    color: rgba(250, 250, 250, 0.6);
    font-size: 15px;
    margin-bottom: 35px;
}

/* === IMPERIAL GAMES (6 Cards) === */
.imperial-games {
    padding: 50px 0;
}

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

.imperial-game-card {
    position: relative;
    background: linear-gradient(135deg, #2A1A08 0%, #1A1005 100%);
    border: 1px solid rgba(218, 165, 32, 0.2);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
    display: block;
}

.imperial-game-card:hover {
    border-color: #DAA520;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(218, 165, 32, 0.2);
}

.imperial-game-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(218, 165, 32, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

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

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

.imperial-game-icon i {
    font-size: 40px;
    color: #DAA520;
    animation: floatUpDown 3s ease-in-out infinite;
}

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

.imperial-game-rating i {
    color: #DAA520;
    font-size: 12px;
}

.imperial-game-card h3 {
    font-size: 18px;
    color: #DAA520;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.imperial-game-card p {
    font-size: 14px;
    color: rgba(250, 250, 250, 0.7);
    line-height: 1.6;
    margin-bottom: 12px;
}

.imperial-game-players {
    font-size: 12px;
    color: #6D4C41;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* === ROMAN GAME GRID (3x4) === */
.roman-grid {
    padding: 50px 0;
    background: linear-gradient(180deg, rgba(42, 26, 8, 0.3) 0%, transparent 100%);
}

.roman-game-map {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.roman-grid-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.roman-grid-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
    background: rgba(218, 165, 32, 0.05);
    border: 1px solid rgba(218, 165, 32, 0.15);
    border-radius: 10px;
    transition: all 0.3s ease;
    min-width: 120px;
    text-align: center;
}

.roman-grid-node:hover {
    background: rgba(218, 165, 32, 0.1);
    border-color: #DAA520;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(218, 165, 32, 0.15);
}

.node-shield {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #DAA520 0%, #B8860B 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: shieldFlash 3s ease-in-out infinite;
}

.node-shield i {
    color: #1A1005;
    font-size: 18px;
}

.node-label {
    font-family: 'Cinzel Decorative', serif;
    font-size: 12px;
    color: #DAA520;
    letter-spacing: 0.5px;
}

/* === IMPERIAL FEATURES === */
.imperial-features {
    padding: 50px 0;
}

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

.imperial-feature-card {
    background: linear-gradient(135deg, #2A1A08 0%, #1A1005 100%);
    border: 1px solid rgba(218, 165, 32, 0.15);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
}

.imperial-feature-card:hover {
    border-color: #DAA520;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(218, 165, 32, 0.15);
}

.imperial-feature-icon {
    margin-bottom: 20px;
}

.shield-emblem {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.2) 0%, rgba(109, 76, 65, 0.2) 100%);
    border: 2px solid rgba(218, 165, 32, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: shieldFlash 3s ease-in-out infinite;
}

.shield-emblem i {
    font-size: 28px;
    color: #DAA520;
}

.imperial-feature-card h3 {
    font-size: 16px;
    color: #DAA520;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.imperial-feature-card p {
    font-size: 14px;
    color: rgba(250, 250, 250, 0.7);
    line-height: 1.6;
}

/* === EMPIRE STATS === */
.empire-stats {
    padding: 50px 0;
    position: relative;
    background: linear-gradient(180deg, #2A1A08 0%, #1A1005 100%);
    border-top: 2px solid rgba(218, 165, 32, 0.2);
    border-bottom: 2px solid rgba(218, 165, 32, 0.2);
}

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

.column-decoration {
    position: absolute;
    width: 30px;
    height: 100%;
    background: linear-gradient(90deg, rgba(218, 165, 32, 0.05), rgba(218, 165, 32, 0.1), rgba(218, 165, 32, 0.05));
}

.column-decoration.col-left { left: 5%; }
.column-decoration.col-right { right: 5%; }

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

.empire-stat-card {
    background: linear-gradient(135deg, rgba(42, 26, 8, 0.8) 0%, rgba(26, 16, 5, 0.9) 100%);
    border: 1px solid rgba(218, 165, 32, 0.25);
    border-radius: 12px;
    padding: 30px 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.empire-stat-card:hover {
    border-color: #DAA520;
    box-shadow: 0 0 20px rgba(218, 165, 32, 0.2);
}

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

.stat-shield-decoration i {
    font-size: 24px;
    color: rgba(218, 165, 32, 0.4);
}

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

.stat-number {
    font-family: 'Cinzel Decorative', serif;
    font-size: 36px;
    color: #DAA520;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: rgba(250, 250, 250, 0.7);
    letter-spacing: 0.5px;
}

/* === IMPERIAL PROMOTIONS === */
.imperial-promos {
    padding: 50px 0;
}

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

.imperial-promo-card {
    position: relative;
    background: linear-gradient(135deg, #2A1A08 0%, #1A1005 100%);
    border: 1px solid rgba(218, 165, 32, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.imperial-promo-card:hover {
    border-color: #DAA520;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(218, 165, 32, 0.2);
}

.promo-shield-bg {
    position: absolute;
    top: -30%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(218, 165, 32, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.imperial-promo-inner {
    padding: 30px 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

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

.promo-icon i {
    font-size: 40px;
    color: #DAA520;
}

.imperial-promo-inner h3 {
    font-size: 18px;
    color: #DAA520;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.imperial-promo-inner p {
    font-size: 14px;
    color: rgba(250, 250, 250, 0.7);
    line-height: 1.6;
    margin-bottom: 15px;
}

.promo-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 13px;
    color: rgba(250, 250, 250, 0.6);
}

.promo-badge {
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    font-family: 'Cinzel Decorative', serif;
    letter-spacing: 1px;
}

.promo-badge.hot { background: #dc3545; color: #fff; }
.promo-badge.new { background: #DAA520; color: #1A1005; }
.promo-badge.vip { background: #6D4C41; color: #FAFAFA; }

.btn-promo {
    display: inline-block;
    padding: 10px 30px;
    background: linear-gradient(135deg, #DAA520, #B8860B);
    color: #1A1005;
    font-family: 'Cinzel Decorative', serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-promo:hover {
    background: linear-gradient(135deg, #FFD700, #DAA520);
    color: #1A1005;
    text-shadow: none;
    transform: translateY(-2px);
}

/* === FOOTER CTA === */
.footer-cta-section {
    position: relative;
    padding: 60px 0;
    background: linear-gradient(180deg, #2A1A08 0%, #1A1005 100%);
    text-align: center;
    overflow: hidden;
    border-top: 2px solid rgba(218, 165, 32, 0.2);
    margin-top: 40px;
}

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

.cta-column-decoration {
    position: absolute;
    width: 35px;
    height: 100%;
    background: linear-gradient(90deg, rgba(218, 165, 32, 0.03), rgba(218, 165, 32, 0.08), rgba(218, 165, 32, 0.03));
}

.cta-column-decoration.col-left { left: 10%; }
.cta-column-decoration.col-right { right: 10%; }

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

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

.cta-crown-decoration i {
    font-size: 48px;
    color: #DAA520;
    animation: floatUpDown 3s ease-in-out infinite;
}

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

.footer-cta-inner p {
    font-size: 16px;
    color: rgba(250, 250, 250, 0.8);
    line-height: 1.8;
    margin-bottom: 25px;
}

.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: #DAA520;
}

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

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

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

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

.article-card {
    background: linear-gradient(135deg, #2A1A08 0%, #1A1005 100%);
    border: 1px solid rgba(218, 165, 32, 0.15);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    display: block;
}

.article-card:hover {
    border-color: #DAA520;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(218, 165, 32, 0.15);
}

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

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

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

.article-card-title {
    padding: 15px 15px 8px;
    font-family: 'Cinzel Decorative', serif;
    font-size: 14px;
    font-weight: 700;
    color: #DAA520;
    line-height: 1.4;
}

.article-card-title span {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card-meta {
    padding: 0 15px;
    font-size: 12px;
    color: #6D4C41;
}

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

.article-card-excerpt {
    padding: 8px 15px 15px;
    font-size: 13px;
    color: rgba(250, 250, 250, 0.6);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card-more {
    display: block;
    padding: 0 15px 15px;
    font-size: 13px;
    color: #DAA520;
    font-family: 'Cinzel Decorative', serif;
    font-weight: 700;
}

.view-more-btn {
    display: inline-block;
    padding: 12px 35px;
    border: 2px solid #DAA520;
    color: #DAA520;
    font-family: 'Cinzel Decorative', serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-align: center;
}

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

.view-more-btn:hover {
    background: rgba(218, 165, 32, 0.1);
    color: #FAFAFA;
    text-shadow: none;
}

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

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

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

.breadcrumb a {
    color: #DAA520;
}

.breadcrumb span {
    color: rgba(250, 250, 250, 0.5);
}

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

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

.category-desc {
    color: rgba(250, 250, 250, 0.6);
    font-size: 15px;
    margin-top: 10px;
}

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

.provider-tab {
    padding: 8px 20px;
    background: rgba(218, 165, 32, 0.05);
    border: 1px solid rgba(218, 165, 32, 0.2);
    color: rgba(250, 250, 250, 0.7);
    border-radius: 20px;
    cursor: pointer;
    font-family: 'Cinzel Decorative', serif;
    font-size: 12px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.provider-tab:hover, .provider-tab.active {
    background: linear-gradient(135deg, #DAA520, #B8860B);
    color: #1A1005;
    border-color: #DAA520;
}

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

.article-grid .article-card h3 a {
    color: #DAA520;
}

.article-grid .article-card h3 a:hover {
    color: #FAFAFA;
}

.no-posts {
    text-align: center;
    padding: 60px 20px;
    grid-column: 1 / -1;
    color: rgba(250, 250, 250, 0.5);
}

/* === 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: 40px;
    height: 40px;
    border: 1px solid rgba(218, 165, 32, 0.3);
    border-radius: 6px;
    color: #DAA520;
    font-family: 'Cinzel Decorative', serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: linear-gradient(135deg, #DAA520, #B8860B);
    color: #1A1005;
    border-color: #DAA520;
}

/* === SINGLE ARTICLE === */
.single-article {
    background: linear-gradient(135deg, #2A1A08 0%, #1A1005 100%);
    border: 1px solid rgba(218, 165, 32, 0.15);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
}

.article-title {
    font-size: 28px;
    color: #DAA520;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 13px;
    color: #6D4C41;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(218, 165, 32, 0.1);
}

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

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

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

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

.article-content {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(250, 250, 250, 0.85);
}

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

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

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

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

.article-content blockquote {
    border-left: 3px solid #DAA520;
    padding: 15px 20px;
    margin: 20px 0;
    background: rgba(218, 165, 32, 0.05);
    border-radius: 0 8px 8px 0;
    font-style: italic;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid rgba(218, 165, 32, 0.1);
    margin-top: 20px;
}

.article-tags i {
    color: #DAA520;
    margin-right: 5px;
}

.article-tags span {
    padding: 4px 12px;
    background: rgba(218, 165, 32, 0.1);
    border: 1px solid rgba(218, 165, 32, 0.2);
    border-radius: 15px;
    font-size: 12px;
    color: #DAA520;
}

.article-tags a {
    color: #DAA520;
}

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

.article-nav a {
    color: #DAA520;
    font-family: 'Cinzel Decorative', serif;
    font-size: 14px;
}

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

.related-posts-title {
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(218, 165, 32, 0.2);
}

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

.related-item {
    display: block;
    text-align: center;
}

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

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

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

.related-item-title {
    font-size: 13px;
    color: #DAA520;
    font-family: 'Cinzel Decorative', serif;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* === PAGE === */
.page-article {
    background: linear-gradient(135deg, #2A1A08 0%, #1A1005 100%);
    border: 1px solid rgba(218, 165, 32, 0.15);
    border-radius: 12px;
    padding: 30px;
}

.page-title {
    font-size: 28px;
    color: #DAA520;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

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

.page-content {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(250, 250, 250, 0.85);
}

.page-content h2, .page-content h3 {
    color: #DAA520;
    margin: 25px 0 15px;
}

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

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

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

.error-landmark i {
    font-size: 80px;
    color: #DAA520;
    animation: floatUpDown 3s ease-in-out infinite;
}

.error-code {
    font-size: 100px;
    color: #DAA520;
    letter-spacing: 10px;
    text-shadow: 0 0 30px rgba(218, 165, 32, 0.3);
}

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

.error-desc {
    max-width: 500px;
    margin: 0 auto 30px;
    color: rgba(250, 250, 250, 0.6);
    font-size: 15px;
    line-height: 1.8;
}

/* === FLOATING SIDEBAR === */
.floating-sidebar {
    position: fixed;
    right: 10px;
    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, #DAA520, #B8860B);
    color: #1A1005;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
}

.sidebar-btn:hover {
    transform: scale(1.1);
    color: #1A1005;
    text-shadow: none;
    box-shadow: 0 0 15px rgba(218, 165, 32, 0.5);
}

.sidebar-btn i {
    font-size: 18px;
}

.sidebar-label {
    display: none;
}

.sidebar-btn-facebook {
    background: linear-gradient(135deg, #1877F2, #0D65D9);
    color: #fff;
}

.sidebar-btn-facebook:hover { color: #fff; }

.sidebar-btn-telegram {
    background: linear-gradient(135deg, #0088cc, #006699);
    color: #fff;
}

.sidebar-btn-telegram:hover { color: #fff; }

/* === FOOTER === */
.site-footer {
    background: linear-gradient(180deg, #1A1005 0%, #0D0802 100%);
    border-top: 2px solid rgba(218, 165, 32, 0.3);
    padding: 50px 0 30px;
    margin-top: 50px;
}

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

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

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

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

.footer-18plus {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border: 2px solid #dc3545;
    color: #dc3545;
    border-radius: 50%;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 15px;
}

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

.footer-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border: 1px solid rgba(218, 165, 32, 0.3);
    border-radius: 50%;
    color: #DAA520;
    transition: all 0.3s ease;
}

.footer-social-links a:hover {
    background: #DAA520;
    color: #1A1005;
    text-shadow: none;
}

.footer-col h4 {
    font-size: 15px;
    color: #DAA520;
    letter-spacing: 1px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(218, 165, 32, 0.2);
}

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

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

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

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

/* License Bar */
.footer-license-bar {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid rgba(218, 165, 32, 0.15);
    border-bottom: 1px solid rgba(218, 165, 32, 0.15);
    margin-bottom: 20px;
}

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

.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: #DAA520;
}

.license-item span {
    font-size: 11px;
    color: rgba(250, 250, 250, 0.5);
    font-family: 'Cinzel Decorative', serif;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
}

.footer-copyright {
    font-size: 13px;
    color: rgba(250, 250, 250, 0.4);
    font-family: 'Cinzel Decorative', serif;
    letter-spacing: 1px;
}

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

/* === SCROLLBAR === */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1A1005;
}

::-webkit-scrollbar-thumb {
    background: #6D4C41;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #DAA520;
}

/* === SELECTION === */
::selection {
    background: rgba(218, 165, 32, 0.3);
    color: #FAFAFA;
}
