/* ============================================
   MONACO88 THEME - main.css (moban-70)
   Mediterranean Luxury Marina Theme
   Colors: #0A1628 bg, #1E3A5F blue, #C9A84C gold, #F8F8F8 white
   Fonts: Didact Gothic (headings) + Lato (body)
   ============================================ */

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

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

body {
    font-family: 'Lato', sans-serif;
    background: #0A1628;
    color: #F8F8F8;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

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

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

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

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

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

.gold-text {
    color: #C9A84C;
}

/* === KEYFRAME ANIMATIONS === */
@keyframes marbleShimmer {
    0% { background-position: 0% 50%; opacity: 0.6; }
    25% { background-position: 50% 100%; opacity: 0.8; }
    50% { background-position: 100% 50%; opacity: 1; }
    75% { background-position: 50% 0%; opacity: 0.8; }
    100% { background-position: 0% 50%; opacity: 0.6; }
}

@keyframes yachtDrift {
    0% { transform: translateX(0) translateY(0) rotate(0deg); }
    25% { transform: translateX(15px) translateY(-5px) rotate(1deg); }
    50% { transform: translateX(30px) translateY(0) rotate(0deg); }
    75% { transform: translateX(15px) translateY(5px) rotate(-1deg); }
    100% { transform: translateX(0) translateY(0) rotate(0deg); }
}

@keyframes champagneBubble {
    0% { transform: translateY(0) scale(1); opacity: 0.8; }
    30% { transform: translateY(-30px) scale(1.1); opacity: 0.6; }
    60% { transform: translateY(-60px) scale(0.9); opacity: 0.4; }
    100% { transform: translateY(-100px) scale(0.5); opacity: 0; }
}

@keyframes chandelierSway {
    0% { transform: rotate(0deg) translateY(0); }
    25% { transform: rotate(2deg) translateY(-3px); }
    50% { transform: rotate(0deg) translateY(0); }
    75% { transform: rotate(-2deg) translateY(-3px); }
    100% { transform: rotate(0deg) translateY(0); }
}

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

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 5px rgba(201, 168, 76, 0.3); }
    50% { box-shadow: 0 0 20px rgba(201, 168, 76, 0.6), 0 0 40px rgba(201, 168, 76, 0.2); }
}

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

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

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

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

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

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

@keyframes waveMotion {
    0% { transform: translateX(0) scaleY(1); }
    50% { transform: translateX(-25%) scaleY(0.8); }
    100% { transform: translateX(-50%) scaleY(1); }
}

/* === MARBLE TEXTURE OVERLAY === */
.marble-texture-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(248, 248, 248, 0.02) 0%,
        rgba(201, 168, 76, 0.03) 25%,
        rgba(248, 248, 248, 0.01) 50%,
        rgba(201, 168, 76, 0.04) 75%,
        rgba(248, 248, 248, 0.02) 100%
    );
    background-size: 400% 400%;
    animation: marbleShimmer 12s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

.marble-texture-stats {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(248, 248, 248, 0.015) 0%,
        rgba(201, 168, 76, 0.02) 25%,
        rgba(248, 248, 248, 0.01) 50%,
        rgba(201, 168, 76, 0.03) 75%,
        rgba(248, 248, 248, 0.015) 100%
    );
    background-size: 400% 400%;
    animation: marbleShimmer 15s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

.marble-texture-cta {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(248, 248, 248, 0.02) 0%,
        rgba(201, 168, 76, 0.025) 25%,
        rgba(248, 248, 248, 0.01) 50%,
        rgba(201, 168, 76, 0.035) 75%,
        rgba(248, 248, 248, 0.02) 100%
    );
    background-size: 400% 400%;
    animation: marbleShimmer 10s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

/* === YACHT SILHOUETTES === */
.yacht-silhouette {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.yacht-silhouette::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
}

.yacht-1 {
    top: 60px;
    right: 60px;
    animation: yachtDrift 8s ease-in-out infinite;
}

.yacht-1::before {
    border-width: 0 40px 20px 40px;
    border-color: transparent transparent rgba(201, 168, 76, 0.15) transparent;
}

.yacht-1::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 10px;
    width: 60px;
    height: 8px;
    background: rgba(201, 168, 76, 0.12);
    border-radius: 0 0 50% 50%;
}

.yacht-2 {
    bottom: 120px;
    left: 40px;
    animation: yachtDrift 10s ease-in-out infinite;
    animation-delay: 3s;
}

.yacht-2::before {
    border-width: 0 30px 15px 30px;
    border-color: transparent transparent rgba(201, 168, 76, 0.1) transparent;
}

.yacht-2::after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 8px;
    width: 44px;
    height: 6px;
    background: rgba(201, 168, 76, 0.08);
    border-radius: 0 0 50% 50%;
}

/* === CHANDELIER DECORATION === */
.chandelier-deco {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    animation: chandelierSway 6s ease-in-out infinite;
    transform-origin: top center;
}

.chandelier-1 {
    top: 0;
    left: 15%;
}

.chandelier-1::before {
    content: '';
    display: block;
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, rgba(201, 168, 76, 0.3), rgba(201, 168, 76, 0.1));
    margin: 0 auto;
}

.chandelier-1::after {
    content: '';
    display: block;
    width: 30px;
    height: 15px;
    border-radius: 0 0 50% 50%;
    background: radial-gradient(ellipse, rgba(201, 168, 76, 0.2), transparent);
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(201, 168, 76, 0.1);
}

.chandelier-2 {
    top: 0;
    right: 15%;
    animation-delay: 2s;
}

.chandelier-2::before {
    content: '';
    display: block;
    width: 2px;
    height: 35px;
    background: linear-gradient(180deg, rgba(201, 168, 76, 0.25), rgba(201, 168, 76, 0.08));
    margin: 0 auto;
}

.chandelier-2::after {
    content: '';
    display: block;
    width: 25px;
    height: 12px;
    border-radius: 0 0 50% 50%;
    background: radial-gradient(ellipse, rgba(201, 168, 76, 0.15), transparent);
    margin: 0 auto;
    box-shadow: 0 5px 12px rgba(201, 168, 76, 0.08);
}

/* === CHAMPAGNE BUBBLES (JS-enhanced) === */
.champagne-bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(201, 168, 76, 0.3), rgba(201, 168, 76, 0.05));
    border: 1px solid rgba(201, 168, 76, 0.15);
    animation: champagneBubble 4s ease-out infinite;
    pointer-events: none;
    z-index: 1;
}

/* === HEADER === */
.site-header {
    background: linear-gradient(180deg, #0A1628 0%, #0E1E35 100%);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    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(201, 168, 76, 0.3));
}

.header-time {
    color: #F8F8F8;
    font-size: 14px;
    opacity: 0.7;
}

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

.btn-login {
    padding: 8px 20px;
    border: 1px solid rgba(201, 168, 76, 0.5);
    border-radius: 4px;
    color: #C9A84C;
    font-weight: 500;
    font-size: 13px;
    transition: all 0.3s;
}

.btn-login:hover {
    background: rgba(201, 168, 76, 0.1);
    border-color: #C9A84C;
    color: #C9A84C;
}

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

.btn-register:hover {
    background: linear-gradient(135deg, #A68A3E, #C9A84C);
    color: #0A1628;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

.btn-demo {
    padding: 8px 20px;
    border: 1px solid rgba(248, 248, 248, 0.3);
    border-radius: 4px;
    color: #F8F8F8;
    font-weight: 500;
    font-size: 13px;
    transition: all 0.3s;
}

.btn-demo:hover {
    border-color: #F8F8F8;
    color: #fff;
    background: rgba(248, 248, 248, 0.05);
}

/* === NAVIGATION === */
.main-navigation {
    background: rgba(10, 22, 40, 0.95);
    border-top: 1px solid rgba(201, 168, 76, 0.08);
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

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

.nav-item {
    position: relative;
}

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

.nav-link:hover {
    color: #C9A84C;
    background: rgba(201, 168, 76, 0.05);
    text-shadow: 0 0 10px rgba(201, 168, 76, 0.3);
}

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

.has-dropdown .nav-link::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 5px;
    font-size: 10px;
}

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

/* === NOTIFICATION BAR === */
.notification-bar {
    background: linear-gradient(90deg, #0E1E35, #1E3A5F, #0E1E35);
    padding: 8px 0;
    overflow: hidden;
    border-top: 1px solid rgba(201, 168, 76, 0.05);
}

.notification-content {
    display: flex;
    gap: 60px;
    white-space: nowrap;
    animation: notificationScroll 30s linear infinite;
    color: #F8F8F8;
    font-size: 13px;
    opacity: 0.8;
}

.notification-content span {
    color: #C9A84C;
}

/* === ANNOUNCEMENT MODAL === */
.announcement-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    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(10, 22, 40, 0.9);
}

.announcement-content {
    position: relative;
    background: linear-gradient(135deg, #0E1E35, #1E3A5F);
    border: 2px solid rgba(201, 168, 76, 0.3);
    border-radius: 16px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 0 40px rgba(201, 168, 76, 0.1);
}

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

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

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

.announcement-header-icon i {
    font-size: 48px;
    color: #C9A84C;
    animation: floatUp 3s ease-in-out infinite;
}

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

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

.announcement-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(10, 22, 40, 0.5);
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: 8px;
    transition: all 0.3s;
}

.announcement-item:hover {
    background: rgba(201, 168, 76, 0.05);
    border-color: rgba(201, 168, 76, 0.3);
}

.announcement-badge {
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    min-width: 40px;
    text-align: center;
}

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

.announcement-badge.new {
    background: #00cc66;
    color: #fff;
}

.announcement-badge.info {
    background: #3399ff;
    color: #fff;
}

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

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

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

.announcement-cta {
    display: inline-block;
    padding: 12px 40px;
    background: linear-gradient(135deg, #C9A84C, #A68A3E);
    color: #0A1628;
    font-weight: 700;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s;
}

.announcement-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.4);
    color: #0A1628;
}

/* === BUTTONS === */
.btn-gold-primary {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(135deg, #C9A84C, #A68A3E);
    color: #0A1628;
    font-weight: 700;
    font-size: 16px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-gold-primary:hover {
    background: linear-gradient(135deg, #A68A3E, #C9A84C);
    color: #0A1628;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.4);
    text-shadow: none;
}

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

.btn-outline-gold:hover {
    background: rgba(201, 168, 76, 0.1);
    color: #C9A84C;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.2);
}

/* === SECTION COMMON === */
.section-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 10px;
    font-family: 'Didact Gothic', sans-serif;
    letter-spacing: 2px;
}

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

.section-subtitle {
    text-align: center;
    color: #F8F8F8;
    opacity: 0.7;
    font-size: 15px;
    margin-bottom: 40px;
}

/* === 1. MONACO HERO === */
.monaco-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #0A1628 0%, #0E1E35 40%, #1E3A5F 100%);
    border-radius: 12px;
    margin: 20px 0;
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, 0.1);
}

.hero-inner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
    max-width: 800px;
}

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

.hero-brand {
    display: block;
    font-size: 56px;
    font-weight: 700;
    color: #C9A84C;
    letter-spacing: 8px;
    text-shadow: 0 0 30px rgba(201, 168, 76, 0.4);
    font-family: 'Didact Gothic', sans-serif;
}

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

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

.hero-description {
    font-size: 16px;
    color: #F8F8F8;
    opacity: 0.85;
    margin-bottom: 30px;
    line-height: 1.8;
}

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

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

.hero-stat-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #C9A84C;
    font-family: 'Didact Gothic', sans-serif;
}

.hero-stat-label {
    display: block;
    font-size: 12px;
    color: #F8F8F8;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

/* === 2. STAR GAMES === */
.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, #0E1E35, #1E3A5F);
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s;
    overflow: hidden;
    display: block;
}

.star-game-card:hover {
    border-color: rgba(201, 168, 76, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(201, 168, 76, 0.1);
}

.star-game-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.03) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
}

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

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

.star-game-icon i {
    font-size: 40px;
    color: #C9A84C;
    filter: drop-shadow(0 0 10px rgba(201, 168, 76, 0.3));
}

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

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

.star-game-card h3 {
    font-size: 18px;
    color: #F8F8F8;
    margin-bottom: 10px;
    font-family: 'Didact Gothic', sans-serif;
}

.star-game-card p {
    font-size: 13px;
    color: #F8F8F8;
    opacity: 0.7;
    line-height: 1.6;
    margin-bottom: 15px;
}

.star-game-players {
    font-size: 12px;
    color: #C9A84C;
    opacity: 0.8;
}

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

/* === 3. MARINA GRID (3x4 Game Grid) === */
.marina-grid {
    padding: 60px 0;
    background: linear-gradient(180deg, rgba(14, 30, 53, 0.5), rgba(30, 58, 95, 0.5));
    border-radius: 12px;
    margin: 20px 0;
    border: 1px solid rgba(201, 168, 76, 0.08);
}

.marina-grid-map {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 20px;
}

.marina-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.marina-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px;
    transition: all 0.3s;
}

.marina-node:hover {
    transform: scale(1.1);
}

.node-anchor {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1E3A5F, #24466E);
    border: 2px solid rgba(201, 168, 76, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    animation: pulseGlow 3s ease-in-out infinite;
}

.marina-node:hover .node-anchor {
    border-color: #C9A84C;
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.4);
}

.node-anchor i {
    color: #C9A84C;
    font-size: 18px;
}

.node-label {
    font-size: 12px;
    color: #F8F8F8;
    text-align: center;
    font-weight: 500;
}

.marina-line {
    flex: 1;
    max-width: 80px;
    height: 0;
    border-bottom: 2px dotted rgba(201, 168, 76, 0.3);
}

/* === 4. MARINA FEATURES === */
.marina-features {
    padding: 60px 0;
}

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

.marina-feature-card {
    background: linear-gradient(135deg, #0E1E35, #1E3A5F);
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s;
}

.marina-feature-card:hover {
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(201, 168, 76, 0.08);
}

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

/* Anchor Icon CSS */
.anchor-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C9A84C, #A68A3E);
    position: relative;
    margin: 0 auto;
    box-shadow: 0 0 15px rgba(201, 168, 76, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.anchor-icon::after {
    content: '\f13d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #0A1628;
    font-size: 18px;
}

.marina-feature-card h3 {
    font-size: 16px;
    color: #F8F8F8;
    margin-bottom: 12px;
    font-family: 'Didact Gothic', sans-serif;
}

.marina-feature-card p {
    font-size: 13px;
    color: #F8F8F8;
    opacity: 0.7;
    line-height: 1.7;
}

/* === 5. MARINA STATS === */
.marina-stats {
    position: relative;
    padding: 60px 0;
    background: linear-gradient(180deg, #0A1628, #0E1E35);
    border-radius: 12px;
    margin: 20px 0;
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, 0.08);
}

.marina-stats-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

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

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

.marina-stat-card {
    background: rgba(14, 30, 53, 0.8);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.marina-stat-card:hover {
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-3px);
}

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

.stat-anchor-decoration i {
    color: #C9A84C;
    font-size: 14px;
    animation: floatUp 3s ease-in-out infinite;
}

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

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #F8F8F8;
    font-family: 'Didact Gothic', sans-serif;
    margin-bottom: 8px;
    text-shadow: 0 0 20px rgba(248, 248, 248, 0.2);
}

.stat-label {
    font-size: 13px;
    color: #F8F8F8;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* === 6. MARINA PROMOTIONS === */
.marina-promos {
    padding: 60px 0;
}

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

.marina-promo-card {
    position: relative;
    background: linear-gradient(135deg, #0E1E35, #1E3A5F);
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s;
}

.marina-promo-card:hover {
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(201, 168, 76, 0.1);
}

.promo-marble-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(248, 248, 248, 0.01) 0%,
        rgba(201, 168, 76, 0.02) 50%,
        rgba(248, 248, 248, 0.01) 100%
    );
    background-size: 200% 200%;
    animation: marbleShimmer 8s ease-in-out infinite;
}

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

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

.marina-promo-inner .promo-icon i {
    font-size: 40px;
    color: #C9A84C;
}

.marina-promo-inner h3 {
    font-size: 18px;
    color: #C9A84C;
    margin-bottom: 12px;
    font-family: 'Didact Gothic', sans-serif;
}

.marina-promo-inner p {
    font-size: 13px;
    color: #F8F8F8;
    opacity: 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: #F8F8F8;
    opacity: 0.6;
}

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

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

.promo-badge.new {
    background: #00cc66;
    color: #fff;
}

.promo-badge.vip {
    background: #C9A84C;
    color: #0A1628;
}

.btn-promo {
    display: inline-block;
    padding: 10px 30px;
    background: linear-gradient(135deg, #C9A84C, #A68A3E);
    color: #0A1628;
    font-weight: 700;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-promo:hover {
    background: linear-gradient(135deg, #A68A3E, #C9A84C);
    color: #0A1628;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
    text-shadow: none;
}

/* === 7. FOOTER CTA === */
.footer-cta-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(180deg, #0A1628, #0E1E35, #1E3A5F);
    border-radius: 12px;
    margin: 20px 0;
    overflow: hidden;
    text-align: center;
    border: 1px solid rgba(201, 168, 76, 0.08);
}

.footer-cta-marble {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

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

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

.cta-anchor-outer {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C9A84C, #A68A3E);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.3);
}

.cta-anchor-outer::after {
    content: '\f13d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #0A1628;
    font-size: 22px;
}

.footer-cta-inner h2 {
    font-size: 36px;
    color: #C9A84C;
    margin-bottom: 15px;
    font-family: 'Didact Gothic', sans-serif;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(201, 168, 76, 0.3);
}

.footer-cta-inner p {
    font-size: 16px;
    color: #F8F8F8;
    opacity: 0.85;
    margin-bottom: 25px;
    line-height: 1.7;
}

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

.cta-feature {
    font-size: 14px;
    color: #F8F8F8;
    opacity: 0.8;
}

.cta-feature i {
    color: #C9A84C;
    margin-right: 6px;
}

.cta-main-btn {
    font-size: 18px;
    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, #0E1E35, #1E3A5F);
    border: 1px solid rgba(201, 168, 76, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    display: block;
}

.article-card:hover {
    border-color: rgba(201, 168, 76, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

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

.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: #F8F8F8;
    line-height: 1.4;
    min-height: 55px;
}

.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: #F8F8F8;
    opacity: 0.5;
    display: flex;
    gap: 15px;
}

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

.article-card-excerpt {
    padding: 10px 15px 15px;
    font-size: 13px;
    color: #F8F8F8;
    opacity: 0.65;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card-more {
    display: block;
    padding: 12px 15px;
    border-top: 1px solid rgba(201, 168, 76, 0.08);
    color: #C9A84C;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s;
}

.article-card-more:hover {
    background: rgba(201, 168, 76, 0.05);
}

.article-card-more i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.article-card:hover .article-card-more i {
    transform: translateX(3px);
}

.view-more-btn {
    display: block;
    text-align: center;
    padding: 12px 30px;
    border: 2px solid #C9A84C;
    border-radius: 8px;
    color: #C9A84C;
    font-weight: 600;
    font-size: 14px;
    max-width: 200px;
    margin: 0 auto;
    transition: all 0.3s;
}

.view-more-btn:hover {
    background: rgba(201, 168, 76, 0.1);
    color: #C9A84C;
    transform: translateY(-2px);
}

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

/* === FOOTER === */
.site-footer {
    background: linear-gradient(180deg, #0A1628 0%, #070E1A 100%);
    border-top: 2px solid rgba(201, 168, 76, 0.1);
    padding: 50px 0 20px;
    margin-top: 40px;
}

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

.footer-col h4 {
    color: #C9A84C;
    font-size: 15px;
    margin-bottom: 15px;
    font-family: 'Didact Gothic', sans-serif;
    letter-spacing: 1px;
}

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

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

.footer-col ul li a {
    color: #F8F8F8;
    opacity: 0.6;
    font-size: 13px;
    transition: all 0.3s;
}

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

.footer-brand-logo img {
    height: 40px;
    margin-bottom: 12px;
    filter: drop-shadow(0 0 5px rgba(201, 168, 76, 0.2));
}

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

.footer-18plus {
    display: inline-block;
    padding: 4px 12px;
    border: 2px solid #ff4444;
    border-radius: 4px;
    color: #ff4444;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 12px;
}

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

.footer-social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F8F8F8;
    transition: all 0.3s;
}

.footer-social-links a:hover {
    border-color: #C9A84C;
    color: #C9A84C;
    background: rgba(201, 168, 76, 0.1);
}

/* Footer License */
.footer-license-bar {
    border-top: 1px solid rgba(201, 168, 76, 0.08);
    padding-top: 25px;
    margin-bottom: 20px;
    text-align: center;
}

.footer-license-bar h4 {
    color: #C9A84C;
    font-size: 14px;
    margin-bottom: 15px;
    font-family: 'Didact Gothic', sans-serif;
}

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

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

.license-item i {
    font-size: 24px;
    color: #C9A84C;
    opacity: 0.6;
}

.license-item span {
    font-size: 11px;
    color: #F8F8F8;
    opacity: 0.5;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(201, 168, 76, 0.05);
    padding-top: 15px;
    text-align: center;
}

.footer-copyright {
    font-size: 13px;
    color: #F8F8F8;
    opacity: 0.5;
    margin-bottom: 5px;
}

.footer-disclaimer {
    font-size: 12px;
    color: #F8F8F8;
    opacity: 0.35;
}

/* === SIDEBAR FLOATING === */
.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;
    border-radius: 50%;
    background: linear-gradient(135deg, #0E1E35, #1E3A5F);
    border: 1px solid rgba(201, 168, 76, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C9A84C;
    font-size: 18px;
    transition: all 0.3s;
    position: relative;
}

.sidebar-btn:hover {
    background: rgba(201, 168, 76, 0.1);
    border-color: #C9A84C;
    transform: scale(1.1);
    color: #C9A84C;
}

.sidebar-btn-facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: #fff;
}

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

.sidebar-label {
    display: none;
    position: absolute;
    right: 55px;
    background: #0E1E35;
    color: #C9A84C;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    border: 1px solid rgba(201, 168, 76, 0.2);
}

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

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

.breadcrumb a {
    color: #C9A84C;
    opacity: 0.8;
}

.breadcrumb a:hover {
    opacity: 1;
}

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

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

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

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

.category-desc {
    font-size: 14px;
    color: #F8F8F8;
    opacity: 0.7;
}

/* === PROVIDER TABS === */
.provider-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    padding: 0 15px;
}

.provider-tab {
    padding: 8px 18px;
    background: rgba(14, 30, 53, 0.5);
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: 20px;
    color: #F8F8F8;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
}

.provider-tab:hover,
.provider-tab.active {
    background: rgba(201, 168, 76, 0.1);
    border-color: #C9A84C;
    color: #C9A84C;
}

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

.no-posts {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #F8F8F8;
    opacity: 0.5;
}

/* === PAGINATION === */
.pagination {
    margin-top: 30px;
    text-align: center;
}

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

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(14, 30, 53, 0.5);
    border: 1px solid rgba(201, 168, 76, 0.12);
    color: #F8F8F8;
    font-size: 14px;
    transition: all 0.3s;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: rgba(201, 168, 76, 0.15);
    border-color: #C9A84C;
    color: #C9A84C;
}

/* === SINGLE ARTICLE === */
.single-article {
    background: linear-gradient(135deg, #0E1E35, #1E3A5F);
    border: 1px solid rgba(201, 168, 76, 0.08);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
}

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

.article-title {
    font-size: 28px;
    color: #F8F8F8;
    margin-bottom: 15px;
    font-family: 'Didact Gothic', sans-serif;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 13px;
    color: #F8F8F8;
    opacity: 0.6;
}

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

.article-meta a {
    color: #C9A84C;
    opacity: 1;
}

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

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

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

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

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

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

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

.article-content blockquote {
    border-left: 3px solid #C9A84C;
    padding: 15px 20px;
    margin: 20px 0;
    background: rgba(201, 168, 76, 0.03);
    border-radius: 0 8px 8px 0;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 20px 0;
    border-top: 1px solid rgba(201, 168, 76, 0.08);
    margin-top: 25px;
}

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

.article-tags span {
    padding: 4px 12px;
    background: rgba(201, 168, 76, 0.08);
    border-radius: 15px;
    font-size: 12px;
    color: #C9A84C;
}

.article-nav {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1px solid rgba(201, 168, 76, 0.08);
}

.article-nav-prev a,
.article-nav-next a {
    color: #C9A84C;
    font-size: 14px;
}

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

.related-posts-title {
    font-size: 20px;
    margin-bottom: 20px;
    font-family: 'Didact Gothic', sans-serif;
}

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

.related-item {
    background: linear-gradient(135deg, #0E1E35, #1E3A5F);
    border: 1px solid rgba(201, 168, 76, 0.08);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
    display: block;
}

.related-item:hover {
    border-color: rgba(201, 168, 76, 0.2);
    transform: translateY(-2px);
}

.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: #F8F8F8;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* === PAGE ARTICLE === */
.page-article {
    background: linear-gradient(135deg, #0E1E35, #1E3A5F);
    border: 1px solid rgba(201, 168, 76, 0.08);
    border-radius: 12px;
    padding: 30px;
}

.page-title {
    font-size: 28px;
    color: #F8F8F8;
    margin-bottom: 20px;
    font-family: 'Didact Gothic', sans-serif;
}

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

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

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

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

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

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

.error-anchor-icon {
    margin: 0 auto 30px;
}

.error-anchor-icon i {
    font-size: 80px;
    color: #C9A84C;
    animation: floatUp 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(201, 168, 76, 0.3));
}

.error-code {
    font-size: 80px;
    color: #C9A84C;
    font-family: 'Didact Gothic', sans-serif;
    text-shadow: 0 0 30px rgba(201, 168, 76, 0.3);
    margin-bottom: 10px;
}

.error-title {
    font-size: 24px;
    color: #F8F8F8;
    margin-bottom: 15px;
    font-family: 'Didact Gothic', sans-serif;
}

.error-desc {
    font-size: 15px;
    color: #F8F8F8;
    opacity: 0.7;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* === SWIPER CUSTOMIZATION === */
.swiper-pagination-bullet {
    background: #F8F8F8;
    opacity: 0.4;
}

.swiper-pagination-bullet-active {
    background: #C9A84C;
    opacity: 1;
}

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

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

/* === UTILITY CLASSES === */
.text-center { text-align: center; }
.text-gold { color: #C9A84C; }
.text-white { color: #F8F8F8; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }

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

::-webkit-scrollbar-track {
    background: #0A1628;
}

::-webkit-scrollbar-thumb {
    background: rgba(201, 168, 76, 0.2);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(201, 168, 76, 0.4);
}

/* === SELECTION === */
::selection {
    background: rgba(201, 168, 76, 0.3);
    color: #fff;
}
