/* ============================================
   VENETIAN THEME - main.css (moban-73)
   World Casino Theme with Venetian Palace
   Colors: #1A0F0A bg, #B8860B gold, #8B0000 red, #5C4033 brown
   ============================================ */

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

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

body {
    font-family: 'Work Sans', sans-serif;
    background: #1A0F0A;
    color: #F5E6D3;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

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

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

a:hover {
    color: #FFD700;
    text-shadow: 0 0 10px rgba(184, 134, 11, 0.5);
}

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

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

.gold-text {
    color: #B8860B;
}

/* === KEYFRAME ANIMATIONS === */
@keyframes archReveal {
    0% {
        opacity: 0;
        transform: scaleY(0);
        transform-origin: bottom;
    }
    50% {
        opacity: 0.5;
        transform: scaleY(0.5);
    }
    100% {
        opacity: 1;
        transform: scaleY(1);
    }
}

@keyframes gondolaDrift {
    0% {
        transform: translateX(-100%) translateY(0);
    }
    25% {
        transform: translateX(-50%) translateY(-5px);
    }
    50% {
        transform: translateX(0%) translateY(0);
    }
    75% {
        transform: translateX(50%) translateY(-3px);
    }
    100% {
        transform: translateX(100%) translateY(0);
    }
}

@keyframes maskTwirl {
    0% {
        transform: rotate(0deg) scale(1);
    }
    25% {
        transform: rotate(90deg) scale(1.1);
    }
    50% {
        transform: rotate(180deg) scale(1);
    }
    75% {
        transform: rotate(270deg) scale(1.1);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

@keyframes frescoFade {
    0%, 100% {
        opacity: 0.3;
        filter: brightness(0.8);
    }
    50% {
        opacity: 0.7;
        filter: brightness(1.2);
    }
}

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

@keyframes baroqueFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

@keyframes waterRipple {
    0% {
        transform: scaleX(1);
        opacity: 0.3;
    }
    50% {
        transform: scaleX(1.2);
        opacity: 0.6;
    }
    100% {
        transform: scaleX(1);
        opacity: 0.3;
    }
}

@keyframes archGlow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(184, 134, 11, 0.3), inset 0 0 15px rgba(184, 134, 11, 0.1);
    }
    50% {
        box-shadow: 0 0 30px rgba(184, 134, 11, 0.6), inset 0 0 25px rgba(184, 134, 11, 0.2);
    }
}

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

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

.btn-login {
    padding: 8px 18px;
    border: 1px solid #B8860B;
    color: #B8860B;
    border-radius: 4px;
    font-weight: 500;
    font-size: 13px;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-login:hover {
    background: #B8860B;
    color: #1A0F0A;
}

.btn-register {
    padding: 8px 18px;
    background: linear-gradient(135deg, #B8860B, #DAA520);
    color: #1A0F0A;
    border-radius: 4px;
    font-weight: 600;
    font-size: 13px;
    border: none;
    transition: all 0.3s ease;
}

.btn-register:hover {
    background: linear-gradient(135deg, #DAA520, #FFD700);
    box-shadow: 0 0 15px rgba(184, 134, 11, 0.5);
    color: #1A0F0A;
}

.btn-demo {
    padding: 8px 18px;
    background: linear-gradient(135deg, #8B0000, #A52A2A);
    color: #F5E6D3;
    border-radius: 4px;
    font-weight: 500;
    font-size: 13px;
    border: none;
    transition: all 0.3s ease;
}

.btn-demo:hover {
    background: linear-gradient(135deg, #A52A2A, #CD5C5C);
    box-shadow: 0 0 15px rgba(139, 0, 0, 0.5);
    color: #fff;
}

/* === NAVIGATION === */
.main-navigation {
    background: rgba(26, 15, 10, 0.95);
    border-top: 1px solid rgba(184, 134, 11, 0.3);
    border-bottom: 1px solid rgba(184, 134, 11, 0.3);
}

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

.nav-link {
    display: block;
    padding: 12px 16px;
    color: #F5E6D3;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #B8860B;
    text-shadow: none;
}

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

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

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

/* === NOTIFICATION BAR === */
.notification-bar {
    background: linear-gradient(90deg, #8B0000, #5C4033, #8B0000);
    overflow: hidden;
    white-space: nowrap;
}

.notification-content {
    display: flex;
    gap: 80px;
    animation: marquee 30s linear infinite;
    padding: 8px 0;
}

.notification-content span {
    font-size: 12px;
    color: #FFD700;
    flex-shrink: 0;
}

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

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

.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(0, 0, 0, 0.85);
}

.announcement-content {
    position: relative;
    background: linear-gradient(135deg, #1A0F0A, #2D1810);
    border: 2px solid #B8860B;
    border-radius: 12px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    z-index: 1;
    box-shadow: 0 0 40px rgba(184, 134, 11, 0.3);
}

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

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

.announcement-header-icon i {
    font-size: 48px;
    color: #B8860B;
    animation: maskTwirl 8s 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(184, 134, 11, 0.08);
    border: 1px solid rgba(184, 134, 11, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.announcement-item:hover {
    background: rgba(184, 134, 11, 0.15);
    border-color: #B8860B;
    text-shadow: none;
}

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

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

.announcement-badge.new {
    background: #B8860B;
    color: #1A0F0A;
}

.announcement-badge.info {
    background: #5C4033;
    color: #F5E6D3;
}

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

.announcement-item i {
    color: #B8860B;
    font-size: 12px;
}

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

.announcement-cta {
    display: inline-block;
    padding: 12px 40px;
    background: linear-gradient(135deg, #B8860B, #DAA520);
    color: #1A0F0A;
    font-weight: 700;
    border-radius: 6px;
    font-size: 15px;
    letter-spacing: 1px;
}

.announcement-cta:hover {
    background: linear-gradient(135deg, #DAA520, #FFD700);
    color: #1A0F0A;
    box-shadow: 0 0 20px rgba(184, 134, 11, 0.5);
}

/* === HERO SECTION === */
.venetian-hero {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(180deg, #0D0805 0%, #1A0F0A 30%, #2D1810 70%, #1A0F0A 100%);
    margin: 0 -15px;
    padding: 0 15px;
    border-bottom: 3px solid #B8860B;
}

/* Palace Arches */
.palace-arches {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.palace-arch {
    position: absolute;
    border: 3px solid rgba(184, 134, 11, 0.3);
    border-radius: 50% 50% 0 0;
    animation: archReveal 2s ease-out forwards, archGlow 4s ease-in-out infinite;
}

.palace-arch-1 {
    width: 300px;
    height: 400px;
    left: -50px;
    top: 50px;
    border-color: rgba(184, 134, 11, 0.2);
    animation-delay: 0s;
}

.palace-arch-2 {
    width: 400px;
    height: 500px;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    border-color: rgba(184, 134, 11, 0.25);
    animation-delay: 0.3s;
}

.palace-arch-3 {
    width: 300px;
    height: 400px;
    right: -50px;
    top: 50px;
    border-color: rgba(184, 134, 11, 0.2);
    animation-delay: 0.6s;
}

/* Gondola Canal */
.gondola-canal {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    overflow: hidden;
}

.canal-water {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(180deg, rgba(92, 64, 51, 0.3), rgba(26, 15, 10, 0.8));
    border-top: 2px solid rgba(184, 134, 11, 0.3);
}

.canal-water::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 2px;
    background: repeating-linear-gradient(90deg, transparent, rgba(184, 134, 11, 0.4) 50px, transparent 100px);
    animation: waterRipple 3s ease-in-out infinite;
}

.gondola {
    position: absolute;
    bottom: 40px;
    z-index: 2;
}

.gondola-1 {
    animation: gondolaDrift 20s linear infinite;
}

.gondola-2 {
    animation: gondolaDrift 25s linear infinite;
    animation-delay: 10s;
}

.gondola-body {
    width: 80px;
    height: 20px;
    background: linear-gradient(135deg, #5C4033, #3D2B1F);
    border-radius: 0 40px 5px 0;
    border: 1px solid rgba(184, 134, 11, 0.4);
    position: relative;
}

.gondola-body::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 15px;
    width: 30px;
    height: 8px;
    background: #5C4033;
    border-radius: 3px 3px 0 0;
    border: 1px solid rgba(184, 134, 11, 0.3);
    border-bottom: none;
}

.gondola-pole {
    position: absolute;
    right: -5px;
    top: -40px;
    width: 3px;
    height: 50px;
    background: linear-gradient(180deg, #B8860B, #5C4033);
    transform: rotate(-15deg);
}

/* Fresco Ceiling */
.fresco-ceiling {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: radial-gradient(ellipse at center top, rgba(139, 0, 0, 0.15) 0%, transparent 70%);
    animation: frescoFade 6s ease-in-out infinite;
    pointer-events: none;
}

/* Baroque Decorations */
.baroque-decoration {
    position: absolute;
    width: 120px;
    height: 200px;
    pointer-events: none;
    animation: baroqueFloat 6s ease-in-out infinite;
}

.baroque-left {
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    background: radial-gradient(ellipse, rgba(184, 134, 11, 0.1), transparent);
    border-left: 2px solid rgba(184, 134, 11, 0.2);
    border-radius: 0 50% 50% 0;
}

.baroque-right {
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    background: radial-gradient(ellipse, rgba(184, 134, 11, 0.1), transparent);
    border-right: 2px solid rgba(184, 134, 11, 0.2);
    border-radius: 50% 0 0 50%;
    animation-delay: 3s;
}

/* Hero Content */
.hero-inner-content {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 800px;
    padding: 40px 20px;
}

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

.hero-brand {
    display: block;
    font-family: 'EB Garamond', serif;
    font-size: 64px;
    font-weight: 700;
    color: #B8860B;
    letter-spacing: 12px;
    text-shadow: 0 0 30px rgba(184, 134, 11, 0.5), 0 4px 8px rgba(0, 0, 0, 0.5);
    background: linear-gradient(90deg, #B8860B, #FFD700, #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, #B8860B, transparent);
    margin: 15px auto;
}

.hero-tagline {
    display: block;
    font-size: 22px;
    color: #F5E6D3;
    letter-spacing: 5px;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 15px;
    color: rgba(245, 230, 211, 0.8);
    margin-bottom: 30px;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.hero-stat-number {
    display: block;
    font-family: 'EB Garamond', serif;
    font-size: 32px;
    font-weight: 700;
    color: #B8860B;
    text-shadow: 0 0 10px rgba(184, 134, 11, 0.3);
}

.hero-stat-label {
    display: block;
    font-size: 12px;
    color: rgba(245, 230, 211, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

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

.btn-gold-primary {
    display: inline-block;
    padding: 14px 35px;
    background: linear-gradient(135deg, #B8860B, #DAA520);
    color: #1A0F0A;
    font-weight: 700;
    font-size: 15px;
    border-radius: 6px;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-gold-primary:hover {
    background: linear-gradient(135deg, #DAA520, #FFD700);
    color: #1A0F0A;
    box-shadow: 0 0 25px rgba(184, 134, 11, 0.5);
    transform: translateY(-2px);
}

.btn-outline-gold {
    display: inline-block;
    padding: 14px 35px;
    background: transparent;
    color: #B8860B;
    font-weight: 600;
    font-size: 15px;
    border-radius: 6px;
    letter-spacing: 1px;
    border: 2px solid #B8860B;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-outline-gold:hover {
    background: rgba(184, 134, 11, 0.1);
    border-color: #FFD700;
    color: #FFD700;
    box-shadow: 0 0 15px rgba(184, 134, 11, 0.3);
}

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

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #B8860B, transparent);
}

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

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

/* === STAR GAMES (6 Game Cards) === */
.star-games {
    padding: 60px 0;
}

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

.star-game-card {
    position: relative;
    background: linear-gradient(135deg, rgba(45, 24, 16, 0.9), rgba(92, 64, 51, 0.3));
    border: 1px solid rgba(184, 134, 11, 0.3);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
    display: block;
}

.star-game-card:hover {
    border-color: #B8860B;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(184, 134, 11, 0.2);
    text-shadow: none;
}

.star-game-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(184, 134, 11, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

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

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

.star-game-icon i {
    font-size: 40px;
    color: #B8860B;
    text-shadow: 0 0 15px rgba(184, 134, 11, 0.3);
}

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

.star-game-rating i {
    color: #B8860B;
    font-size: 12px;
    margin: 0 1px;
}

.star-game-card h3 {
    font-size: 20px;
    color: #F5E6D3;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

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

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

/* === GAME GRID (3x4) === */
.game-grid-section {
    padding: 60px 0;
    background: linear-gradient(180deg, transparent, rgba(45, 24, 16, 0.3), transparent);
}

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

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

.game-grid-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 10px;
    background: linear-gradient(135deg, rgba(45, 24, 16, 0.6), rgba(92, 64, 51, 0.2));
    border: 1px solid rgba(184, 134, 11, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
    text-align: center;
}

.game-grid-node:hover {
    border-color: #B8860B;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.1), rgba(92, 64, 51, 0.3));
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(184, 134, 11, 0.15);
    text-shadow: none;
}

.node-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(184, 134, 11, 0.1);
    border: 1px solid rgba(184, 134, 11, 0.3);
    border-radius: 50%;
}

.node-icon i {
    font-size: 20px;
    color: #B8860B;
}

.node-label {
    font-size: 13px;
    color: #F5E6D3;
    font-weight: 500;
}

/* === PALACE FEATURES === */
.palace-features {
    padding: 60px 0;
}

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

.palace-feature-card {
    background: linear-gradient(135deg, rgba(45, 24, 16, 0.8), rgba(92, 64, 51, 0.2));
    border: 1px solid rgba(184, 134, 11, 0.2);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
}

.palace-feature-card:hover {
    border-color: #B8860B;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(184, 134, 11, 0.15);
}

.palace-feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(184, 134, 11, 0.1);
    border: 2px solid rgba(184, 134, 11, 0.3);
    border-radius: 50%;
}

.palace-feature-icon i {
    font-size: 28px;
    color: #B8860B;
}

.palace-feature-card h3 {
    font-size: 18px;
    color: #F5E6D3;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

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

/* === PALACE STATS === */
.palace-stats {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    margin: 0 -15px;
    padding-left: 15px;
    padding-right: 15px;
}

.palace-stats-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.1), rgba(26, 15, 10, 0.9), rgba(184, 134, 11, 0.05));
    border-top: 2px solid rgba(184, 134, 11, 0.2);
    border-bottom: 2px solid rgba(184, 134, 11, 0.2);
}

.fresco-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(139, 0, 0, 0.1), transparent);
    animation: frescoFade 8s ease-in-out infinite;
}

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

.palace-stat-card {
    background: linear-gradient(135deg, rgba(45, 24, 16, 0.9), rgba(92, 64, 51, 0.3));
    border: 1px solid rgba(184, 134, 11, 0.3);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
}

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

.stat-arch-decoration i {
    font-size: 24px;
    color: rgba(184, 134, 11, 0.4);
}

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

.stat-number {
    font-family: 'EB Garamond', serif;
    font-size: 42px;
    font-weight: 700;
    color: #B8860B;
    text-shadow: 0 0 15px rgba(184, 134, 11, 0.3);
    margin-bottom: 5px;
}

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

/* === PALACE PROMOTIONS === */
.palace-promos {
    padding: 60px 0;
}

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

.palace-promo-card {
    position: relative;
    background: linear-gradient(135deg, rgba(45, 24, 16, 0.9), rgba(92, 64, 51, 0.3));
    border: 1px solid rgba(184, 134, 11, 0.3);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.palace-promo-card:hover {
    border-color: #B8860B;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(184, 134, 11, 0.2);
}

.promo-barogue-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(139, 0, 0, 0.1), transparent);
    pointer-events: none;
}

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

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

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

.palace-promo-inner h3 {
    font-size: 18px;
    color: #F5E6D3;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

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

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

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

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

.promo-badge.new {
    background: #B8860B;
    color: #1A0F0A;
}

.promo-badge.vip {
    background: linear-gradient(135deg, #B8860B, #DAA520);
    color: #1A0F0A;
}

.btn-promo {
    display: inline-block;
    padding: 10px 30px;
    background: linear-gradient(135deg, #8B0000, #A52A2A);
    color: #F5E6D3;
    font-weight: 600;
    font-size: 13px;
    border-radius: 6px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-promo:hover {
    background: linear-gradient(135deg, #A52A2A, #CD5C5C);
    color: #fff;
    box-shadow: 0 0 15px rgba(139, 0, 0, 0.4);
}

/* === FOOTER CTA === */
.footer-cta-section {
    position: relative;
    padding: 80px 0;
    text-align: center;
    overflow: hidden;
    margin: 0 -15px;
    padding-left: 15px;
    padding-right: 15px;
}

.footer-cta-palace {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.15), rgba(26, 15, 10, 0.95), rgba(184, 134, 11, 0.1));
    border-top: 2px solid rgba(184, 134, 11, 0.3);
    border-bottom: 2px solid rgba(184, 134, 11, 0.3);
}

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

.cta-arch-decoration {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.cta-arch-outer {
    width: 80px;
    height: 80px;
    border: 3px solid rgba(184, 134, 11, 0.4);
    border-radius: 50% 50% 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: archGlow 4s ease-in-out infinite;
}

.cta-arch-inner {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(184, 134, 11, 0.3);
    border-radius: 50% 50% 0 0;
}

.footer-cta-inner h2 {
    font-size: 36px;
    color: #B8860B;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(184, 134, 11, 0.3);
}

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

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

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

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

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

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

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

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

.article-card {
    background: linear-gradient(135deg, rgba(45, 24, 16, 0.8), rgba(92, 64, 51, 0.2));
    border: 1px solid rgba(184, 134, 11, 0.2);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: block;
}

.article-card:hover {
    border-color: #B8860B;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.15);
    text-shadow: none;
}

.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-size: 15px;
    font-weight: 600;
    color: #F5E6D3;
    line-height: 1.4;
    font-family: 'EB Garamond', serif;
}

.article-card-meta {
    padding: 0 15px;
    font-size: 12px;
    color: rgba(245, 230, 211, 0.5);
    display: flex;
    gap: 15px;
}

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

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

.article-card-more {
    display: inline-block;
    padding: 0 15px 15px;
    font-size: 13px;
    color: #B8860B;
    font-weight: 600;
}

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

.view-more-btn {
    display: block;
    text-align: center;
    padding: 14px 30px;
    border: 2px solid #B8860B;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    max-width: 300px;
    margin: 0 auto;
}

.gold-view-more {
    color: #B8860B;
}

.view-more-btn:hover {
    background: rgba(184, 134, 11, 0.1);
    border-color: #FFD700;
    color: #FFD700;
    box-shadow: 0 0 15px rgba(184, 134, 11, 0.2);
}

/* === FOOTER === */
.site-footer {
    background: linear-gradient(180deg, #0D0805, #1A0F0A);
    border-top: 3px solid #B8860B;
    padding: 50px 0 30px;
}

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

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

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

.footer-brand-text {
    font-size: 13px;
    color: rgba(245, 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 #8B0000;
    border-radius: 50%;
    color: #8B0000;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 15px;
}

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

.footer-social-links a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(184, 134, 11, 0.3);
    border-radius: 50%;
    color: #B8860B;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-social-links a:hover {
    background: #B8860B;
    color: #1A0F0A;
    border-color: #B8860B;
}

.footer-col h4 {
    font-size: 16px;
    color: #B8860B;
    margin-bottom: 15px;
    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(245, 230, 211, 0.6);
    transition: all 0.3s ease;
}

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

.footer-license-bar {
    border-top: 1px solid rgba(184, 134, 11, 0.2);
    padding-top: 25px;
    text-align: center;
    margin-bottom: 25px;
}

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

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

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

.license-item i {
    font-size: 24px;
    color: rgba(184, 134, 11, 0.6);
}

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

.footer-bottom {
    border-top: 1px solid rgba(184, 134, 11, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-copyright {
    font-size: 13px;
    color: rgba(245, 230, 211, 0.4);
    letter-spacing: 1px;
}

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

.sidebar-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #B8860B, #DAA520);
    color: #1A0F0A;
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.sidebar-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.4);
    color: #1A0F0A;
}

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

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

.sidebar-label {
    display: none;
    position: absolute;
    right: 55px;
    background: #1A0F0A;
    color: #B8860B;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    border: 1px solid rgba(184, 134, 11, 0.3);
}

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

/* === BREADCRUMB === */
.breadcrumb {
    padding: 15px 0;
    font-size: 13px;
    color: rgba(245, 230, 211, 0.5);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(184, 134, 11, 0.1);
    margin-bottom: 20px;
}

.breadcrumb a {
    color: #B8860B;
}

.breadcrumb a:hover {
    color: #FFD700;
    text-shadow: none;
}

.breadcrumb span {
    color: rgba(245, 230, 211, 0.4);
}

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

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

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

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

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

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

.provider-tab {
    padding: 8px 18px;
    background: rgba(45, 24, 16, 0.6);
    border: 1px solid rgba(184, 134, 11, 0.2);
    color: #F5E6D3;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.provider-tab:hover,
.provider-tab.active {
    background: #B8860B;
    color: #1A0F0A;
    border-color: #B8860B;
}

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

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

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

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(184, 134, 11, 0.3);
    border-radius: 6px;
    color: #F5E6D3;
    font-size: 14px;
    transition: all 0.3s ease;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: #B8860B;
    color: #1A0F0A;
    border-color: #B8860B;
}

/* === SINGLE ARTICLE === */
.single-article {
    background: linear-gradient(135deg, rgba(45, 24, 16, 0.6), rgba(92, 64, 51, 0.1));
    border: 1px solid rgba(184, 134, 11, 0.2);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
}

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

.article-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 13px;
    color: rgba(245, 230, 211, 0.5);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(184, 134, 11, 0.1);
}

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

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

.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(245, 230, 211, 0.85);
}

.article-content h2,
.article-content h3,
.article-content h4 {
    color: #B8860B;
    margin: 25px 0 12px;
}

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

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

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

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

.article-content blockquote {
    border-left: 3px solid #B8860B;
    padding: 15px 20px;
    margin: 20px 0;
    background: rgba(184, 134, 11, 0.05);
    border-radius: 0 8px 8px 0;
}

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

.article-tags {
    padding: 15px 0;
    border-top: 1px solid rgba(184, 134, 11, 0.1);
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

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

.article-tags span {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(184, 134, 11, 0.1);
    border: 1px solid rgba(184, 134, 11, 0.2);
    border-radius: 15px;
    font-size: 12px;
    color: #B8860B;
}

.article-tags span a {
    color: #B8860B;
}

.article-nav {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1px solid rgba(184, 134, 11, 0.1);
    margin-top: 15px;
}

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

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

.related-posts-title {
    font-size: 22px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

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

.related-item {
    background: linear-gradient(135deg, rgba(45, 24, 16, 0.6), rgba(92, 64, 51, 0.2));
    border: 1px solid rgba(184, 134, 11, 0.15);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: block;
}

.related-item:hover {
    border-color: #B8860B;
    transform: translateY(-2px);
    text-shadow: none;
}

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

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

.related-item-title {
    padding: 10px;
    font-size: 13px;
    color: #F5E6D3;
    line-height: 1.4;
}

/* === PAGE === */
.page-article {
    background: linear-gradient(135deg, rgba(45, 24, 16, 0.6), rgba(92, 64, 51, 0.1));
    border: 1px solid rgba(184, 134, 11, 0.2);
    border-radius: 12px;
    padding: 30px;
}

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

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

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

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

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

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

.error-arch {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.error-arch-outer {
    width: 100px;
    height: 100px;
    border: 3px solid rgba(184, 134, 11, 0.4);
    border-radius: 50% 50% 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: archGlow 4s ease-in-out infinite;
}

.error-arch-inner {
    width: 60px;
    height: 60px;
    border: 2px solid rgba(184, 134, 11, 0.3);
    border-radius: 50% 50% 0 0;
}

.error-code {
    font-size: 80px;
    color: #B8860B;
    text-shadow: 0 0 30px rgba(184, 134, 11, 0.3);
    margin-bottom: 10px;
}

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

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

/* === SWIPER CUSTOM === */
.swiper-pagination-bullet {
    background: rgba(184, 134, 11, 0.5);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #B8860B;
}

.swiper-button-next,
.swiper-button-prev {
    color: #B8860B;
}

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

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

::-webkit-scrollbar-thumb {
    background: #5C4033;
    border-radius: 4px;
}

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