/* ============================================
   ATLANTIC88 THEME - main.css (moban-72)
   World Casino - Atlantic City Boardwalk Theme
   Colors: #023E8A bg, #0077B6 blue, #ADB5BD silver, #F8F9FA white
   Fonts: Merriweather (headings) + Open Sans (body)
   ============================================ */

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

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

body {
    font-family: 'Open Sans', sans-serif;
    background: #023E8A;
    color: #F8F9FA;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

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

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

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

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

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

.silver-text {
    color: #ADB5BD;
}

.blue-text {
    color: #0077B6;
}

/* === KEYFRAME ANIMATIONS === */
@keyframes waveCrash {
    0% {
        transform: translateX(-100%) scaleY(1);
        opacity: 0.8;
    }
    25% {
        transform: translateX(-50%) scaleY(1.2);
        opacity: 1;
    }
    50% {
        transform: translateX(0%) scaleY(0.8);
        opacity: 0.9;
    }
    75% {
        transform: translateX(50%) scaleY(1.1);
        opacity: 0.7;
    }
    100% {
        transform: translateX(100%) scaleY(1);
        opacity: 0.5;
    }
}

@keyframes boardwalkLight {
    0%, 100% {
        box-shadow: 0 0 10px rgba(173, 181, 189, 0.3), 0 0 20px rgba(173, 181, 189, 0.1);
        opacity: 0.7;
    }
    25% {
        box-shadow: 0 0 20px rgba(173, 181, 189, 0.6), 0 0 40px rgba(173, 181, 189, 0.3);
        opacity: 1;
    }
    50% {
        box-shadow: 0 0 15px rgba(0, 119, 182, 0.5), 0 0 30px rgba(0, 119, 182, 0.2);
        opacity: 0.9;
    }
    75% {
        box-shadow: 0 0 25px rgba(173, 181, 189, 0.8), 0 0 50px rgba(173, 181, 189, 0.4);
        opacity: 1;
    }
}

@keyframes seagullGlide {
    0% {
        transform: translateX(-100px) translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% {
        transform: translateX(200px) translateY(-30px) rotate(-5deg);
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(500px) translateY(10px) rotate(5deg);
        opacity: 0;
    }
}

@keyframes tidePull {
    0% {
        transform: translateY(0) scaleX(1);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-5px) scaleX(1.02);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-10px) scaleX(1.05);
        opacity: 1;
    }
    75% {
        transform: translateY(-5px) scaleX(1.02);
        opacity: 0.8;
    }
    100% {
        transform: translateY(0) scaleX(1);
        opacity: 0.6;
    }
}

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

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

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

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* === HEADER === */
.site-header {
    background: linear-gradient(180deg, #012A4A 0%, #023E8A 100%);
    border-bottom: 3px solid #0077B6;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 119, 182, 0.3);
}

.logo img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(0, 119, 182, 0.5));
}

.header-time {
    font-family: 'Merriweather', serif;
    font-size: 14px;
    color: #ADB5BD;
    background: rgba(0, 119, 182, 0.15);
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid rgba(0, 119, 182, 0.3);
}

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

.btn-login {
    background: transparent;
    color: #ADB5BD;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 13px;
    border: 2px solid #ADB5BD;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-login:hover {
    background: #ADB5BD;
    color: #023E8A;
    box-shadow: 0 0 15px rgba(173, 181, 189, 0.5);
}

.btn-register {
    background: linear-gradient(135deg, #0077B6, #00B4D8);
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 13px;
    border: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-register:hover {
    background: linear-gradient(135deg, #00B4D8, #0077B6);
    box-shadow: 0 0 20px rgba(0, 119, 182, 0.6);
    transform: translateY(-2px);
}

.btn-demo {
    background: transparent;
    color: #F8F9FA;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 13px;
    border: 2px solid rgba(248, 249, 250, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-demo:hover {
    border-color: #F8F9FA;
    background: rgba(248, 249, 250, 0.1);
}

/* === NAVIGATION === */
.main-navigation {
    background: rgba(1, 42, 74, 0.8);
    border-bottom: 2px solid rgba(0, 119, 182, 0.2);
}

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

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 10px 15px;
    color: #F8F9FA;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.nav-link:hover {
    color: #0077B6;
    background: rgba(0, 119, 182, 0.1);
    text-shadow: none;
}

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

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

/* === NOTIFICATION BAR === */
.notification-bar {
    background: linear-gradient(90deg, #0077B6, #023E8A, #0077B6);
    overflow: hidden;
    padding: 10px 0;
    position: relative;
}

.notification-content {
    display: flex;
    gap: 50px;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

.notification-content span {
    font-size: 13px;
    color: #F8F9FA;
    font-weight: 600;
}

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

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

.announcement-modal.active {
    display: flex;
}

.announcement-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 62, 138, 0.85);
    backdrop-filter: blur(5px);
}

.announcement-content {
    position: relative;
    background: linear-gradient(135deg, #012A4A, #023E8A);
    border: 2px solid #0077B6;
    border-radius: 15px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    z-index: 1;
    box-shadow: 0 0 40px rgba(0, 119, 182, 0.3);
    animation: fadeInUp 0.5s ease;
}

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

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

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

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

.announcement-title {
    text-align: center;
    font-size: 18px;
    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: 12px;
    padding: 12px;
    background: rgba(0, 119, 182, 0.1);
    border: 1px solid rgba(0, 119, 182, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.announcement-item:hover {
    background: rgba(0, 119, 182, 0.2);
    border-color: #0077B6;
    transform: translateX(5px);
}

.announcement-badge {
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    min-width: 45px;
    text-align: center;
}

.announcement-badge.hot {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #fff;
}

.announcement-badge.new {
    background: linear-gradient(135deg, #0077B6, #00B4D8);
    color: #fff;
}

.announcement-badge.info {
    background: linear-gradient(135deg, #ADB5BD, #6c757d);
    color: #fff;
}

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

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

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

.announcement-cta {
    display: inline-block;
    background: linear-gradient(135deg, #0077B6, #00B4D8);
    color: #fff;
    padding: 12px 40px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.announcement-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 119, 182, 0.5);
}

/* === HERO SECTION === */
.atlantic-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(180deg, #012A4A 0%, #023E8A 40%, #0077B6 100%);
    border-radius: 15px;
    margin: 20px 0;
    border: 2px solid rgba(0, 119, 182, 0.3);
}

/* Ocean Waves */
.ocean-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.wave-layer {
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 300%;
    height: 100%;
}

.wave-1 {
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 50px,
        rgba(0, 180, 216, 0.15) 50px,
        rgba(0, 180, 216, 0.15) 100px
    );
    animation: waveCrash 8s linear infinite;
    border-radius: 50% 50% 0 0;
}

.wave-2 {
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 30px,
        rgba(0, 119, 182, 0.1) 30px,
        rgba(0, 119, 182, 0.1) 60px
    );
    animation: waveCrash 12s linear infinite reverse;
    bottom: 10px;
}

.wave-3 {
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 70px,
        rgba(173, 181, 189, 0.08) 70px,
        rgba(173, 181, 189, 0.08) 140px
    );
    animation: waveCrash 15s linear infinite;
    bottom: 20px;
}

/* Boardwalk Rail */
.boardwalk-rail {
    position: absolute;
    bottom: 120px;
    left: 0;
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: space-around;
    padding: 0 30px;
}

.rail-post {
    width: 6px;
    height: 40px;
    background: linear-gradient(180deg, #ADB5BD, #6c757d);
    border-radius: 3px;
    position: relative;
}

.rail-post::before {
    content: '';
    position: absolute;
    top: 5px;
    left: -20px;
    width: 46px;
    height: 3px;
    background: #ADB5BD;
    border-radius: 2px;
}

/* Boardwalk Lights */
.boardwalk-lights {
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    padding: 0 50px;
}

.boardwalk-light {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ADB5BD;
    animation: boardwalkLight 3s ease-in-out infinite;
}

.boardwalk-light.light-1 { animation-delay: 0s; }
.boardwalk-light.light-2 { animation-delay: 0.75s; }
.boardwalk-light.light-3 { animation-delay: 1.5s; }
.boardwalk-light.light-4 { animation-delay: 2.25s; }

/* Seagulls */
.seagull {
    position: absolute;
    width: 30px;
    height: 8px;
    background: transparent;
    border-top: 3px solid rgba(248, 249, 250, 0.6);
    border-radius: 50%;
}

.seagull::before, .seagull::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 8px;
    border-top: 3px solid rgba(248, 249, 250, 0.6);
    border-radius: 50%;
}

.seagull::before { left: -12px; top: -3px; transform: rotate(-20deg); }
.seagull::after { right: -12px; top: -3px; transform: rotate(20deg); }

.seagull-1 {
    top: 60px;
    left: -50px;
    animation: seagullGlide 15s ease-in-out infinite;
}

.seagull-2 {
    top: 90px;
    left: -80px;
    animation: seagullGlide 18s ease-in-out infinite;
    animation-delay: 5s;
}

/* Art Deco Pattern */
.art-deco-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 40px,
            rgba(0, 119, 182, 0.03) 40px,
            rgba(0, 119, 182, 0.03) 41px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 40px,
            rgba(173, 181, 189, 0.03) 40px,
            rgba(173, 181, 189, 0.03) 41px
        );
    pointer-events: none;
}

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

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

.hero-brand {
    display: block;
    font-family: 'Merriweather', serif;
    font-size: 56px;
    font-weight: 900;
    color: #F8F9FA;
    letter-spacing: 8px;
    text-shadow: 0 0 30px rgba(0, 119, 182, 0.5), 0 4px 10px rgba(0, 0, 0, 0.3);
    animation: shimmer 3s ease-in-out infinite;
    background: linear-gradient(90deg, #F8F9FA, #ADB5BD, #F8F9FA);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.hero-tagline {
    display: block;
    font-size: 20px;
    color: #ADB5BD;
    letter-spacing: 5px;
    font-weight: 400;
    text-transform: uppercase;
}

.hero-description {
    font-size: 16px;
    color: rgba(248, 249, 250, 0.85);
    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: 30px;
    flex-wrap: wrap;
}

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

.hero-stat-number {
    display: block;
    font-family: 'Merriweather', serif;
    font-size: 28px;
    font-weight: 900;
    color: #0077B6;
}

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

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

.btn-silver-primary {
    display: inline-block;
    background: linear-gradient(135deg, #0077B6, #00B4D8);
    color: #fff;
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 119, 182, 0.4);
}

.btn-silver-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 119, 182, 0.6);
    color: #fff;
}

.btn-outline-silver {
    display: inline-block;
    background: transparent;
    color: #ADB5BD;
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid #ADB5BD;
}

.btn-outline-silver:hover {
    background: rgba(173, 181, 189, 0.1);
    border-color: #F8F9FA;
    color: #F8F9FA;
    transform: translateY(-3px);
}

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

.section-title i {
    margin-right: 10px;
    color: #0077B6;
}

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

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

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

.coastal-game-card {
    background: linear-gradient(135deg, #012A4A, #023E8A);
    border: 2px solid rgba(0, 119, 182, 0.3);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    display: block;
}

.coastal-game-card:hover {
    transform: translateY(-8px);
    border-color: #0077B6;
    box-shadow: 0 15px 40px rgba(0, 119, 182, 0.3);
}

.coastal-game-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 119, 182, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.coastal-game-icon {
    font-size: 40px;
    color: #0077B6;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.coastal-game-rating {
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

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

.coastal-game-card h3 {
    color: #F8F9FA;
    font-size: 18px;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.coastal-game-card p {
    color: rgba(248, 249, 250, 0.7);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.coastal-game-players {
    color: #0077B6;
    font-size: 12px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.coastal-game-players i {
    margin-right: 5px;
}

/* === BOARDWALK GRID (3x4) === */
.boardwalk-grid {
    padding: 50px 0;
    background: rgba(1, 42, 74, 0.3);
    border-radius: 15px;
    margin: 20px 0;
}

.boardwalk-game-map {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 30px;
}

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

.boardwalk-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 25px;
    background: rgba(0, 119, 182, 0.1);
    border: 2px solid rgba(0, 119, 182, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
    min-width: 130px;
    text-align: center;
}

.boardwalk-node:hover {
    background: rgba(0, 119, 182, 0.2);
    border-color: #0077B6;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 119, 182, 0.2);
}

.node-wave {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0077B6, #00B4D8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    animation: tidePull 4s ease-in-out infinite;
}

.boardwalk-node:nth-child(2) .node-wave { animation-delay: 0.5s; }
.boardwalk-node:nth-child(3) .node-wave { animation-delay: 1s; }
.boardwalk-node:nth-child(4) .node-wave { animation-delay: 1.5s; }

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

/* === COASTAL FEATURES === */
.coastal-features {
    padding: 50px 0;
}

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

.coastal-feature-card {
    background: linear-gradient(135deg, #012A4A, #023E8A);
    border: 2px solid rgba(0, 119, 182, 0.2);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
}

.coastal-feature-card:hover {
    transform: translateY(-8px);
    border-color: #0077B6;
    box-shadow: 0 15px 35px rgba(0, 119, 182, 0.2);
}

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

.art-deco-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    border-radius: 50%;
    background: linear-gradient(135deg, #0077B6, #00B4D8);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.art-deco-icon::before {
    content: '⚓';
    font-size: 24px;
    color: #fff;
}

.coastal-feature-card h3 {
    color: #F8F9FA;
    font-size: 16px;
    margin-bottom: 12px;
}

.coastal-feature-card p {
    color: rgba(248, 249, 250, 0.7);
    font-size: 13px;
    line-height: 1.7;
}

/* === TIDE STATS === */
.tide-stats {
    padding: 50px 0;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin: 20px 0;
}

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

.wave-stats {
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 40px,
        rgba(0, 119, 182, 0.05) 40px,
        rgba(0, 119, 182, 0.05) 80px
    );
    animation: waveCrash 20s linear infinite;
}

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

.tide-stat-card {
    background: linear-gradient(135deg, rgba(1, 42, 74, 0.9), rgba(2, 62, 138, 0.9));
    border: 2px solid rgba(0, 119, 182, 0.3);
    border-radius: 15px;
    padding: 30px 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.tide-stat-card:hover {
    transform: translateY(-5px);
    border-color: #0077B6;
    box-shadow: 0 10px 30px rgba(0, 119, 182, 0.3);
}

.stat-wave-decoration {
    color: #0077B6;
    font-size: 18px;
    margin-bottom: 10px;
    animation: waveFloat 2s ease-in-out infinite;
}

.stat-wave-decoration.bottom {
    margin-bottom: 0;
    margin-top: 10px;
    animation-delay: 1s;
}

.stat-number {
    font-family: 'Merriweather', serif;
    font-size: 36px;
    font-weight: 900;
    color: #0077B6;
    margin-bottom: 5px;
}

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

/* === COASTAL PROMOS === */
.coastal-promos {
    padding: 50px 0;
}

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

.coastal-promo-card {
    background: linear-gradient(135deg, #012A4A, #023E8A);
    border: 2px solid rgba(0, 119, 182, 0.3);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
}

.coastal-promo-card:hover {
    transform: translateY(-8px);
    border-color: #0077B6;
    box-shadow: 0 15px 40px rgba(0, 119, 182, 0.3);
}

.promo-wave-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 20px,
        rgba(0, 119, 182, 0.05) 20px,
        rgba(0, 119, 182, 0.05) 40px
    );
    animation: tidePull 6s ease-in-out infinite;
}

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

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

.coastal-promo-inner h3 {
    color: #F8F9FA;
    font-size: 16px;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.coastal-promo-inner p {
    color: rgba(248, 249, 250, 0.7);
    font-size: 13px;
    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: #ADB5BD;
}

.promo-badge {
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.promo-badge.hot {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #fff;
}

.promo-badge.new {
    background: linear-gradient(135deg, #0077B6, #00B4D8);
    color: #fff;
}

.promo-badge.vip {
    background: linear-gradient(135deg, #ADB5BD, #6c757d);
    color: #fff;
}

.btn-promo {
    display: inline-block;
    background: linear-gradient(135deg, #0077B6, #00B4D8);
    color: #fff;
    padding: 10px 30px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-promo:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 119, 182, 0.5);
    color: #fff;
}

/* === FOOTER CTA === */
.footer-cta-section {
    position: relative;
    padding: 60px 30px;
    text-align: center;
    border-radius: 15px;
    overflow: hidden;
    margin: 30px 0;
    background: linear-gradient(135deg, #012A4A, #023E8A);
    border: 2px solid rgba(0, 119, 182, 0.3);
}

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

.wave-cta {
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 60px,
        rgba(0, 119, 182, 0.04) 60px,
        rgba(0, 119, 182, 0.04) 120px
    );
    animation: waveCrash 25s linear infinite;
}

.footer-cta-inner {
    position: relative;
    z-index: 1;
}

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

.cta-lighthouse {
    width: 40px;
    height: 60px;
    margin: 0 auto;
    background: linear-gradient(180deg, #ADB5BD, #6c757d);
    border-radius: 5px 5px 0 0;
    position: relative;
    animation: boardwalkLight 4s ease-in-out infinite;
}

.cta-lighthouse::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: #0077B6;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 119, 182, 0.6);
}

.footer-cta-inner h2 {
    font-size: 28px;
    color: #F8F9FA;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.footer-cta-inner p {
    color: rgba(248, 249, 250, 0.8);
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto 25px;
    line-height: 1.7;
}

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

.cta-feature {
    color: #ADB5BD;
    font-size: 14px;
    font-weight: 600;
}

.cta-feature i {
    color: #0077B6;
    margin-right: 8px;
}

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

/* === NEWS SECTION === */
.home-news-section {
    padding: 50px 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, #012A4A, #023E8A);
    border: 2px solid rgba(0, 119, 182, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: block;
}

.article-card:hover {
    transform: translateY(-5px);
    border-color: #0077B6;
    box-shadow: 0 10px 30px rgba(0, 119, 182, 0.2);
}

.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.1);
}

.article-card-title {
    padding: 15px 15px 8px;
    font-size: 15px;
    font-weight: 700;
    color: #F8F9FA;
    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;
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #ADB5BD;
    margin-bottom: 8px;
}

.article-card-meta i {
    margin-right: 5px;
    color: #0077B6;
}

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

.view-more-btn {
    display: block;
    text-align: center;
    padding: 14px 40px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    max-width: 250px;
    margin: 0 auto;
}

.silver-view-more {
    background: transparent;
    border: 2px solid #0077B6;
    color: #0077B6;
}

.silver-view-more:hover {
    background: #0077B6;
    color: #fff;
    text-shadow: none;
}

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

/* === 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: 10px;
    padding: 15px 0;
    font-size: 13px;
    color: #ADB5BD;
}

.breadcrumb a {
    color: #0077B6;
}

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

.breadcrumb span {
    color: #ADB5BD;
}

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

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

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

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

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

.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: 50%;
    background: rgba(0, 119, 182, 0.1);
    border: 2px solid rgba(0, 119, 182, 0.3);
    color: #ADB5BD;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

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

/* === SINGLE POST === */
.single-article {
    background: linear-gradient(135deg, #012A4A, #023E8A);
    border: 2px solid rgba(0, 119, 182, 0.2);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
}

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

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 119, 182, 0.2);
    margin-bottom: 20px;
    font-size: 13px;
    color: #ADB5BD;
}

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

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

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

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

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

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

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 119, 182, 0.2);
    margin-top: 20px;
}

.article-tags i {
    color: #0077B6;
}

.article-tags span {
    background: rgba(0, 119, 182, 0.15);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    color: #ADB5BD;
}

.article-nav {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    margin-top: 20px;
    border-top: 1px solid rgba(0, 119, 182, 0.2);
}

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

/* === RELATED POSTS === */
.related-posts {
    padding: 30px 0;
}

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

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

.related-item {
    background: linear-gradient(135deg, #012A4A, #023E8A);
    border: 1px solid rgba(0, 119, 182, 0.2);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: block;
}

.related-item:hover {
    transform: translateY(-3px);
    border-color: #0077B6;
}

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

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

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

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

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

.category-desc {
    color: rgba(248, 249, 250, 0.6);
    font-size: 14px;
}

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

.provider-tab {
    background: rgba(0, 119, 182, 0.1);
    border: 1px solid rgba(0, 119, 182, 0.3);
    color: #ADB5BD;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* === PAGE === */
.page-article {
    background: linear-gradient(135deg, #012A4A, #023E8A);
    border: 2px solid rgba(0, 119, 182, 0.2);
    border-radius: 15px;
    padding: 30px;
}

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

.page-content {
    color: rgba(248, 249, 250, 0.85);
    line-height: 1.8;
}

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

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

.error-wave {
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.error-wave-outer {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid #0077B6;
    animation: tidePull 3s ease-in-out infinite;
    margin: 0 auto;
}

.error-wave-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0077B6, #00B4D8);
    animation: waveFloat 2s ease-in-out infinite;
}

.error-code {
    font-size: 80px;
    color: #0077B6;
    margin-bottom: 10px;
    letter-spacing: 5px;
}

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

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

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

.sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0077B6, #023E8A);
    color: #F8F9FA;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid rgba(0, 119, 182, 0.5);
}

.sidebar-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 119, 182, 0.5);
    color: #fff;
}

.sidebar-btn-facebook {
    background: linear-gradient(135deg, #1877F2, #0077B6);
}

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

.sidebar-label {
    display: none;
}

/* === FOOTER === */
.site-footer {
    background: linear-gradient(180deg, #012A4A 0%, #011627 100%);
    border-top: 3px solid #0077B6;
    padding: 50px 0 30px;
    margin-top: 50px;
}

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

.footer-col h4 {
    color: #0077B6;
    font-size: 15px;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

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

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

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

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

.footer-brand-logo img {
    height: 40px;
    filter: brightness(0.8);
}

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

.footer-18plus {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background: rgba(231, 76, 60, 0.2);
    border: 2px solid #e74c3c;
    color: #e74c3c;
    font-weight: 900;
    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-radius: 50%;
    background: rgba(0, 119, 182, 0.15);
    border: 1px solid rgba(0, 119, 182, 0.3);
    color: #ADB5BD;
    font-size: 14px;
    transition: all 0.3s ease;
}

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

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

.footer-license-bar h4 {
    color: #0077B6;
    font-size: 14px;
    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: 5px;
}

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

.license-item span {
    font-size: 11px;
    color: #ADB5BD;
}

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

.footer-copyright {
    color: rgba(248, 249, 250, 0.4);
    font-size: 13px;
}

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

.no-posts p {
    color: rgba(248, 249, 250, 0.6);
    font-size: 16px;
}

/* === FEATURED IMAGE === */
.page-featured-img {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

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

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