/* ============================================
   LIGHTBET THEME - main.css (moban-136)
   Light, Transparent & Airy Betting Theme
   Colors: #FFFFFF, #B3E5FC, #90A4AE
   Fonts: Raleway + Open Sans
   ============================================ */

/* === 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: #FFFFFF;
    color: #546E7A;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: #37474F;
}

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

a:hover {
    color: #B3E5FC;
    text-shadow: 0 0 10px rgba(179, 229, 252, 0.5);
}

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

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

.lightbet-accent-text {
    color: #0288D1;
    background: linear-gradient(90deg, #0288D1, #B3E5FC, #0288D1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === KEYFRAME ANIMATIONS === */

/* 1. lightFloat - gentle floating animation for light elements */
@keyframes lightFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.7;
    }
    25% {
        transform: translateY(-15px) scale(1.02);
        opacity: 0.85;
    }
    50% {
        transform: translateY(-25px) scale(1.05);
        opacity: 1;
    }
    75% {
        transform: translateY(-10px) scale(1.01);
        opacity: 0.9;
    }
}

/* 2. airyFade - soft fade in/out with airy movement */
@keyframes airyFade {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
        filter: blur(5px);
    }
    30% {
        opacity: 0.5;
        transform: translateY(10px) scale(0.98);
        filter: blur(2px);
    }
    60% {
        opacity: 0.8;
        transform: translateY(3px) scale(1);
        filter: blur(0);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

/* 3. breezeSlide - horizontal breeze-like sliding motion */
@keyframes breezeSlide {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    20% {
        opacity: 0.3;
    }
    50% {
        transform: translateX(0%);
        opacity: 0.6;
    }
    80% {
        opacity: 0.3;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* 4. transparentGlow - pulsating transparent glow effect */
@keyframes transparentGlow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(179, 229, 252, 0.2),
                    0 0 30px rgba(179, 229, 252, 0.1),
                    inset 0 0 15px rgba(255, 255, 255, 0.05);
        opacity: 0.8;
    }
    25% {
        box-shadow: 0 0 20px rgba(179, 229, 252, 0.35),
                    0 0 40px rgba(179, 229, 252, 0.2),
                    inset 0 0 20px rgba(255, 255, 255, 0.1);
        opacity: 0.9;
    }
    50% {
        box-shadow: 0 0 30px rgba(179, 229, 252, 0.5),
                    0 0 60px rgba(179, 229, 252, 0.3),
                    inset 0 0 30px rgba(255, 255, 255, 0.15);
        opacity: 1;
    }
    75% {
        box-shadow: 0 0 20px rgba(179, 229, 252, 0.35),
                    0 0 40px rgba(179, 229, 252, 0.15),
                    inset 0 0 20px rgba(255, 255, 255, 0.08);
        opacity: 0.9;
    }
}

@keyframes bubbleFloat {
    0%, 100% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-20px) translateX(10px); }
    50% { transform: translateY(-35px) translateX(-5px); }
    75% { transform: translateY(-15px) translateX(8px); }
}

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

@keyframes ringExpand {
    0% { transform: scale(0.8); opacity: 0.8; }
    100% { transform: scale(2); opacity: 0; }
}

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

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

@keyframes counterGlow {
    0%, 100% { text-shadow: 0 0 10px rgba(2, 136, 209, 0.3); }
    50% { text-shadow: 0 0 20px rgba(2, 136, 209, 0.6), 0 0 40px rgba(179, 229, 252, 0.3); }
}

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

@keyframes gentleRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* === HEADER === */
.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(179, 229, 252, 0.4);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(144, 164, 174, 0.08);
}

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

.logo img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(179, 229, 252, 0.4));
    transition: all 0.3s ease;
}

.logo img:hover {
    filter: drop-shadow(0 4px 12px rgba(179, 229, 252, 0.6));
    transform: scale(1.05);
}

.header-time {
    font-family: 'Raleway', sans-serif;
    color: #0288D1;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
}

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

.btn-login {
    padding: 8px 18px;
    border: 1px solid #B3E5FC;
    color: #0288D1;
    border-radius: 25px;
    font-weight: 600;
    font-size: 13px;
    font-family: 'Raleway', sans-serif;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-login:hover {
    background: #B3E5FC;
    color: #01579B;
    box-shadow: 0 4px 15px rgba(179, 229, 252, 0.4);
}

.btn-register {
    padding: 8px 18px;
    background: linear-gradient(135deg, #0288D1, #B3E5FC);
    color: #fff;
    border-radius: 25px;
    font-weight: 600;
    font-size: 13px;
    font-family: 'Raleway', sans-serif;
    transition: all 0.3s ease;
    border: none;
}

.btn-register:hover {
    background: linear-gradient(135deg, #01579B, #0288D1);
    box-shadow: 0 4px 15px rgba(2, 136, 209, 0.4);
    color: #fff;
}

.btn-demo {
    padding: 8px 18px;
    border: 1px solid #90A4AE;
    color: #546E7A;
    border-radius: 25px;
    font-weight: 600;
    font-size: 13px;
    font-family: 'Raleway', sans-serif;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-demo:hover {
    background: #90A4AE;
    color: #fff;
}

/* === NAVIGATION === */
.main-navigation {
    background: rgba(245, 248, 250, 0.95);
    border-top: 1px solid rgba(179, 229, 252, 0.3);
    backdrop-filter: blur(10px);
}

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

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 12px 16px;
    color: #546E7A;
    font-weight: 500;
    font-size: 13px;
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #0288D1;
    background: rgba(179, 229, 252, 0.15);
    text-shadow: none;
}

.nav-link i {
    margin-right: 5px;
    color: #0288D1;
}

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

/* === NOTIFICATION BAR === */
.notification-bar {
    background: linear-gradient(90deg, rgba(179, 229, 252, 0.15), rgba(255, 255, 255, 0.3), rgba(179, 229, 252, 0.15));
    overflow: hidden;
    padding: 8px 0;
    border-top: 1px solid rgba(179, 229, 252, 0.2);
}

.notification-content {
    display: flex;
    gap: 50px;
    white-space: nowrap;
    animation: notificationScroll 30s linear infinite;
    color: #0288D1;
    font-size: 13px;
    font-weight: 500;
}

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

.announcement-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.announcement-content {
    position: relative;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(179, 229, 252, 0.5);
    border-radius: 20px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    animation: airyFade 0.6s ease;
    box-shadow: 0 20px 60px rgba(144, 164, 174, 0.15);
}

.announcement-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: #90A4AE;
    font-size: 28px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.announcement-close:hover {
    color: #0288D1;
}

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

.announcement-header-icon i {
    font-size: 48px;
    color: #B3E5FC;
    animation: lightFloat 3s ease infinite;
}

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

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

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

.announcement-item:hover {
    background: rgba(179, 229, 252, 0.2);
    border-color: #B3E5FC;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(179, 229, 252, 0.2);
}

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

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

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

.announcement-badge.info {
    background: #42A5F5;
    color: #fff;
}

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

.announcement-item i.fa-chevron-right {
    color: #B3E5FC;
    font-size: 12px;
}

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

.announcement-cta {
    display: inline-block;
    padding: 12px 40px;
    background: linear-gradient(135deg, #0288D1, #B3E5FC);
    color: #fff;
    border-radius: 25px;
    font-weight: 700;
    font-size: 16px;
    font-family: 'Raleway', sans-serif;
    animation: transparentGlow 3s ease infinite;
    transition: all 0.3s ease;
}

.announcement-cta:hover {
    color: #fff;
    transform: scale(1.05);
}

/* === HERO SECTION - Light Airy === */
.lightbet-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F5F8FA 0%, #FFFFFF 40%, #E1F5FE 100%);
    border-radius: 20px;
    margin: 20px 0;
    overflow: hidden;
    border: 1px solid rgba(179, 229, 252, 0.3);
    box-shadow: 0 10px 40px rgba(144, 164, 174, 0.08);
}

/* Airy Bubbles */
.airy-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.airy-bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), rgba(179, 229, 252, 0.3));
    animation: bubbleFloat 6s ease infinite;
    box-shadow: 0 4px 15px rgba(179, 229, 252, 0.2);
}

.airy-bubble.bubble-1 {
    width: 80px; height: 80px;
    left: 10%; top: 20%;
    animation-delay: 0s;
    animation-duration: 7s;
}

.airy-bubble.bubble-2 {
    width: 50px; height: 50px;
    left: 75%; top: 15%;
    animation-delay: 1s;
    animation-duration: 5s;
}

.airy-bubble.bubble-3 {
    width: 120px; height: 120px;
    right: 10%; top: 40%;
    animation-delay: 2s;
    animation-duration: 8s;
}

.airy-bubble.bubble-4 {
    width: 40px; height: 40px;
    left: 60%; bottom: 20%;
    animation-delay: 0.5s;
    animation-duration: 6s;
}

.airy-bubble.bubble-5 {
    width: 65px; height: 65px;
    left: 30%; bottom: 15%;
    animation-delay: 1.5s;
    animation-duration: 7.5s;
}

/* Light Orb */
.light-orb {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 200px;
}

.light-orb-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(179, 229, 252, 0.8), rgba(255, 255, 255, 0.4));
    animation: orbPulse 3s ease infinite;
    box-shadow: 0 0 40px rgba(179, 229, 252, 0.4), 0 0 80px rgba(179, 229, 252, 0.2);
}

.light-orb-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(179, 229, 252, 0.4);
    animation: ringExpand 3s ease infinite;
}

.light-orb-ring.ring-1 {
    width: 120px; height: 120px;
    animation-delay: 0s;
}

.light-orb-ring.ring-2 {
    width: 120px; height: 120px;
    animation-delay: 1s;
}

.light-orb-ring.ring-3 {
    width: 120px; height: 120px;
    animation-delay: 2s;
}

/* Breeze Sweep Effect */
.breeze-sweep-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 300%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(179, 229, 252, 0.05) 10%,
        rgba(255, 255, 255, 0.08) 20%,
        rgba(179, 229, 252, 0.05) 30%,
        transparent 40%);
    animation: breezeSlide 10s linear infinite;
    pointer-events: none;
}

/* Hero Content */
.hero-inner-content {
    position: relative;
    z-index: 10;
    max-width: 600px;
    padding: 40px;
    animation: airyFade 1s ease;
}

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

.hero-brand {
    display: block;
    font-family: 'Raleway', sans-serif;
    font-size: 56px;
    font-weight: 700;
    letter-spacing: 8px;
    background: linear-gradient(90deg, #0288D1, #B3E5FC, #0288D1);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: softShimmer 4s ease infinite;
}

.hero-divider-line {
    display: block;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, #0288D1, #B3E5FC, #90A4AE);
    margin: 15px 0;
    border-radius: 2px;
}

.hero-tagline {
    display: block;
    font-size: 22px;
    letter-spacing: 4px;
    color: #0288D1;
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
}

.hero-description {
    color: #78909C;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.hero-stats-row {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

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

.hero-stat-number {
    display: block;
    font-family: 'Raleway', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #0288D1;
    animation: counterGlow 3s ease infinite;
}

.hero-stat-label {
    font-size: 12px;
    color: #90A4AE;
    text-transform: uppercase;
    font-weight: 600;
}

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

.btn-light-primary {
    display: inline-block;
    padding: 14px 35px;
    background: linear-gradient(135deg, #0288D1, #4FC3F7);
    color: #fff;
    border-radius: 25px;
    font-weight: 700;
    font-size: 15px;
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(2, 136, 209, 0.3);
}

.btn-light-primary:hover {
    background: linear-gradient(135deg, #01579B, #0288D1);
    box-shadow: 0 8px 25px rgba(2, 136, 209, 0.4);
    transform: translateY(-2px);
    color: #fff;
}

.btn-outline-light {
    display: inline-block;
    padding: 14px 35px;
    border: 2px solid #B3E5FC;
    color: #0288D1;
    border-radius: 25px;
    font-weight: 700;
    font-size: 15px;
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-outline-light:hover {
    background: #B3E5FC;
    color: #01579B;
    box-shadow: 0 4px 15px rgba(179, 229, 252, 0.4);
}

/* === SECTION TITLES === */
.section-title {
    font-family: 'Raleway', sans-serif;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: 3px;
    color: #37474F;
}

.section-title i {
    margin-right: 10px;
    animation: lightFloat 3s ease infinite;
}

.section-subtitle {
    text-align: center;
    color: #90A4AE;
    font-size: 14px;
    margin-bottom: 40px;
    font-weight: 400;
}

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

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

.light-star-game-card {
    position: relative;
    display: block;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(179, 229, 252, 0.3);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(144, 164, 174, 0.06);
}

.light-star-game-card:hover {
    border-color: #B3E5FC;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(179, 229, 252, 0.2);
    animation: transparentGlow 2s ease infinite;
}

.light-star-game-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(179, 229, 252, 0.08), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

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

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

.light-star-game-icon i {
    font-size: 40px;
    color: #0288D1;
    animation: lightFloat 4s ease infinite;
}

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

.light-star-game-rating i {
    color: #FFC107;
    font-size: 12px;
}

.light-star-game-card h3 {
    color: #37474F;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.light-star-game-card p {
    color: #78909C;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.light-star-game-players {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(179, 229, 252, 0.15);
    border-radius: 20px;
    font-size: 11px;
    color: #0288D1;
    font-weight: 600;
}

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

/* === LIGHT GRID (3x4) === */
.light-grid-section {
    padding: 60px 0;
}

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

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

.light-grid-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px 15px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(179, 229, 252, 0.25);
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
    backdrop-filter: blur(5px);
}

.light-grid-node:hover {
    border-color: #B3E5FC;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(179, 229, 252, 0.2);
    background: rgba(245, 248, 250, 0.95);
}

.light-node-icon {
    margin-bottom: 10px;
}

.light-node-icon i {
    font-size: 28px;
    color: #0288D1;
}

.light-node-label {
    color: #546E7A;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
}

/* === AIRY FEATURES === */
.airy-features {
    padding: 60px 0;
}

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

.airy-feature-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(179, 229, 252, 0.25);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(144, 164, 174, 0.05);
}

.airy-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #0288D1, #B3E5FC, #90A4AE);
    background-size: 200% 100%;
    animation: softShimmer 3s ease infinite;
}

.airy-feature-card:hover {
    transform: translateY(-5px);
    border-color: #B3E5FC;
    box-shadow: 0 15px 40px rgba(179, 229, 252, 0.15);
}

.airy-feature-icon {
    margin-bottom: 15px;
}

.airy-feature-icon i {
    font-size: 36px;
    color: #0288D1;
}

.airy-feature-card h3 {
    color: #37474F;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 12px;
}

.airy-feature-card p {
    color: #78909C;
    font-size: 13px;
    line-height: 1.7;
}

/* === LIGHT STATS === */
.light-stats {
    padding: 60px 0;
    position: relative;
}

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

.airy-gradient-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(179, 229, 252, 0.05), rgba(255, 255, 255, 0.02));
    pointer-events: none;
}

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

.light-stat-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(179, 229, 252, 0.3);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(144, 164, 174, 0.06);
}

.light-stat-card:hover {
    border-color: #B3E5FC;
    box-shadow: 0 8px 30px rgba(179, 229, 252, 0.15);
    transform: translateY(-3px);
}

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

.stat-light-decoration i {
    font-size: 20px;
    color: #B3E5FC;
    animation: lightFloat 3s ease infinite;
}

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

.stat-number {
    font-family: 'Raleway', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #0288D1;
    animation: counterGlow 3s ease infinite;
    margin-bottom: 5px;
}

.stat-label {
    color: #90A4AE;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
}

/* === LIGHT PROMOTIONS === */
.light-promos {
    padding: 60px 0;
}

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

.light-promo-card {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(179, 229, 252, 0.3);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(144, 164, 174, 0.06);
}

.light-promo-card:hover {
    border-color: #B3E5FC;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(179, 229, 252, 0.2);
}

.promo-light-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(circle at top right, rgba(179, 229, 252, 0.08), transparent);
    pointer-events: none;
}

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

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

.promo-icon i {
    font-size: 36px;
    color: #0288D1;
    animation: lightFloat 3s ease infinite;
}

.light-promo-inner h3 {
    color: #37474F;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.light-promo-inner p {
    color: #78909C;
    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: #90A4AE;
}

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

.promo-badge.hot { background: #EF5350; color: #fff; }
.promo-badge.new { background: #66BB6A; color: #fff; }
.promo-badge.vip { background: linear-gradient(135deg, #0288D1, #4FC3F7); color: #fff; }

.btn-promo {
    display: inline-block;
    padding: 10px 30px;
    background: linear-gradient(135deg, #0288D1, #4FC3F7);
    color: #fff;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    font-family: 'Raleway', sans-serif;
    transition: all 0.3s ease;
}

.btn-promo:hover {
    background: linear-gradient(135deg, #01579B, #0288D1);
    box-shadow: 0 4px 15px rgba(2, 136, 209, 0.3);
    color: #fff;
    transform: scale(1.05);
}

/* === FOOTER CTA SECTION === */
.footer-cta-section {
    position: relative;
    padding: 80px 0;
    margin: 40px 0;
    background: linear-gradient(135deg, #F5F8FA, #E1F5FE, #F5F8FA);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(179, 229, 252, 0.3);
    box-shadow: 0 10px 40px rgba(144, 164, 174, 0.08);
}

.footer-cta-airfield {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
}

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

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

.cta-light-orb {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(179, 229, 252, 0.8), rgba(255, 255, 255, 0.4));
    border-radius: 50%;
    animation: orbPulse 3s ease infinite;
    box-shadow: 0 0 30px rgba(179, 229, 252, 0.3);
}

.footer-cta-inner h2 {
    font-size: 32px;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    color: #0288D1;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.footer-cta-inner p {
    color: #78909C;
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto 25px;
    line-height: 1.8;
}

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

.cta-feature {
    color: #546E7A;
    font-size: 14px;
    font-weight: 500;
}

.cta-feature i {
    color: #0288D1;
    margin-right: 8px;
}

.cta-main-btn {
    padding: 16px 50px;
    font-size: 18px;
    animation: transparentGlow 3s ease infinite;
}

/* === 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 {
    display: block;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(179, 229, 252, 0.25);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(144, 164, 174, 0.06);
}

.article-card:hover {
    border-color: #B3E5FC;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(179, 229, 252, 0.15);
}

.article-card-thumb {
    height: 180px;
    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 15px 8px;
}

.article-card-title span,
.article-card-title a {
    color: #37474F;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
    line-height: 1.4;
    display: block;
}

.article-card-meta {
    padding: 0 15px;
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #90A4AE;
    margin-bottom: 8px;
}

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

.article-card-excerpt {
    padding: 0 15px 15px;
    font-size: 13px;
    color: #78909C;
    line-height: 1.6;
}

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

.article-card-more:hover {
    background: #B3E5FC;
    color: #01579B;
}

.view-more-btn {
    display: block;
    text-align: center;
    padding: 12px 30px;
    border: 2px solid #B3E5FC;
    color: #0288D1;
    border-radius: 25px;
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
    max-width: 200px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.view-more-btn:hover {
    background: #B3E5FC;
    color: #01579B;
    box-shadow: 0 4px 15px rgba(179, 229, 252, 0.3);
}

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

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

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

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

.sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0288D1, #4FC3F7);
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 12px rgba(2, 136, 209, 0.2);
}

.sidebar-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(2, 136, 209, 0.3);
    color: #fff;
}

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

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

.sidebar-label {
    display: none;
}

/* === FOOTER === */
.site-footer {
    background: linear-gradient(180deg, #F5F8FA 0%, #ECEFF1 100%);
    border-top: 1px solid rgba(179, 229, 252, 0.4);
    padding: 50px 0 30px;
    margin-top: 40px;
}

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

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

.footer-brand-logo img {
    height: 45px;
    filter: drop-shadow(0 2px 8px rgba(179, 229, 252, 0.3));
}

.footer-brand-text {
    color: #78909C;
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-18plus {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #EF5350;
    color: #fff;
    border-radius: 50%;
    font-weight: 700;
    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: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(179, 229, 252, 0.2);
    color: #0288D1;
    transition: all 0.3s ease;
}

.footer-social-links a:hover {
    background: #0288D1;
    color: #fff;
    transform: scale(1.1);
}

.footer-col h4 {
    color: #0288D1;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Raleway', sans-serif;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

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

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

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

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

.footer-license-bar {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid rgba(179, 229, 252, 0.3);
    border-bottom: 1px solid rgba(179, 229, 252, 0.3);
    margin-bottom: 20px;
}

.footer-license-bar h4 {
    color: #0288D1;
    margin-bottom: 15px;
    font-size: 14px;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
}

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

.license-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 10px 15px;
    background: rgba(179, 229, 252, 0.1);
    border: 1px solid rgba(179, 229, 252, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.license-item:hover {
    border-color: #B3E5FC;
    background: rgba(179, 229, 252, 0.2);
    box-shadow: 0 4px 12px rgba(179, 229, 252, 0.15);
}

.license-item i {
    font-size: 20px;
    color: #0288D1;
}

.license-item span {
    font-size: 11px;
    color: #90A4AE;
    font-weight: 600;
}

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

.footer-copyright {
    color: #90A4AE;
    font-size: 13px;
}

/* === BREADCRUMB === */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 0;
    font-size: 13px;
    color: #90A4AE;
    border-bottom: 1px solid rgba(179, 229, 252, 0.2);
    margin-bottom: 20px;
}

.breadcrumb a { color: #0288D1; }
.breadcrumb a:hover { color: #B3E5FC; }
.breadcrumb span { color: #90A4AE; }

/* === CATEGORY === */
.category-header {
    padding: 20px 0;
    margin-bottom: 20px;
}

.category-title {
    font-size: 26px;
    letter-spacing: 2px;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
}

.category-title i {
    margin-right: 10px;
    animation: lightFloat 3s ease infinite;
}

.category-desc {
    color: #78909C;
    margin-top: 10px;
    font-size: 14px;
}

.provider-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.provider-tab {
    padding: 8px 16px;
    background: rgba(179, 229, 252, 0.1);
    border: 1px solid rgba(179, 229, 252, 0.3);
    border-radius: 20px;
    color: #546E7A;
    font-size: 13px;
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.provider-tab:hover,
.provider-tab.active {
    background: linear-gradient(135deg, #0288D1, #4FC3F7);
    border-color: #0288D1;
    color: #fff;
    box-shadow: 0 4px 12px rgba(2, 136, 209, 0.2);
}

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

/* === SINGLE ARTICLE === */
.single-article {
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(179, 229, 252, 0.25);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(144, 164, 174, 0.06);
}

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

.article-title {
    font-size: 28px;
    color: #37474F;
    margin-bottom: 15px;
    line-height: 1.4;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 13px;
    color: #90A4AE;
}

.article-meta i { color: #0288D1; margin-right: 5px; }
.article-meta a { color: #0288D1; }

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

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

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

.article-content h2,
.article-content h3,
.article-content h4 {
    color: #0288D1;
    margin: 20px 0 10px;
    font-family: 'Raleway', sans-serif;
}

.article-content p { margin-bottom: 15px; }
.article-content a { color: #0288D1; text-decoration: underline; }
.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 #B3E5FC;
    padding: 15px 20px;
    background: rgba(179, 229, 252, 0.08);
    margin: 20px 0;
    border-radius: 0 12px 12px 0;
}

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

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 20px;
    border-top: 1px solid rgba(179, 229, 252, 0.2);
    margin-top: 20px;
}

.article-tags i { color: #0288D1; }

.article-tags span {
    padding: 5px 12px;
    background: rgba(179, 229, 252, 0.1);
    border-radius: 15px;
    font-size: 12px;
    color: #546E7A;
}

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

/* === ARTICLE NAV === */
.article-nav {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1px solid rgba(179, 229, 252, 0.2);
    margin-top: 20px;
}

.article-nav a { color: #0288D1; font-size: 14px; }
.article-nav a:hover { color: #B3E5FC; }

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

.related-posts-title {
    font-size: 20px;
    margin-bottom: 20px;
    letter-spacing: 2px;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
}

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

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

.related-item {
    display: block;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(179, 229, 252, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.related-item:hover {
    border-color: #B3E5FC;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(179, 229, 252, 0.12);
}

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

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

.related-item-title {
    padding: 10px;
    font-size: 13px;
    color: #37474F;
    line-height: 1.4;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
}

/* === PAGE === */
.page-article {
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(179, 229, 252, 0.25);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(144, 164, 174, 0.06);
}

.page-title {
    font-size: 28px;
    color: #0288D1;
    margin-bottom: 20px;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
}

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

.page-content {
    color: #546E7A;
    line-height: 1.8;
}

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

/* === PAGINATION === */
.pagination {
    text-align: center;
    margin: 30px 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(179, 229, 252, 0.1);
    border: 1px solid rgba(179, 229, 252, 0.3);
    color: #546E7A;
    font-size: 14px;
    transition: all 0.3s ease;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: linear-gradient(135deg, #0288D1, #4FC3F7);
    border-color: #0288D1;
    color: #fff;
    box-shadow: 0 4px 12px rgba(2, 136, 209, 0.2);
}

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

.error-light { margin-bottom: 20px; }

.error-light-orb {
    display: inline-block;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(179, 229, 252, 0.8), rgba(255, 255, 255, 0.4));
    border-radius: 50%;
    animation: orbPulse 3s ease infinite;
    box-shadow: 0 0 40px rgba(179, 229, 252, 0.3);
}

.error-code {
    font-size: 100px;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    background: linear-gradient(90deg, #0288D1, #B3E5FC, #90A4AE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.error-title {
    font-size: 24px;
    color: #0288D1;
    margin-bottom: 15px;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
}

.error-desc {
    color: #78909C;
    font-size: 15px;
    max-width: 500px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

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

.no-posts i {
    display: block;
    margin-bottom: 15px;
}
