/* ============================================
   TROPICAL THEME - main.css (moban-168)
   Tropical Ocean Palm Theme
   Colors: MultiColor + Blue(#03A9F4) + Green(#4CAF50)
   ============================================ */

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Fredoka One', cursive;
    font-weight: 400;
    line-height: 1.3;
}

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

a:hover {
    color: #4CAF50;
    text-shadow: 0 0 10px rgba(3, 169, 244, 0.5);
}

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

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

.tropical-text {
    color: #03A9F4;
    background: linear-gradient(90deg, #03A9F4, #4CAF50, #03A9F4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ocean-text {
    background: linear-gradient(90deg, #03A9F4, #00BCD4, #4CAF50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === KEYFRAME ANIMATIONS === */
@keyframes palmSway {
    0%, 100% { transform: rotate(-3deg); }
    25% { transform: rotate(2deg); }
    50% { transform: rotate(-2deg); }
    75% { transform: rotate(3deg); }
}

@keyframes tropicalWave {
    0% { transform: translateX(-100%); opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0; }
}

@keyframes sunGlow {
    0%, 100% { box-shadow: 0 0 60px rgba(255, 193, 7, 0.6), 0 0 120px rgba(255, 152, 0, 0.4); transform: scale(1); }
    50% { box-shadow: 0 0 80px rgba(255, 193, 7, 0.8), 0 0 160px rgba(255, 152, 0, 0.6); transform: scale(1.05); }
}

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

@keyframes oceanPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.02); }
}

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

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

/* === HEADER === */
.site-header {
    background: linear-gradient(180deg, #0A1628 0%, #0D2137 100%);
    border-bottom: 2px solid rgba(3, 169, 244, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.header-time {
    color: #03A9F4;
    font-size: 14px;
    font-weight: 600;
}

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

.btn-login {
    padding: 8px 20px;
    border: 2px solid #03A9F4;
    border-radius: 25px;
    color: #03A9F4;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: #03A9F4;
    color: #fff;
}

.btn-register {
    padding: 8px 20px;
    background: linear-gradient(135deg, #03A9F4, #4CAF50);
    border-radius: 25px;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.3s ease;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(3, 169, 244, 0.4);
    color: #fff;
}

.btn-demo {
    padding: 8px 20px;
    border: 2px solid #4CAF50;
    border-radius: 25px;
    color: #4CAF50;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.3s ease;
}

.btn-demo:hover {
    background: #4CAF50;
    color: #fff;
}

/* === NAVIGATION === */
.main-navigation {
    background: rgba(13, 33, 55, 0.95);
    border-top: 1px solid rgba(3, 169, 244, 0.2);
    border-bottom: 1px solid rgba(76, 175, 80, 0.2);
}

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

.nav-item { position: relative; }

.nav-link {
    display: block;
    padding: 12px 18px;
    color: #E8F4F8;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #03A9F4;
    background: rgba(3, 169, 244, 0.1);
    text-shadow: none;
}

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

/* === NOTIFICATION BAR === */
.notification-bar {
    background: linear-gradient(90deg, #03A9F4, #4CAF50, #03A9F4);
    overflow: hidden;
    height: 35px;
}

.notification-content {
    display: flex;
    gap: 50px;
    animation: notificationScroll 30s linear infinite;
    white-space: nowrap;
    padding: 8px 0;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

@keyframes notificationScroll {
    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;
    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, #0D2137, #0A1628);
    border: 2px solid rgba(3, 169, 244, 0.5);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 0 50px rgba(3, 169, 244, 0.3);
}

.announcement-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #03A9F4;
    font-size: 30px;
    cursor: pointer;
}

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

.announcement-header-icon i {
    font-size: 50px;
    color: #03A9F4;
    animation: floatUp 3s ease infinite;
}

.announcement-title {
    text-align: center;
    font-size: 20px;
    margin-bottom: 25px;
}

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

.announcement-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(3, 169, 244, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(3, 169, 244, 0.2);
    transition: all 0.3s ease;
}

.announcement-item:hover {
    background: rgba(3, 169, 244, 0.2);
    transform: translateX(5px);
}

.announcement-badge {
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 700;
}

.announcement-badge.hot { background: #FF5722; color: #fff; }
.announcement-badge.new { background: #4CAF50; color: #fff; }
.announcement-badge.info { background: #03A9F4; color: #fff; }

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

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

.announcement-cta {
    display: inline-block;
    padding: 12px 40px;
    background: linear-gradient(135deg, #03A9F4, #4CAF50);
    border-radius: 25px;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
}

/* === HERO SECTION === */
.tropical-hero {
    position: relative;
    min-height: 600px;
    background: linear-gradient(180deg, #0A1628 0%, #0D2137 50%, #01579B 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -15px -15px 40px -15px;
    padding: 60px 20px;
}

.ocean-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%2303A9F4' fill-opacity='0.3' d='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,106.7C1248,96,1344,96,1392,96L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") repeat-x;
    background-size: 50% 100%;
    animation: tropicalWave 10s linear infinite;
}

.wave-1 { opacity: 0.3; animation-duration: 8s; }
.wave-2 { opacity: 0.4; animation-duration: 10s; animation-delay: -2s; bottom: -20px; }
.wave-3 { opacity: 0.5; animation-duration: 12s; animation-delay: -4s; bottom: -40px; }
.wave-4 { opacity: 0.6; animation-duration: 14s; animation-delay: -6s; bottom: -60px; }
.wave-5 { opacity: 0.7; animation-duration: 16s; animation-delay: -8s; bottom: -80px; }

/* Palm Trees */
.palm-tree {
    position: absolute;
    bottom: 100px;
    z-index: 3;
}

.palm-tree-left {
    left: 5%;
    animation: palmSway 6s ease-in-out infinite;
    transform-origin: bottom center;
}

.palm-tree-right {
    right: 5%;
    animation: palmSway 7s ease-in-out infinite;
    animation-delay: -2s;
    transform-origin: bottom center;
}

.palm-trunk {
    width: 15px;
    height: 150px;
    background: linear-gradient(180deg, #5D4037, #3E2723);
    margin: 0 auto;
    border-radius: 5px;
}

.palm-leaves {
    position: relative;
    width: 200px;
    height: 100px;
    margin: -50px auto 0;
}

.palm-leaf {
    position: absolute;
    width: 80px;
    height: 20px;
    background: linear-gradient(90deg, #2E7D32, #4CAF50);
    border-radius: 50% 50% 0 0;
    transform-origin: center bottom;
}

.leaf-1 { left: 10px; top: 20px; transform: rotate(-45deg); }
.leaf-2 { left: 30px; top: 10px; transform: rotate(-25deg); }
.leaf-3 { left: 60px; top: 5px; transform: rotate(0deg); }
.leaf-4 { right: 30px; top: 10px; transform: rotate(25deg); }
.leaf-5 { right: 10px; top: 20px; transform: rotate(45deg); }

/* Tropical Sun */
.tropical-sun {
    position: absolute;
    top: 50px;
    right: 10%;
    z-index: 2;
}

.sun-core {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, #FFC107, #FF9800);
    border-radius: 50%;
    animation: sunGlow 4s ease-in-out infinite;
}

.sun-rays {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px dashed rgba(255, 193, 7, 0.3);
    animation: sunGlow 4s ease-in-out infinite;
}

/* Fish Parade */
.fish-parade {
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 4;
}

.fish {
    position: absolute;
    font-size: 30px;
    color: #03A9F4;
    animation: fishParade 15s linear infinite;
}

.fish-1 { bottom: 20px; animation-delay: 0s; }
.fish-2 { bottom: 40px; animation-delay: -3s; color: #4CAF50; }
.fish-3 { bottom: 60px; animation-delay: -6s; color: #00BCD4; }
.fish-4 { bottom: 30px; animation-delay: -9s; color: #FF9800; }
.fish-5 { bottom: 50px; animation-delay: -12s; color: #E91E63; }

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

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

.hero-brand {
    display: block;
    font-size: 60px;
    letter-spacing: 10px;
    background: linear-gradient(135deg, #03A9F4, #4CAF50, #FFC107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-divider-line {
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #03A9F4, #4CAF50);
    margin: 15px auto;
}

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

.hero-description {
    font-size: 16px;
    color: #B0BEC5;
    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: 32px;
    font-family: 'Fredoka One', cursive;
    color: #03A9F4;
}

.hero-stat-label {
    display: block;
    font-size: 13px;
    color: #B0BEC5;
    margin-top: 5px;
}

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

.btn-tropical-primary {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #03A9F4, #4CAF50);
    border-radius: 30px;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(3, 169, 244, 0.4);
}

.btn-tropical-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(3, 169, 244, 0.6);
    color: #fff;
}

.btn-outline-tropical {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid #03A9F4;
    border-radius: 30px;
    color: #03A9F4;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-outline-tropical:hover {
    background: #03A9F4;
    color: #fff;
}

/* === SECTION TITLES === */
.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
}

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

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

/* === TROPICAL STAR GAMES === */
.tropical-star-games {
    padding: 60px 0;
    position: relative;
}

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

.tropical-star-game-card {
    position: relative;
    background: linear-gradient(135deg, rgba(13, 33, 55, 0.9), rgba(10, 22, 40, 0.95));
    border: 1px solid rgba(3, 169, 244, 0.3);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

.tropical-star-game-card:hover {
    transform: translateY(-5px);
    border-color: #03A9F4;
    box-shadow: 0 10px 40px rgba(3, 169, 244, 0.3);
}

.tropical-star-game-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(3, 169, 244, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.tropical-star-game-icon {
    font-size: 50px;
    color: #03A9F4;
    margin-bottom: 15px;
}

.tropical-star-game-rating { margin-bottom: 10px; }
.tropical-star-game-rating i { color: #FFC107; font-size: 14px; }

.tropical-star-game-card h3 {
    font-size: 20px;
    color: #E8F4F8;
    margin-bottom: 10px;
}

.tropical-star-game-card p {
    font-size: 14px;
    color: #B0BEC5;
    margin-bottom: 15px;
    line-height: 1.6;
}

.tropical-star-game-players {
    font-size: 12px;
    color: #4CAF50;
}

/* === TROPICAL GRID === */
.tropical-grid-section { padding: 60px 0; }

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

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

.tropical-grid-node {
    background: linear-gradient(135deg, rgba(13, 33, 55, 0.8), rgba(10, 22, 40, 0.9));
    border: 1px solid rgba(3, 169, 244, 0.2);
    border-radius: 12px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.tropical-grid-node:hover {
    transform: translateY(-3px);
    border-color: #4CAF50;
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.3);
}

.tropical-node-icon {
    font-size: 35px;
    color: #03A9F4;
    margin-bottom: 10px;
}

.tropical-node-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #E8F4F8;
}

/* === TROPICAL FEATURES === */
.tropical-features { padding: 60px 0; }

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

.tropical-feature-card {
    background: linear-gradient(135deg, rgba(13, 33, 55, 0.9), rgba(10, 22, 40, 0.95));
    border: 1px solid rgba(3, 169, 244, 0.2);
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.tropical-feature-card:hover {
    transform: translateY(-5px);
    border-color: #4CAF50;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
}

.tropical-feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #03A9F4, #4CAF50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.tropical-feature-icon i { font-size: 30px; color: #fff; }

.tropical-feature-card h3 {
    font-size: 18px;
    color: #E8F4F8;
    margin-bottom: 12px;
}

.tropical-feature-card p {
    font-size: 14px;
    color: #B0BEC5;
    line-height: 1.7;
}

/* === TROPICAL STATS === */
.tropical-stats {
    position: relative;
    padding: 80px 0;
    margin: 40px 0;
}

.tropical-stats-bg {
    position: absolute;
    top: 0;
    left: -15px;
    right: -15px;
    bottom: 0;
    background: linear-gradient(135deg, #01579B, #006064);
    z-index: 0;
}

.ocean-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(3, 169, 244, 0.2), rgba(76, 175, 80, 0.2));
}

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

.tropical-stat-card {
    background: rgba(10, 22, 40, 0.8);
    border: 1px solid rgba(3, 169, 244, 0.3);
    border-radius: 15px;
    padding: 35px 20px;
    text-align: center;
}

.stat-tropical-decoration {
    font-size: 25px;
    color: #03A9F4;
    margin-bottom: 15px;
}

.stat-tropical-decoration.bottom {
    margin-bottom: 0;
    margin-top: 15px;
}

.stat-number {
    font-size: 42px;
    font-family: 'Fredoka One', cursive;
    color: #03A9F4;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: #B0BEC5;
}

/* === TROPICAL PROMOS === */
.tropical-promos { padding: 60px 0; }

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

.tropical-promo-card {
    position: relative;
    background: linear-gradient(135deg, rgba(13, 33, 55, 0.95), rgba(10, 22, 40, 0.98));
    border: 1px solid rgba(3, 169, 244, 0.3);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.tropical-promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(3, 169, 244, 0.3);
}

.promo-tropical-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(3, 169, 244, 0.1), transparent 70%);
}

.tropical-promo-inner {
    position: relative;
    padding: 30px 25px;
    text-align: center;
}

.promo-icon {
    font-size: 40px;
    color: #03A9F4;
    margin-bottom: 15px;
}

.tropical-promo-inner h3 {
    font-size: 18px;
    color: #E8F4F8;
    margin-bottom: 12px;
}

.tropical-promo-inner p {
    font-size: 14px;
    color: #B0BEC5;
    margin-bottom: 15px;
    line-height: 1.6;
}

.promo-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 13px;
    color: #B0BEC5;
}

.promo-badge {
    padding: 3px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 700;
}

.promo-badge.hot { background: #FF5722; color: #fff; }
.promo-badge.new { background: #4CAF50; color: #fff; }
.promo-badge.vip { background: #FFC107; color: #000; }

.btn-promo {
    display: inline-block;
    padding: 10px 30px;
    background: linear-gradient(135deg, #03A9F4, #4CAF50);
    border-radius: 25px;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-promo:hover {
    transform: scale(1.05);
    color: #fff;
}

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

.footer-cta-tropicalfield {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #01579B, #006064);
}

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

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

.cta-tropical-palm {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #03A9F4, #4CAF50);
    border-radius: 50%;
    margin: 0 auto;
    animation: floatUp 3s ease infinite;
}

.footer-cta-inner h2 {
    font-size: 36px;
    color: #E8F4F8;
    margin-bottom: 15px;
}

.footer-cta-inner p {
    font-size: 16px;
    color: #B0BEC5;
    margin-bottom: 25px;
}

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

.cta-feature { color: #4CAF50; font-weight: 600; }
.cta-feature i { margin-right: 8px; }

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

.article-card {
    background: linear-gradient(135deg, rgba(13, 33, 55, 0.9), rgba(10, 22, 40, 0.95));
    border: 1px solid rgba(3, 169, 244, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    border-color: #03A9F4;
    box-shadow: 0 10px 30px rgba(3, 169, 244, 0.2);
}

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

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

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

.article-card-title {
    padding: 15px 20px 10px;
    font-size: 16px;
    font-weight: 700;
    color: #E8F4F8;
    line-height: 1.4;
}

.article-card-title a { color: #E8F4F8; }
.article-card-title a:hover { color: #03A9F4; }

.article-card-meta {
    padding: 0 20px 10px;
    font-size: 12px;
    color: #B0BEC5;
}

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

.article-card-excerpt {
    padding: 0 20px 20px;
    font-size: 14px;
    color: #B0BEC5;
    line-height: 1.6;
}

.article-card-more {
    display: inline-block;
    padding: 10px 20px;
    margin: 0 20px 20px;
    border: 1px solid #03A9F4;
    border-radius: 20px;
    color: #03A9F4;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.article-card-more:hover {
    background: #03A9F4;
    color: #fff;
}

.view-more-btn {
    display: inline-block;
    padding: 12px 35px;
    border: 2px solid #03A9F4;
    border-radius: 25px;
    color: #03A9F4;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
}

.view-more-btn:hover {
    background: #03A9F4;
    color: #fff;
}

.tropical-view-more { border-color: #4CAF50; color: #4CAF50; }
.tropical-view-more:hover { background: #4CAF50; }

/* === CONTENT AREA & SIDEBAR === */
.content-area {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 30px;
    padding: 30px 0;
}

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

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

.breadcrumb a { color: #03A9F4; }
.breadcrumb span { color: #B0BEC5; }

/* === 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; }

.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(13, 33, 55, 0.8);
    border: 1px solid rgba(3, 169, 244, 0.3);
    color: #E8F4F8;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: linear-gradient(135deg, #03A9F4, #4CAF50);
    border-color: transparent;
    color: #fff;
}

/* === SINGLE ARTICLE === */
.single-article {
    background: linear-gradient(135deg, rgba(13, 33, 55, 0.9), rgba(10, 22, 40, 0.95));
    border: 1px solid rgba(3, 169, 244, 0.2);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
}

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

.article-meta {
    display: flex;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(3, 169, 244, 0.2);
    margin-bottom: 25px;
    font-size: 13px;
    color: #B0BEC5;
    flex-wrap: wrap;
}

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

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

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

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

.article-content h2,
.article-content h3 {
    margin: 30px 0 15px;
    color: #03A9F4;
}

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

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

.article-content blockquote {
    border-left: 4px solid #03A9F4;
    padding: 15px 20px;
    margin: 20px 0;
    background: rgba(3, 169, 244, 0.05);
    border-radius: 0 8px 8px 0;
}

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

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

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

.article-tags i { color: #03A9F4; }

.article-tags span {
    padding: 5px 15px;
    background: rgba(3, 169, 244, 0.1);
    border-radius: 15px;
    font-size: 13px;
    color: #03A9F4;
}

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

.article-nav a { color: #03A9F4; font-weight: 600; }

/* === RELATED POSTS === */
.related-posts { margin-top: 40px; }

.related-posts-title {
    font-size: 24px;
    margin-bottom: 20px;
}

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

.related-item {
    background: linear-gradient(135deg, rgba(13, 33, 55, 0.9), rgba(10, 22, 40, 0.95));
    border: 1px solid rgba(3, 169, 244, 0.2);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

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

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

.related-item-title {
    padding: 12px;
    font-size: 14px;
    color: #E8F4F8;
    line-height: 1.4;
}

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

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

.category-desc {
    color: #B0BEC5;
    font-size: 15px;
}

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

.provider-tab {
    padding: 8px 20px;
    background: rgba(13, 33, 55, 0.8);
    border: 1px solid rgba(3, 169, 244, 0.3);
    border-radius: 20px;
    color: #E8F4F8;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.provider-tab.active,
.provider-tab:hover {
    background: linear-gradient(135deg, #03A9F4, #4CAF50);
    border-color: transparent;
    color: #fff;
}

/* === PAGE === */
.page-article {
    background: linear-gradient(135deg, rgba(13, 33, 55, 0.9), rgba(10, 22, 40, 0.95));
    border: 1px solid rgba(3, 169, 244, 0.2);
    border-radius: 15px;
    padding: 40px;
}

.page-title {
    font-size: 32px;
    color: #E8F4F8;
    margin-bottom: 25px;
}

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

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

.page-content p { margin-bottom: 20px; }
.page-content h2, .page-content h3 { margin: 25px 0 15px; color: #03A9F4; }

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

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

.error-tropical-palm {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #03A9F4, #4CAF50);
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: #fff;
    animation: floatUp 3s ease infinite;
}

.error-code {
    font-size: 100px;
    color: #03A9F4;
    margin-bottom: 10px;
}

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

.error-desc {
    font-size: 16px;
    color: #B0BEC5;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #03A9F4, #4CAF50);
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    transition: all 0.3s ease;
    position: relative;
}

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

.sidebar-btn-facebook { background: #1877F2; }
.sidebar-btn-telegram { background: #0088CC; }

.sidebar-label {
    position: absolute;
    right: 60px;
    background: rgba(10, 22, 40, 0.95);
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.sidebar-btn:hover .sidebar-label { opacity: 1; }

/* === FOOTER === */
.site-footer {
    background: linear-gradient(180deg, #0A1628, #000);
    border-top: 2px solid rgba(3, 169, 244, 0.3);
    padding: 60px 0 30px;
    margin-top: 60px;
}

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

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

.footer-brand-text {
    font-size: 14px;
    color: #B0BEC5;
    line-height: 1.7;
    margin-bottom: 15px;
}

.footer-18plus {
    display: inline-block;
    padding: 5px 15px;
    background: #FF5722;
    border-radius: 5px;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 15px;
}

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

.footer-social-links a {
    width: 40px;
    height: 40px;
    background: rgba(3, 169, 244, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #03A9F4;
    transition: all 0.3s ease;
}

.footer-social-links a:hover {
    background: #03A9F4;
    color: #fff;
}

.footer-col h4 {
    font-size: 16px;
    color: #03A9F4;
    margin-bottom: 20px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
    color: #B0BEC5;
    font-size: 14px;
    transition: all 0.3s ease;
}

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

.footer-license-bar {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(3, 169, 244, 0.2);
    border-bottom: 1px solid rgba(3, 169, 244, 0.2);
    margin-bottom: 30px;
}

.footer-license-bar h4 {
    font-size: 18px;
    color: #03A9F4;
    margin-bottom: 20px;
}

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

.license-item { text-align: center; color: #B0BEC5; }

.license-item i {
    display: block;
    font-size: 30px;
    color: #03A9F4;
    margin-bottom: 8px;
}

.license-item span { font-size: 12px; }

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

.footer-copyright {
    font-size: 14px;
    color: #B0BEC5;
}

.footer-disclaimer {
    max-width: 800px;
    margin: 0 auto;
}

/* === NO POSTS === */
.no-posts {
    text-align: center;
    padding: 60px 20px;
    color: #B0BEC5;
}

.no-posts i { display: block; }

/* === HOME NEWS PLACEHOLDER === */
.home-news-placeholder { display: contents; }

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