/* ============================================
   OCEANWIN THEME - main.css (moban-88)
   Underwater Coral Reef Classic Slots Theme
   Colors: #001A2E bg, #006994 blue, #2ECC71 green, #F0FFFF white
   ============================================ */

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

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

body {
    font-family: "Catamaran", sans-serif;
    background: #001A2E;
    color: #F0FFFF;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Pacifico", cursive;
    font-weight: 600;
    line-height: 1.3;
}

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

a:hover {
    color: #F0FFFF;
    text-shadow: 0 0 10px rgba(46, 204, 113, 0.5);
}

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

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

.ocean-text {
    color: #2ECC71;
}

/* === KEYFRAME ANIMATIONS === */
@keyframes coralSway {
    0%, 100% { transform: rotate(-3deg) translateY(0); }
    25% { transform: rotate(2deg) translateY(-5px); }
    50% { transform: rotate(-1deg) translateY(-2px); }
    75% { transform: rotate(3deg) translateY(-8px); }
}

@keyframes fishSchool {
    0% { transform: translateX(-100%) translateY(0) scaleX(1); }
    45% { transform: translateX(50vw) translateY(-20px) scaleX(1); }
    50% { transform: translateX(50vw) translateY(-20px) scaleX(-1); }
    95% { transform: translateX(-100%) translateY(10px) scaleX(-1); }
    100% { transform: translateX(-100%) translateY(0) scaleX(1); }
}

@keyframes treasureBubble {
    0% { transform: translateY(100%) scale(0.5); opacity: 0; }
    20% { opacity: 0.8; }
    50% { transform: translateY(50%) scale(1); opacity: 0.6; }
    80% { opacity: 0.3; }
    100% { transform: translateY(-100vh) scale(1.5); opacity: 0; }
}

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

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

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

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

@keyframes bubbleRise {
    0% { transform: translateY(0) translateX(0); opacity: 0.7; }
    25% { transform: translateY(-25vh) translateX(10px); opacity: 0.8; }
    50% { transform: translateY(-50vh) translateX(-5px); opacity: 0.5; }
    75% { transform: translateY(-75vh) translateX(15px); opacity: 0.3; }
    100% { transform: translateY(-100vh) translateX(0); opacity: 0; }
}

/* === HEADER === */
.site-header {
    background: linear-gradient(180deg, #00263F 0%, #001A2E 100%);
    border-bottom: 2px solid rgba(0, 105, 148, 0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.logo img {
    height: 50px;
    width: auto;
}

.header-time {
    font-family: "Catamaran", sans-serif;
    font-size: 14px;
    color: #006994;
    font-weight: 500;
}

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

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

.btn-login:hover {
    background: #006994;
    color: #F0FFFF;
}

.btn-register {
    background: linear-gradient(135deg, #2ECC71, #27ae60);
    color: #001A2E;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.3s ease;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.4);
    color: #001A2E;
}

.btn-demo {
    background: transparent;
    border: 1px solid #2ECC71;
    color: #2ECC71;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
}

.btn-demo:hover {
    background: #2ECC71;
    color: #001A2E;
}

/* === NAVIGATION === */
.main-navigation {
    background: rgba(0, 41, 63, 0.95);
    border-top: 1px solid rgba(0, 105, 148, 0.3);
}

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

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

.nav-link:hover {
    color: #2ECC71;
    background: rgba(0, 105, 148, 0.2);
}

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

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

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

/* === NOTIFICATION BAR === */
.notification-bar {
    background: linear-gradient(90deg, #006994, #004D6B);
    padding: 8px 0;
    overflow: hidden;
}

.notification-content {
    display: flex;
    animation: tideWave 20s linear infinite;
    white-space: nowrap;
    gap: 50px;
    color: #F0FFFF;
    font-size: 13px;
}

/* === BUTTONS === */
.btn-ocean-primary {
    display: inline-block;
    background: linear-gradient(135deg, #2ECC71, #27ae60);
    color: #001A2E;
    padding: 14px 40px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-ocean-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.5);
    color: #001A2E;
}

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

.btn-outline-ocean:hover {
    background: #006994;
    color: #F0FFFF;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 105, 148, 0.4);
}

/* === OCEAN HERO SECTION === */
.ocean-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(180deg, #001A2E 0%, #003050 40%, #006994 70%, #004D6B 100%);
    border-radius: 0 0 20px 20px;
    margin-bottom: 40px;
}

.ocean-depth-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center bottom, rgba(0, 105, 148, 0.4) 0%, transparent 70%);
    pointer-events: none;
}

/* Coral Reef Layer */
.coral-reef-layer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    pointer-events: none;
}

.coral {
    position: absolute;
    bottom: 0;
    border-radius: 50% 50% 0 0;
    animation: coralSway 4s ease-in-out infinite;
}

.coral-1 {
    left: 5%;
    width: 60px;
    height: 120px;
    background: linear-gradient(180deg, #FF6B6B, #C0392B);
    animation-delay: 0s;
}

.coral-2 {
    left: 20%;
    width: 45px;
    height: 90px;
    background: linear-gradient(180deg, #F39C12, #E67E22);
    animation-delay: 0.5s;
}

.coral-3 {
    left: 40%;
    width: 70px;
    height: 140px;
    background: linear-gradient(180deg, #E74C3C, #C0392B);
    animation-delay: 1s;
}

.coral-4 {
    right: 25%;
    width: 55px;
    height: 110px;
    background: linear-gradient(180deg, #9B59B6, #8E44AD);
    animation-delay: 1.5s;
}

.coral-5 {
    right: 8%;
    width: 50px;
    height: 100px;
    background: linear-gradient(180deg, #2ECC71, #27ae60);
    animation-delay: 2s;
}

/* Fish School Layer */
.fish-school-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.fish {
    position: absolute;
    width: 20px;
    height: 10px;
    border-radius: 50% 50% 50% 0;
    animation: fishSchool 12s linear infinite;
}

.fish-1 {
    top: 15%;
    background: #FFD700;
    animation-delay: 0s;
    animation-duration: 10s;
}

.fish-2 {
    top: 25%;
    background: #FF6B6B;
    animation-delay: 2s;
    animation-duration: 14s;
    width: 15px;
    height: 8px;
}

.fish-3 {
    top: 35%;
    background: #2ECC71;
    animation-delay: 4s;
    animation-duration: 11s;
}

.fish-4 {
    top: 20%;
    background: #3498DB;
    animation-delay: 6s;
    animation-duration: 13s;
    width: 25px;
    height: 12px;
}

.fish-5 {
    top: 40%;
    background: #E74C3C;
    animation-delay: 1s;
    animation-duration: 9s;
    width: 18px;
}

.fish-6 {
    top: 30%;
    background: #F39C12;
    animation-delay: 3s;
    animation-duration: 15s;
}

/* Treasure Bubble Layer */
.treasure-bubble-layer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.treasure-bubble {
    position: absolute;
    bottom: 0;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(240, 255, 255, 0.6), rgba(0, 105, 148, 0.2));
    border: 1px solid rgba(240, 255, 255, 0.3);
    animation: treasureBubble 8s ease-in infinite;
}

.bubble-1 {
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.bubble-2 {
    left: 30%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
}

.bubble-3 {
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 4s;
}

.bubble-4 {
    left: 70%;
    width: 18px;
    height: 18px;
    animation-delay: 1s;
}

.bubble-5 {
    left: 85%;
    width: 22px;
    height: 22px;
    animation-delay: 3s;
}

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

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

.hero-brand {
    display: block;
    font-family: "Pacifico", cursive;
    font-size: 56px;
    color: #2ECC71;
    letter-spacing: 6px;
    text-shadow: 0 0 20px rgba(46, 204, 113, 0.5), 0 4px 8px rgba(0, 0, 0, 0.5);
}

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

.hero-tagline {
    display: block;
    font-family: "Pacifico", cursive;
    font-size: 22px;
    color: #F0FFFF;
    letter-spacing: 4px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-description {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 16px;
    color: rgba(240, 255, 255, 0.85);
    line-height: 1.8;
}

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

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

.hero-stat-number {
    display: block;
    font-family: "Pacifico", cursive;
    font-size: 28px;
    color: #2ECC71;
    font-weight: 700;
}

.hero-stat-label {
    font-size: 13px;
    color: rgba(240, 255, 255, 0.7);
    text-transform: uppercase;
}

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

/* === SECTION TITLES === */
.section-title {
    font-family: "Pacifico", cursive;
    font-size: 32px;
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

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

/* === OCEAN STAR GAMES - 6 CARDS === */
.ocean-star-games {
    padding: 50px 0;
}

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

.ocean-star-game-card {
    position: relative;
    background: linear-gradient(135deg, #00263F, #003D5C);
    border: 1px solid rgba(0, 105, 148, 0.3);
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
    display: block;
    color: #F0FFFF;
}

.ocean-star-game-card:hover {
    transform: translateY(-8px);
    border-color: #2ECC71;
    box-shadow: 0 15px 40px rgba(46, 204, 113, 0.2);
    color: #F0FFFF;
}

.ocean-star-game-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(46, 204, 113, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.ocean-star-game-icon {
    font-size: 40px;
    color: #2ECC71;
    margin-bottom: 15px;
}

.ocean-star-game-rating {
    margin-bottom: 12px;
    color: #F39C12;
    font-size: 14px;
}

.ocean-star-game-rating i {
    margin: 0 1px;
}

.ocean-star-game-card h3 {
    font-family: "Pacifico", cursive;
    font-size: 20px;
    color: #F0FFFF;
    margin-bottom: 10px;
}

.ocean-star-game-card p {
    font-size: 14px;
    color: rgba(240, 255, 255, 0.65);
    line-height: 1.6;
    margin-bottom: 15px;
}

.ocean-star-game-players {
    font-size: 12px;
    color: #006994;
    font-weight: 600;
}

/* === OCEAN GAME GRID - 3x4 === */
.ocean-game-grid {
    padding: 50px 0;
}

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

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

.ocean-grid-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 30px;
    background: linear-gradient(135deg, #00263F, #004D6B);
    border: 1px solid rgba(0, 105, 148, 0.3);
    border-radius: 10px;
    transition: all 0.3s ease;
    color: #F0FFFF;
    min-width: 140px;
}

.ocean-grid-node:hover {
    border-color: #2ECC71;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.15);
    color: #F0FFFF;
}

.ocean-node-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #006994, #004D6B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #2ECC71;
    transition: all 0.3s ease;
}

.ocean-grid-node:hover .ocean-node-icon {
    background: linear-gradient(135deg, #2ECC71, #27ae60);
    color: #001A2E;
}

.ocean-node-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

/* === OCEAN FEATURES - 4 CARDS === */
.ocean-features {
    padding: 50px 0;
}

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

.ocean-feature-card {
    background: linear-gradient(135deg, #00263F, #003D5C);
    border: 1px solid rgba(0, 105, 148, 0.3);
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
}

.ocean-feature-card:hover {
    transform: translateY(-5px);
    border-color: #006994;
    box-shadow: 0 10px 30px rgba(0, 105, 148, 0.2);
}

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

.coral-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    background: linear-gradient(135deg, #006994, #2ECC71);
    border-radius: 50%;
    position: relative;
    animation: coralSway 3s ease-in-out infinite;
}

.coral-icon::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: rgba(240, 255, 255, 0.2);
    border-radius: 50%;
}

.ocean-feature-card h3 {
    font-family: "Pacifico", cursive;
    font-size: 18px;
    color: #2ECC71;
    margin-bottom: 12px;
}

.ocean-feature-card p {
    font-size: 14px;
    color: rgba(240, 255, 255, 0.65);
    line-height: 1.7;
}

/* === OCEAN STATS - 4 COUNTERS === */
.ocean-stats {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.ocean-stats-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00263F 0%, #001A2E 100%);
    z-index: -1;
}

.ocean-wave-layer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 40px;
    background: repeating-linear-gradient(90deg, transparent, rgba(0, 105, 148, 0.1) 25%, transparent 50%);
    background-size: 200px 100%;
    animation: tideWave 8s linear infinite;
}

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

.ocean-stat-card {
    background: linear-gradient(135deg, #00263F, #004D6B);
    border: 1px solid rgba(0, 105, 148, 0.4);
    border-radius: 12px;
    padding: 35px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stat-bubble-decoration {
    font-size: 24px;
    color: rgba(0, 105, 148, 0.3);
    margin-bottom: 10px;
}

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

.stat-number {
    font-family: "Pacifico", cursive;
    font-size: 36px;
    color: #2ECC71;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: rgba(240, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* === OCEAN PROMOTIONS - 3 CARDS === */
.ocean-promos {
    padding: 50px 0;
}

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

.ocean-promo-card {
    position: relative;
    background: linear-gradient(135deg, #00263F, #003D5C);
    border: 1px solid rgba(0, 105, 148, 0.3);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.ocean-promo-card:hover {
    transform: translateY(-5px);
    border-color: #2ECC71;
    box-shadow: 0 15px 40px rgba(46, 204, 113, 0.15);
}

.promo-bubble-bg {
    position: absolute;
    top: -30%;
    right: -30%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 105, 148, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.ocean-promo-inner {
    padding: 30px 25px;
    position: relative;
    z-index: 1;
}

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

.ocean-promo-inner h3 {
    font-family: "Pacifico", cursive;
    font-size: 18px;
    color: #2ECC71;
    margin-bottom: 12px;
}

.ocean-promo-inner p {
    font-size: 14px;
    color: rgba(240, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 15px;
}

.promo-timer {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 13px;
    color: rgba(240, 255, 255, 0.5);
}

.promo-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

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

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

.promo-badge.vip {
    background: linear-gradient(135deg, #F39C12, #E67E22);
    color: #001A2E;
}

.btn-promo {
    display: inline-block;
    background: linear-gradient(135deg, #2ECC71, #27ae60);
    color: #001A2E;
    padding: 10px 30px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-promo:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.4);
    color: #001A2E;
}

/* === FOOTER CTA === */
.footer-cta-section {
    position: relative;
    padding: 80px 0;
    text-align: center;
    overflow: hidden;
    margin: 50px 0;
    border-radius: 16px;
}

.footer-cta-ocean-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #006994, #004D6B);
    z-index: 0;
    border-radius: 16px;
}

.footer-cta-inner {
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

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

.cta-coral-branch {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.3), rgba(0, 105, 148, 0.3));
    border-radius: 50%;
    animation: coralSway 4s ease-in-out infinite;
}

.footer-cta-inner h2 {
    font-family: "Pacifico", cursive;
    font-size: 36px;
    color: #2ECC71;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.footer-cta-inner p {
    max-width: 600px;
    margin: 0 auto 25px;
    font-size: 16px;
    color: rgba(240, 255, 255, 0.85);
    line-height: 1.7;
}

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

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

.cta-feature i {
    color: #2ECC71;
    margin-right: 5px;
}

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

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

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

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

.article-card {
    background: linear-gradient(135deg, #00263F, #003D5C);
    border: 1px solid rgba(0, 105, 148, 0.25);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: block;
    color: #F0FFFF;
}

.article-card:hover {
    transform: translateY(-5px);
    border-color: #2ECC71;
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.15);
    color: #F0FFFF;
}

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

.article-card-title {
    padding: 15px 15px 8px;
    font-family: "Catamaran", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    min-height: 50px;
}

.article-card-title span,
.article-card-title a {
    color: #F0FFFF;
}

.article-card-title a:hover {
    color: #2ECC71;
}

.article-card-meta {
    padding: 0 15px;
    font-size: 12px;
    color: rgba(240, 255, 255, 0.4);
    display: flex;
    gap: 15px;
}

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

.article-card-excerpt {
    padding: 10px 15px 15px;
    font-size: 13px;
    color: rgba(240, 255, 255, 0.55);
    line-height: 1.6;
}

.article-card-more {
    display: inline-block;
    padding: 10px 15px 15px;
    font-size: 13px;
    font-weight: 700;
    color: #2ECC71;
    transition: all 0.3s ease;
}

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

.view-more-btn {
    display: inline-block;
    padding: 12px 35px;
    border: 2px solid #006994;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-align: center;
    margin: 0 auto;
    display: block;
    width: fit-content;
}

.ocean-view-more {
    color: #2ECC71;
    border-color: #2ECC71;
}

.ocean-view-more:hover {
    background: #2ECC71;
    color: #001A2E;
}

/* === SITE FOOTER === */
.site-footer {
    background: linear-gradient(180deg, #001A2E 0%, #000D17 100%);
    border-top: 2px solid rgba(0, 105, 148, 0.3);
    padding: 50px 0 30px;
    margin-top: 50px;
}

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

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

.footer-brand-text {
    font-size: 13px;
    color: rgba(240, 255, 255, 0.55);
    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 #E74C3C;
    border-radius: 50%;
    font-weight: 700;
    font-size: 16px;
    color: #E74C3C;
    margin-bottom: 15px;
}

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

.footer-social-links a {
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background: rgba(0, 105, 148, 0.3);
    border-radius: 50%;
    color: #F0FFFF;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-social-links a:hover {
    background: #2ECC71;
    color: #001A2E;
}

.footer-col h4 {
    font-family: "Pacifico", cursive;
    font-size: 16px;
    color: #2ECC71;
    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(240, 255, 255, 0.55);
    transition: all 0.3s ease;
}

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

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

.footer-license-bar h4 {
    font-family: "Pacifico", cursive;
    font-size: 16px;
    color: #2ECC71;
    margin-bottom: 15px;
}

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

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

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

.license-item span {
    font-size: 11px;
    color: rgba(240, 255, 255, 0.5);
    font-weight: 600;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
}

.footer-copyright {
    font-size: 13px;
    color: rgba(240, 255, 255, 0.4);
}

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

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

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

.announcement-content {
    position: relative;
    background: linear-gradient(135deg, #00263F, #001A2E);
    border: 1px solid rgba(0, 105, 148, 0.5);
    border-radius: 16px;
    padding: 35px 30px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    z-index: 1;
}

.announcement-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: rgba(240, 255, 255, 0.5);
    font-size: 28px;
    cursor: pointer;
    transition: color 0.3s ease;
}

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

.announcement-header-icon {
    text-align: center;
    font-size: 40px;
    color: #2ECC71;
    margin-bottom: 15px;
}

.announcement-title {
    font-family: "Pacifico", cursive;
    font-size: 20px;
    color: #2ECC71;
    text-align: center;
    margin-bottom: 20px;
}

.announcement-list {
    margin-bottom: 20px;
}

.announcement-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border-radius: 8px;
    background: rgba(0, 105, 148, 0.1);
    margin-bottom: 8px;
    transition: all 0.3s ease;
    color: #F0FFFF;
}

.announcement-item:hover {
    background: rgba(0, 105, 148, 0.25);
    color: #F0FFFF;
}

.announcement-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    flex-shrink: 0;
}

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

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

.announcement-badge.info {
    background: #F39C12;
    color: #001A2E;
}

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

.announcement-item .fa-chevron-right {
    font-size: 12px;
    color: rgba(240, 255, 255, 0.3);
}

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

.announcement-cta {
    display: inline-block;
    background: linear-gradient(135deg, #2ECC71, #27ae60);
    color: #001A2E;
    padding: 12px 40px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.announcement-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.4);
    color: #001A2E;
}

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

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

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

.breadcrumb a {
    color: #006994;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #2ECC71;
}

.breadcrumb span {
    color: rgba(240, 255, 255, 0.4);
}

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

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

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

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    background: rgba(0, 105, 148, 0.2);
    color: #F0FFFF;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 105, 148, 0.3);
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: #2ECC71;
    color: #001A2E;
    border-color: #2ECC71;
}

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

.category-title {
    font-family: "Pacifico", cursive;
    font-size: 28px;
    color: #2ECC71;
    margin-bottom: 10px;
}

.category-desc {
    color: rgba(240, 255, 255, 0.6);
    font-size: 15px;
}

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

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

.provider-tab:hover,
.provider-tab.active {
    background: #2ECC71;
    color: #001A2E;
    border-color: #2ECC71;
}

/* === SINGLE ARTICLE === */
.single-article {
    background: linear-gradient(135deg, #00263F, #003D5C);
    border: 1px solid rgba(0, 105, 148, 0.2);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
}

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

.article-title {
    font-family: "Pacifico", cursive;
    font-size: 28px;
    color: #F0FFFF;
    margin-bottom: 15px;
    line-height: 1.4;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 13px;
    color: rgba(240, 255, 255, 0.5);
}

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

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

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

.article-content {
    font-size: 16px;
    line-height: 1.9;
    color: rgba(240, 255, 255, 0.8);
}

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

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

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

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

.article-content blockquote {
    border-left: 4px solid #006994;
    padding: 15px 20px;
    margin: 20px 0;
    background: rgba(0, 105, 148, 0.1);
    border-radius: 0 8px 8px 0;
    font-style: italic;
}

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

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

.article-tags span {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0, 105, 148, 0.2);
    border-radius: 15px;
    font-size: 12px;
    color: rgba(240, 255, 255, 0.6);
}

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

.article-nav a {
    color: #2ECC71;
    font-size: 14px;
    font-weight: 600;
}

.article-nav a:hover {
    color: #F0FFFF;
}

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

.related-posts-title {
    font-family: "Pacifico", cursive;
    font-size: 22px;
    color: #2ECC71;
    margin-bottom: 20px;
}

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

.related-item {
    display: block;
    color: #F0FFFF;
}

.related-item:hover {
    color: #F0FFFF;
}

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

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

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

.related-item-title {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
}

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

.sidebar-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 15px;
    background: linear-gradient(135deg, #006994, #004D6B);
    color: #F0FFFF;
    font-size: 16px;
    transition: all 0.3s ease;
    border-radius: 6px 0 0 6px;
}

.sidebar-btn:hover {
    padding-right: 25px;
    background: #2ECC71;
    color: #001A2E;
}

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

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

.sidebar-label {
    display: none;
    font-size: 13px;
    font-weight: 600;
}

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

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

.error-coral {
    margin-bottom: 30px;
}

.error-coral-branch {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    background: linear-gradient(135deg, #006994, #2ECC71);
    border-radius: 50%;
    animation: coralSway 3s ease-in-out infinite;
    opacity: 0.5;
}

.error-code {
    font-family: "Pacifico", cursive;
    font-size: 100px;
    color: #2ECC71;
    text-shadow: 0 0 30px rgba(46, 204, 113, 0.3);
    line-height: 1;
    margin-bottom: 15px;
}

.error-title {
    font-family: "Pacifico", cursive;
    font-size: 24px;
    color: #F0FFFF;
    margin-bottom: 15px;
}

.error-desc {
    max-width: 500px;
    margin: 0 auto 30px;
    color: rgba(240, 255, 255, 0.6);
    line-height: 1.7;
}

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

.no-posts p {
    color: rgba(240, 255, 255, 0.5);
    font-size: 16px;
}

/* === PAGE ARTICLE === */
.page-article {
    background: linear-gradient(135deg, #00263F, #003D5C);
    border: 1px solid rgba(0, 105, 148, 0.2);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
}

.page-title {
    font-family: "Pacifico", cursive;
    font-size: 28px;
    color: #2ECC71;
    margin-bottom: 20px;
}

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

.page-content {
    font-size: 16px;
    line-height: 1.9;
    color: rgba(240, 255, 255, 0.8);
}

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

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