/* ============================================
   FALCONBET THEME - main.css (moban-67)
   Falcon Totem Theme with Dive Swoop Animations
   Colors: #0B1426 bg, #1E40AF blue, #B0B0B0 silver
   ============================================ */

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

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

body {
    font-family: 'Source Sans 3', sans-serif;
    background: #0B1426;
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

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

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

a:hover {
    color: #FFFFFF;
    text-shadow: 0 0 10px rgba(30, 64, 175, 0.5);
}

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

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

.blue-text {
    color: #1E40AF;
}

/* === KEYFRAME ANIMATIONS === */
@keyframes diveSwoop {
    0% {
        transform: translateY(-100px) translateX(-50px) rotate(-15deg);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    50% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
}

@keyframes speedLines {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(200%);
        opacity: 0;
    }
}

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

@keyframes windTrail {
    0% {
        transform: translateX(0) scaleX(1);
        opacity: 1;
    }
    100% {
        transform: translateX(100px) scaleX(0.5);
        opacity: 0;
    }
}

@keyframes skyGradient {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes falconFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

@keyframes wingFlap {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-15deg);
    }
    75% {
        transform: rotate(15deg);
    }
}

@keyframes windParticle {
    0% {
        transform: translateX(0) translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateX(200px) translateY(-50px);
        opacity: 0;
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(30, 64, 175, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(30, 64, 175, 0.6);
    }
}

@keyframes slideInUp {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInLeft {
    0% {
        transform: translateX(-50px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

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

@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes rotateIn {
    0% {
        transform: rotate(-180deg) scale(0);
        opacity: 0;
    }
    100% {
        transform: rotate(0) scale(1);
        opacity: 1;
    }
}

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

/* === HEADER === */
.site-header {
    background: linear-gradient(135deg, #0B1426 0%, #1a2332 100%);
    border-bottom: 2px solid #1E40AF;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(30, 64, 175, 0.3);
}

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

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

.header-time {
    color: #B0B0B0;
    font-size: 14px;
    font-weight: 500;
}

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

.btn-login,
.btn-register,
.btn-demo {
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    transition: all 0.3s ease;
}

.btn-login {
    background: transparent;
    border: 2px solid #1E40AF;
    color: #1E40AF;
}

.btn-login:hover {
    background: #1E40AF;
    color: #FFFFFF;
}

.btn-register {
    background: #1E40AF;
    color: #FFFFFF;
    border: 2px solid #1E40AF;
}

.btn-register:hover {
    background: #1a3a8f;
    border-color: #1a3a8f;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.5);
}

.btn-demo {
    background: #B0B0B0;
    color: #0B1426;
    border: 2px solid #B0B0B0;
}

.btn-demo:hover {
    background: #999;
    border-color: #999;
}

/* === NAVIGATION === */
.main-navigation {
    background: #0f1923;
    border-top: 1px solid rgba(30, 64, 175, 0.3);
}

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

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 15px 18px;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #1E40AF;
    background: rgba(30, 64, 175, 0.1);
}

.nav-link i {
    margin-right: 5px;
    color: #1E40AF;
}

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

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

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

/* === ANNOUNCEMENT MODAL === */
.announcement-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    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(11, 20, 38, 0.9);
    backdrop-filter: blur(5px);
}

.announcement-content {
    position: relative;
    background: linear-gradient(135deg, #0B1426 0%, #1a2332 100%);
    border: 2px solid #1E40AF;
    border-radius: 15px;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 10px 50px rgba(30, 64, 175, 0.5);
    animation: bounceIn 0.5s ease;
}

.announcement-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #B0B0B0;
    font-size: 32px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.announcement-close:hover {
    color: #1E40AF;
}

.announcement-header-icon {
    text-align: center;
    font-size: 48px;
    color: #1E40AF;
    margin-bottom: 20px;
}

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

.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(30, 64, 175, 0.1);
    border: 1px solid rgba(30, 64, 175, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.announcement-item:hover {
    background: rgba(30, 64, 175, 0.2);
    border-color: #1E40AF;
    transform: translateX(5px);
}

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

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

.announcement-badge.new {
    background: #1E40AF;
    color: #FFFFFF;
}

.announcement-badge.info {
    background: #B0B0B0;
    color: #0B1426;
}

.announcement-text {
    flex: 1;
    color: #FFFFFF;
    font-size: 14px;
}

.announcement-item i:last-child {
    color: #1E40AF;
}

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

.announcement-cta {
    display: inline-block;
    padding: 12px 40px;
    background: #1E40AF;
    color: #FFFFFF;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.announcement-cta:hover {
    background: #1a3a8f;
    box-shadow: 0 4px 20px rgba(30, 64, 175, 0.6);
}

/* === HERO SECTION - FALCON DIVE === */
.falcon-hero {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(180deg, #0B1426 0%, #1a2332 50%, #0B1426 100%);
}

.sky-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.sky-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.sky-layer-1 {
    background: radial-gradient(ellipse at top, rgba(30, 64, 175, 0.3) 0%, transparent 70%);
}

.sky-layer-2 {
    background: radial-gradient(ellipse at center, rgba(176, 176, 176, 0.1) 0%, transparent 60%);
    animation: skyGradient 10s ease infinite;
    background-size: 200% 200%;
}

.sky-layer-3 {
    background: linear-gradient(180deg, transparent 0%, rgba(11, 20, 38, 0.8) 100%);
}

.speed-lines-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    overflow: hidden;
}

.speed-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(30, 64, 175, 0.8), transparent);
    animation: speedLines 3s linear infinite;
}

.speed-line-1 {
    top: 20%;
    width: 200px;
    animation-delay: 0s;
}

.speed-line-2 {
    top: 40%;
    width: 150px;
    animation-delay: 0.5s;
}

.speed-line-3 {
    top: 60%;
    width: 250px;
    animation-delay: 1s;
}

.speed-line-4 {
    top: 30%;
    width: 180px;
    animation-delay: 1.5s;
}

.speed-line-5 {
    top: 70%;
    width: 220px;
    animation-delay: 2s;
}

.wind-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.falcon-diving {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    animation: diveSwoop 3s ease-out forwards, falconFloat 4s ease-in-out 3s infinite;
}

.falcon-body {
    position: relative;
    width: 120px;
    height: 80px;
}

.falcon-wing {
    position: absolute;
    width: 80px;
    height: 30px;
    background: linear-gradient(135deg, #1E40AF, #B0B0B0);
    border-radius: 50% 50% 0 0;
}

.falcon-wing-left {
    left: -30px;
    top: 20px;
    transform-origin: right center;
    animation: wingFlap 0.5s ease-in-out infinite;
}

.falcon-wing-right {
    right: -30px;
    top: 20px;
    transform-origin: left center;
    animation: wingFlap 0.5s ease-in-out infinite reverse;
}

.falcon-tail {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 30px;
    background: linear-gradient(180deg, #1E40AF, #0B1426);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.dive-trail {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(30, 64, 175, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 2s ease-in-out infinite;
}

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

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

.hero-brand {
    display: block;
    font-size: 72px;
    font-weight: 700;
    color: #1E40AF;
    text-shadow: 0 0 30px rgba(30, 64, 175, 0.8);
    letter-spacing: 8px;
    margin-bottom: 15px;
}

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

.hero-tagline {
    display: block;
    font-size: 24px;
    color: #FFFFFF;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero-description {
    font-size: 18px;
    color: #B0B0B0;
    margin-bottom: 35px;
    line-height: 1.8;
}

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

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

.hero-stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #1E40AF;
    margin-bottom: 5px;
}

.hero-stat-label {
    display: block;
    font-size: 14px;
    color: #B0B0B0;
    text-transform: uppercase;
}

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

.btn-blue-primary {
    display: inline-block;
    padding: 15px 40px;
    background: #1E40AF;
    color: #FFFFFF;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #1E40AF;
}

.btn-blue-primary:hover {
    background: #1a3a8f;
    border-color: #1a3a8f;
    box-shadow: 0 6px 25px rgba(30, 64, 175, 0.6);
    transform: translateY(-2px);
}

.btn-outline-blue {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: #1E40AF;
    border: 2px solid #1E40AF;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-outline-blue:hover {
    background: #1E40AF;
    color: #FFFFFF;
    box-shadow: 0 6px 25px rgba(30, 64, 175, 0.6);
    transform: translateY(-2px);
}


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

.section-subtitle {
    text-align: center;
    color: #B0B0B0;
    font-size: 16px;
    margin-bottom: 50px;
}

/* === FALCON GAMES SECTION (6 cards) === */
.falcon-games {
    padding: 80px 0;
    background: linear-gradient(180deg, #0B1426, #0f1923);
}

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

.falcon-game-card {
    position: relative;
    background: linear-gradient(135deg, #0f1923, #1a2332);
    border: 2px solid rgba(30, 64, 175, 0.3);
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
    display: block;
}

.falcon-game-card:hover {
    border-color: #1E40AF;
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(30, 64, 175, 0.4);
}

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

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

.falcon-game-icon {
    font-size: 48px;
    color: #1E40AF;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.falcon-game-rating {
    margin-bottom: 10px;
    color: #1E40AF;
    font-size: 14px;
}

.falcon-game-card h3 {
    font-size: 22px;
    color: #FFFFFF;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.falcon-game-card p {
    color: #B0B0B0;
    font-size: 14px;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.falcon-game-players {
    color: #1E40AF;
    font-size: 13px;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

/* === FALCON GRID SECTION (3x4) === */
.falcon-grid {
    padding: 80px 0;
    background: #0B1426;
}

.falcon-grid-map {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

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

.falcon-grid-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 15px;
    background: linear-gradient(135deg, #0f1923, #1a2332);
    border: 2px solid rgba(30, 64, 175, 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
}

.falcon-grid-node:hover {
    border-color: #1E40AF;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.4);
}

.node-talon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1E40AF, #B0B0B0);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    font-size: 20px;
    color: #FFFFFF;
    animation: talonGrip 2s ease-in-out infinite;
}

.node-label {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
}

/* === FALCON FEATURES SECTION === */
.falcon-features {
    padding: 80px 0;
    background: linear-gradient(180deg, #0f1923, #0B1426);
}

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

.falcon-feature-card {
    background: linear-gradient(135deg, #0f1923, #1a2332);
    border: 2px solid rgba(30, 64, 175, 0.2);
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
}

.falcon-feature-card:hover {
    border-color: #1E40AF;
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(30, 64, 175, 0.3);
}

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

.talon-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1E40AF, #B0B0B0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.talon-icon::before {
    content: '\f0e7';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 24px;
    color: #FFFFFF;
}

.falcon-feature-card h3 {
    font-size: 20px;
    color: #FFFFFF;
    margin-bottom: 12px;
}

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

/* === FALCON STATS SECTION === */
.falcon-stats {
    padding: 80px 0;
    position: relative;
    background: #0B1426;
    overflow: hidden;
}

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

.wind-trail-bg {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(30, 64, 175, 0.4), transparent);
    animation: windTrail 3s ease-in-out infinite;
}

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

.falcon-stat-card {
    background: linear-gradient(135deg, #0f1923, #1a2332);
    border: 2px solid rgba(30, 64, 175, 0.3);
    border-radius: 15px;
    padding: 35px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.falcon-stat-card:hover {
    border-color: #1E40AF;
    box-shadow: 0 8px 30px rgba(30, 64, 175, 0.3);
    transform: translateY(-5px);
}

.stat-talon-decoration {
    color: #1E40AF;
    font-size: 18px;
    margin-bottom: 10px;
}

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

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #1E40AF;
    font-family: 'Josefin Sans', sans-serif;
    margin-bottom: 8px;
}

.stat-label {
    color: #B0B0B0;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* === FALCON PROMOTIONS SECTION === */
.falcon-promos {
    padding: 80px 0;
    background: linear-gradient(180deg, #0B1426, #0f1923);
}

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

.falcon-promo-card {
    position: relative;
    background: linear-gradient(135deg, #0f1923, #1a2332);
    border: 2px solid rgba(30, 64, 175, 0.3);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.falcon-promo-card:hover {
    border-color: #1E40AF;
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(30, 64, 175, 0.4);
}

.promo-wind-bg {
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30, 64, 175, 0.05), transparent);
    animation: windTrail 5s linear infinite;
}

.falcon-promo-inner {
    position: relative;
    z-index: 2;
    padding: 35px 25px;
    text-align: center;
}

.promo-icon {
    font-size: 40px;
    color: #1E40AF;
    margin-bottom: 18px;
}

.falcon-promo-inner h3 {
    font-size: 20px;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.falcon-promo-inner p {
    color: #B0B0B0;
    font-size: 14px;
    margin-bottom: 18px;
    line-height: 1.7;
}

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

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

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

.promo-badge.new {
    background: #1E40AF;
    color: #FFFFFF;
}

.promo-badge.vip {
    background: #B0B0B0;
    color: #0B1426;
}

.btn-promo {
    display: inline-block;
    padding: 10px 30px;
    background: #1E40AF;
    color: #FFFFFF;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-promo:hover {
    background: #1a3a8f;
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.5);
}

/* === FOOTER CTA SECTION === */
.footer-cta-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #0B1426, #1a2332);
    overflow: hidden;
    text-align: center;
}

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

.wind-trail-cta {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(30, 64, 175, 0.3), transparent);
    animation: windTrail 4s ease-in-out infinite;
}

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

.cta-falcon-decoration {
    margin-bottom: 25px;
}

.cta-falcon-wing {
    width: 80px;
    height: 40px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1E40AF, #B0B0B0);
    border-radius: 50% 50% 0 0;
    animation: wingFlap 1s ease-in-out infinite;
}

.footer-cta-inner h2 {
    font-size: 36px;
    color: #FFFFFF;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.footer-cta-inner p {
    color: #B0B0B0;
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.7;
}

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

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

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

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


/* === NEWS SECTION === */
.home-news-section {
    padding: 80px 0;
    background: #0B1426;
}

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

.article-card {
    background: linear-gradient(135deg, #0f1923, #1a2332);
    border: 2px solid rgba(30, 64, 175, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: block;
}

.article-card:hover {
    border-color: #1E40AF;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.3);
}

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

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

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

.article-card-title {
    padding: 18px 18px 8px;
    font-size: 17px;
    color: #FFFFFF;
    font-weight: 600;
    line-height: 1.4;
}

.article-card-title a {
    color: #FFFFFF;
}

.article-card-title a:hover {
    color: #1E40AF;
}

.article-card-meta {
    padding: 0 18px;
    display: flex;
    gap: 15px;
    color: #B0B0B0;
    font-size: 13px;
    margin-bottom: 8px;
}

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

.article-card-excerpt {
    padding: 8px 18px 18px;
    color: #B0B0B0;
    font-size: 14px;
    line-height: 1.6;
}

.article-card-more {
    display: inline-block;
    padding: 0 18px 18px;
    color: #1E40AF;
    font-weight: 600;
    font-size: 14px;
}

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

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

.view-more-btn:hover {
    background: #1E40AF;
    color: #FFFFFF;
}

.blue-view-more {
    border-color: #1E40AF;
    color: #1E40AF;
}

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

/* === FOOTER === */
.site-footer {
    background: linear-gradient(180deg, #0f1923, #0B1426);
    border-top: 2px solid #1E40AF;
    padding: 60px 0 30px;
}

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

.footer-col h4 {
    font-size: 18px;
    color: #FFFFFF;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

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

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

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

.footer-brand-logo img {
    height: 45px;
    width: auto;
}

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

.footer-18plus {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 2px solid #ff4444;
    border-radius: 50%;
    color: #ff4444;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    line-height: 36px;
    margin-bottom: 15px;
}

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

.footer-social-links a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(30, 64, 175, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #B0B0B0;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-social-links a:hover {
    background: #1E40AF;
    border-color: #1E40AF;
    color: #FFFFFF;
}

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

.footer-license-bar h4 {
    margin-bottom: 20px;
}

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

.license-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #B0B0B0;
    font-size: 12px;
}

.license-item i {
    font-size: 28px;
    color: #1E40AF;
}

.footer-bottom {
    border-top: 1px solid rgba(30, 64, 175, 0.2);
    padding-top: 20px;
    text-align: center;
}

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

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

.breadcrumb a {
    color: #1E40AF;
}

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

.breadcrumb span {
    color: #B0B0B0;
}

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

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

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

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

.category-desc {
    color: #B0B0B0;
    font-size: 15px;
    line-height: 1.7;
}

/* === PROVIDER TABS === */
.provider-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(30, 64, 175, 0.2);
}

.provider-tab {
    padding: 8px 18px;
    background: transparent;
    border: 1px solid rgba(30, 64, 175, 0.3);
    border-radius: 20px;
    color: #B0B0B0;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.provider-tab:hover,
.provider-tab.active {
    background: #1E40AF;
    border-color: #1E40AF;
    color: #FFFFFF;
}

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

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

/* === PAGINATION === */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.pagination .nav-links {
    display: flex;
    gap: 8px;
    list-style: none;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid rgba(30, 64, 175, 0.3);
    border-radius: 5px;
    color: #B0B0B0;
    font-size: 14px;
    transition: all 0.3s ease;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: #1E40AF;
    border-color: #1E40AF;
    color: #FFFFFF;
}

/* === SINGLE ARTICLE === */
.single-article {
    background: linear-gradient(135deg, #0f1923, #1a2332);
    border: 1px solid rgba(30, 64, 175, 0.2);
    border-radius: 12px;
    padding: 35px;
    margin-bottom: 40px;
}

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

.article-title {
    font-size: 32px;
    color: #FFFFFF;
    margin-bottom: 15px;
    line-height: 1.3;
}

.article-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    color: #B0B0B0;
    font-size: 14px;
}

.article-meta i {
    color: #1E40AF;
    margin-right: 5px;
}

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

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

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

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

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

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

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

.article-content blockquote {
    border-left: 4px solid #1E40AF;
    padding: 15px 20px;
    margin: 20px 0;
    background: rgba(30, 64, 175, 0.1);
    border-radius: 0 8px 8px 0;
    font-style: italic;
}

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

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

.article-tags {
    padding: 20px 0;
    border-top: 1px solid rgba(30, 64, 175, 0.2);
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    color: #B0B0B0;
}

.article-tags i {
    color: #1E40AF;
}

.article-tags span {
    padding: 5px 12px;
    background: rgba(30, 64, 175, 0.1);
    border-radius: 15px;
    font-size: 13px;
}

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

.article-nav-prev a,
.article-nav-next a {
    color: #1E40AF;
    font-weight: 600;
}

.article-nav-prev a:hover,
.article-nav-next a:hover {
    color: #FFFFFF;
}

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

.related-posts-title {
    font-size: 24px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

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

.related-item {
    background: linear-gradient(135deg, #0f1923, #1a2332);
    border: 1px solid rgba(30, 64, 175, 0.2);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: block;
}

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

.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: #FFFFFF;
    line-height: 1.4;
}

/* === PAGE ARTICLE === */
.page-article {
    background: linear-gradient(135deg, #0f1923, #1a2332);
    border: 1px solid rgba(30, 64, 175, 0.2);
    border-radius: 12px;
    padding: 35px;
}

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

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

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

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

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

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

.error-falcon-wing {
    width: 80px;
    height: 50px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1E40AF, #B0B0B0);
    border-radius: 50% 50% 0 0;
    animation: wingFlap 1s ease-in-out infinite;
}

.error-code {
    font-size: 120px;
    color: #1E40AF;
    text-shadow: 0 0 40px rgba(30, 64, 175, 0.5);
    margin-bottom: 10px;
    line-height: 1;
}

.error-title {
    font-size: 28px;
    color: #FFFFFF;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.error-desc {
    color: #B0B0B0;
    font-size: 16px;
    max-width: 500px;
    margin: 0 auto 30px;
    line-height: 1.7;
}


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

.sidebar-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #1E40AF;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 3px 12px rgba(30, 64, 175, 0.4);
}

.sidebar-btn:hover {
    background: #1a3a8f;
    transform: scale(1.1);
    color: #FFFFFF;
}

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

.sidebar-btn-facebook:hover {
    background: #1565d8;
}

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

.sidebar-btn-telegram:hover {
    background: #006faa;
}

.sidebar-label {
    display: none;
}

.sidebar-btn[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    right: 55px;
    top: 50%;
    transform: translateY(-50%);
    background: #0B1426;
    color: #FFFFFF;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    border: 1px solid #1E40AF;
}

/* === SCROLL ANIMATIONS === */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === WIND PARTICLE ELEMENTS === */
.wind-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(30, 64, 175, 0.6);
    border-radius: 50%;
    animation: windParticle 3s linear infinite;
}

.wind-particle:nth-child(2n) {
    width: 3px;
    height: 3px;
    background: rgba(176, 176, 176, 0.5);
    animation-duration: 4s;
}

.wind-particle:nth-child(3n) {
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.4);
    animation-duration: 5s;
}

/* === SHIMMER EFFECT === */
.shimmer {
    background: linear-gradient(90deg, 
        rgba(30, 64, 175, 0) 0%, 
        rgba(30, 64, 175, 0.2) 50%, 
        rgba(30, 64, 175, 0) 100%);
    background-size: 200% 100%;
    animation: shimmer 2s ease-in-out infinite;
}

/* === SELECTION STYLES === */
::selection {
    background: #1E40AF;
    color: #FFFFFF;
}

::-moz-selection {
    background: #1E40AF;
    color: #FFFFFF;
}

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

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

::-webkit-scrollbar-thumb {
    background: #1E40AF;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1a3a8f;
}

/* === FORM STYLES === */
input[type="text"],
input[type="email"],
input[type="search"],
textarea {
    background: #0f1923;
    border: 1px solid rgba(30, 64, 175, 0.3);
    color: #FFFFFF;
    padding: 10px 15px;
    border-radius: 5px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="search"]:focus,
textarea:focus {
    outline: none;
    border-color: #1E40AF;
    box-shadow: 0 0 10px rgba(30, 64, 175, 0.3);
}

button,
input[type="submit"] {
    cursor: pointer;
    font-family: 'Josefin Sans', sans-serif;
}

/* === UTILITY CLASSES === */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }

.p-1 { padding: 10px; }
.p-2 { padding: 20px; }
.p-3 { padding: 30px; }

/* === LOADING SPINNER === */
.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(30, 64, 175, 0.3);
    border-top: 3px solid #1E40AF;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* === TOOLTIP === */
.tooltip {
    position: relative;
}

.tooltip::after {
    content: attr(data-tip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #0B1426;
    color: #FFFFFF;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    border: 1px solid #1E40AF;
}

.tooltip:hover::after {
    opacity: 1;
}

/* === FOCUS VISIBLE === */
*:focus-visible {
    outline: 2px solid #1E40AF;
    outline-offset: 2px;
}

/* === ACCESSIBILITY === */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* === PRINT STYLES === */
@media print {
    .site-header,
    .site-footer,
    .floating-sidebar,
    .announcement-modal,
    .notification-bar {
        display: none !important;
    }
    
    body {
        background: #FFFFFF;
        color: #000000;
    }
    
    a {
        color: #000000;
        text-decoration: underline;
    }
}

