/* ============================================
   COBRAPLAY THEME - main.css (moban-68)
   Cobra Totem Theme with Rising Cobra
   Colors: #0A0F0D bg, #10B981 green, #F59E0B gold
   Fonts: Spectral (headings) + Karla (body)
   ============================================ */

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

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

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

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

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

a:hover {
    color: #F59E0B;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

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

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

.gold-text {
    color: #F59E0B;
}

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

@keyframes scaleShimmer {
    0% { background-position: 0% 0%; opacity: 0.3; }
    50% { background-position: 100% 100%; opacity: 0.6; }
    100% { background-position: 0% 0%; opacity: 0.3; }
}

@keyframes hoodFlare {
    0%, 100% { transform: scaleX(1) scaleY(1); }
    30% { transform: scaleX(1.15) scaleY(1.05); }
    60% { transform: scaleX(1.08) scaleY(1.02); }
}

@keyframes venomDrip {
    0% { transform: translateY(-10px) scaleY(0.5); opacity: 0; }
    20% { opacity: 1; transform: translateY(0) scaleY(1); }
    80% { opacity: 0.8; transform: translateY(40px) scaleY(1.5); }
    100% { opacity: 0; transform: translateY(60px) scaleY(0.3); }
}

@keyframes venomGlow {
    0%, 100% { box-shadow: 0 0 5px rgba(16, 185, 129, 0.3); }
    50% { box-shadow: 0 0 20px rgba(16, 185, 129, 0.8), 0 0 40px rgba(16, 185, 129, 0.3); }
}

@keyframes cobraTongue {
    0%, 70%, 100% { transform: scaleY(0) translateY(-5px); opacity: 0; }
    75% { transform: scaleY(1) translateY(0); opacity: 1; }
    85% { transform: scaleY(1.2) translateY(3px); opacity: 1; }
    95% { transform: scaleY(0.5) translateY(5px); opacity: 0; }
}

@keyframes pulseGold {
    0%, 100% { box-shadow: 0 0 5px rgba(245, 158, 11, 0.3); }
    50% { box-shadow: 0 0 20px rgba(245, 158, 11, 0.6), 0 0 40px rgba(245, 158, 11, 0.2); }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

/* === HEADER === */
.site-header {
    background: linear-gradient(180deg, #0D1A14 0%, #0A0F0D 100%);
    border-bottom: 2px solid rgba(16, 185, 129, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.4));
}

.header-time {
    color: #10B981;
    font-size: 14px;
    font-family: 'Karla', sans-serif;
    letter-spacing: 1px;
}

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

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

.btn-login:hover {
    background: rgba(16, 185, 129, 0.15);
    color: #10B981;
}

.btn-register {
    padding: 8px 20px;
    background: linear-gradient(135deg, #10B981, #059669);
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s;
    border: none;
}

.btn-register:hover {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: #0A0F0D;
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.4);
}

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

.btn-demo:hover {
    background: rgba(245, 158, 11, 0.15);
    color: #F59E0B;
}

/* === NAVIGATION === */
.main-navigation {
    background: rgba(13, 26, 20, 0.95);
    border-top: 1px solid rgba(16, 185, 129, 0.15);
    border-bottom: 1px solid rgba(16, 185, 129, 0.15);
}

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

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 12px 16px;
    color: #E0E8E4;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    border-bottom: 2px solid transparent;
}

.nav-link:hover {
    color: #10B981;
    background: rgba(16, 185, 129, 0.08);
    border-bottom-color: #10B981;
    text-shadow: 0 0 8px rgba(16, 185, 129, 0.3);
}

.nav-link i {
    margin-right: 5px;
    color: #10B981;
}

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

/* === NOTIFICATION BAR === */
.notification-bar {
    background: linear-gradient(90deg, #0D1A14, #102A20, #0D1A14);
    overflow: hidden;
    padding: 8px 0;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}

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

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

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

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

.announcement-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 15, 13, 0.9);
    backdrop-filter: blur(5px);
}

.announcement-content {
    position: relative;
    background: linear-gradient(135deg, #0D1A14, #1A2E25);
    border: 2px solid #10B981;
    border-radius: 16px;
    padding: 35px;
    max-width: 520px;
    width: 90%;
    z-index: 1;
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.3), 0 0 80px rgba(16, 185, 129, 0.1);
    animation: slideUp 0.4s ease-out;
}

.announcement-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: #10B981;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

.announcement-header-icon i {
    font-size: 40px;
    color: #10B981;
    animation: venomGlow 2s infinite;
}

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

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

.announcement-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 8px;
    transition: all 0.3s;
    color: #E0E8E4;
}

.announcement-item:hover {
    background: rgba(16, 185, 129, 0.12);
    border-color: #10B981;
    color: #10B981;
}

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

.announcement-badge.hot { background: #EF4444; color: #fff; }
.announcement-badge.new { background: #10B981; color: #fff; }
.announcement-badge.info { background: #3B82F6; color: #fff; }

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

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

.announcement-cta {
    display: inline-block;
    padding: 12px 40px;
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: #0A0F0D;
    font-weight: 700;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s;
}

.announcement-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(245, 158, 11, 0.4);
    color: #0A0F0D;
}

/* === COBRA HERO SECTION === */
.cobra-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(ellipse at center bottom, #102A20 0%, #0A0F0D 60%, #060A08 100%);
    padding: 60px 20px;
    margin: 0 -15px;
}

.cobra-scale-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(ellipse 20px 25px at 20px 25px, rgba(16, 185, 129, 0.08) 50%, transparent 50%),
        radial-gradient(ellipse 20px 25px at 0px 0px, rgba(16, 185, 129, 0.08) 50%, transparent 50%);
    background-size: 40px 50px;
    animation: scaleShimmer 8s ease-in-out infinite;
    pointer-events: none;
}

.cobra-body {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 300px;
    animation: cobraSway 6s ease-in-out infinite;
    z-index: 1;
    opacity: 0.25;
}

.cobra-hood {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 120px;
    background: radial-gradient(ellipse at center, #10B981 0%, #059669 40%, transparent 70%);
    border-radius: 50% 50% 30% 30%;
    animation: hoodFlare 4s ease-in-out infinite;
}

.cobra-hood-inner {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 60px;
    background: radial-gradient(ellipse at center, #F59E0B 0%, rgba(245, 158, 11, 0.3) 60%, transparent 80%);
    border-radius: 50%;
}

.cobra-eye {
    position: absolute;
    top: 45px;
    width: 12px;
    height: 16px;
    background: #F59E0B;
    border-radius: 50%;
    box-shadow: 0 0 10px #F59E0B, 0 0 20px rgba(245, 158, 11, 0.5);
    z-index: 2;
}

.cobra-eye-left { left: calc(50% - 30px); }
.cobra-eye-right { left: calc(50% + 18px); }

.cobra-tongue {
    position: absolute;
    bottom: 180px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 30px;
    background: #EF4444;
    border-radius: 0 0 2px 2px;
    animation: cobraTongue 5s ease-in-out infinite;
    z-index: 2;
}

.venom-drip {
    position: absolute;
    width: 4px;
    height: 20px;
    background: linear-gradient(180deg, #10B981, rgba(16, 185, 129, 0.2));
    border-radius: 0 0 50% 50%;
    animation: venomDrip 3s ease-in infinite;
    z-index: 1;
}

.venom-drip-1 { left: 30%; top: 20%; animation-delay: 0s; }
.venom-drip-2 { left: 65%; top: 15%; animation-delay: 1.2s; }
.venom-drip-3 { left: 48%; top: 25%; animation-delay: 2.4s; }

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

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

.hero-brand {
    display: block;
    font-size: 52px;
    font-family: 'Spectral', serif;
    font-weight: 700;
    color: #10B981;
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.5), 0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 4px;
}

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

.hero-tagline {
    display: block;
    font-size: 22px;
    color: #F59E0B;
    font-weight: 500;
    letter-spacing: 3px;
}

.hero-description {
    font-size: 16px;
    color: #C0CCC6;
    margin-bottom: 25px;
    line-height: 1.7;
}

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

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

.hero-stat-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #F59E0B;
    font-family: 'Spectral', serif;
}

.hero-stat-label {
    font-size: 13px;
    color: #8AA89C;
}

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

.btn-gold-primary {
    display: inline-block;
    padding: 14px 36px;
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: #0A0F0D;
    font-weight: 700;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-gold-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
    color: #0A0F0D;
}

.btn-outline-gold {
    display: inline-block;
    padding: 14px 36px;
    border: 2px solid #F59E0B;
    color: #F59E0B;
    font-weight: 700;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-outline-gold:hover {
    background: rgba(245, 158, 11, 0.15);
    color: #F59E0B;
    transform: translateY(-3px);
}

/* === SECTION TITLES === */
.section-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 8px;
    font-family: 'Spectral', serif;
    letter-spacing: 1px;
}

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

.section-subtitle {
    text-align: center;
    color: #8AA89C;
    font-size: 15px;
    margin-bottom: 35px;
}

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

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

.cobra-game-card {
    position: relative;
    background: linear-gradient(135deg, #0D1A14, #1A2E25);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s;
    overflow: hidden;
    display: block;
    color: #E0E8E4;
}

.cobra-game-card:hover {
    border-color: #10B981;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
    color: #E0E8E4;
}

.cobra-game-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(16, 185, 129, 0.05) 0%, transparent 60%);
    pointer-events: none;
    transition: opacity 0.4s;
}

.cobra-game-card:hover .cobra-game-glow {
    opacity: 1.5;
}

.cobra-game-icon {
    font-size: 40px;
    color: #10B981;
    margin-bottom: 12px;
    animation: floatY 3s ease-in-out infinite;
}

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

.cobra-game-rating i {
    color: #F59E0B;
    font-size: 12px;
}

.cobra-game-card h3 {
    font-size: 18px;
    color: #F59E0B;
    margin-bottom: 10px;
    font-family: 'Spectral', serif;
}

.cobra-game-card p {
    font-size: 13px;
    color: #8AA89C;
    margin-bottom: 12px;
    line-height: 1.5;
}

.cobra-game-players {
    font-size: 12px;
    color: #10B981;
}

.cobra-game-players i {
    margin-right: 4px;
}

/* === COBRA GRID (3x4) === */
.cobra-grid {
    padding: 50px 0;
    background: linear-gradient(180deg, transparent, rgba(16, 185, 129, 0.03), transparent);
}

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

.cobra-grid-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.cobra-grid-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 20px;
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 10px;
    transition: all 0.3s;
    color: #E0E8E4;
    min-width: 120px;
}

.cobra-grid-node:hover {
    border-color: #10B981;
    background: rgba(16, 185, 129, 0.12);
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
    color: #10B981;
}

.node-scale {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #10B981, #059669);
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
}

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

.cobra-grid-line {
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.3), rgba(245, 158, 11, 0.3));
    flex-shrink: 0;
}

/* === COBRA FEATURES (4 Cards) === */
.cobra-features {
    padding: 50px 0;
}

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

.cobra-feature-card {
    background: linear-gradient(135deg, #0D1A14, #1A2E25);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s;
}

.cobra-feature-card:hover {
    border-color: #F59E0B;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.15);
}

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

.cobra-fang-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    background: linear-gradient(135deg, #10B981, #059669);
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.cobra-fang-icon::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 18px solid #fff;
    margin-top: 5px;
}

.cobra-feature-card h3 {
    font-size: 17px;
    color: #F59E0B;
    margin-bottom: 10px;
    font-family: 'Spectral', serif;
}

.cobra-feature-card p {
    font-size: 13px;
    color: #8AA89C;
    line-height: 1.6;
}

/* === COBRA STATS (4 Counters) === */
.cobra-stats {
    padding: 50px 0;
    position: relative;
}

.cobra-stats-bg {
    position: absolute;
    top: 0;
    left: -15px;
    right: -15px;
    bottom: 0;
    background: linear-gradient(135deg, #0D1A14, #0A0F0D);
    border-top: 2px solid rgba(16, 185, 129, 0.2);
    border-bottom: 2px solid rgba(16, 185, 129, 0.2);
    overflow: hidden;
}

.cobra-scale-pattern-stats {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(ellipse 15px 20px at 15px 20px, rgba(16, 185, 129, 0.05) 50%, transparent 50%),
        radial-gradient(ellipse 15px 20px at 0px 0px, rgba(16, 185, 129, 0.05) 50%, transparent 50%);
    background-size: 30px 40px;
    animation: scaleShimmer 10s ease-in-out infinite;
}

.cobra-stats .section-title,
.cobra-stats .section-subtitle {
    position: relative;
    z-index: 2;
}

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

.cobra-stat-card {
    background: linear-gradient(135deg, #1A2E25, #0D1A14);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    padding: 30px 15px;
    text-align: center;
    transition: all 0.3s;
}

.cobra-stat-card:hover {
    border-color: #10B981;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
    transform: translateY(-3px);
}

.stat-venom-decoration {
    color: #10B981;
    font-size: 18px;
    margin-bottom: 8px;
    opacity: 0.6;
}

.stat-venom-decoration.bottom {
    margin-bottom: 0;
    margin-top: 8px;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #F59E0B;
    font-family: 'Spectral', serif;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 13px;
    color: #8AA89C;
}

/* === COBRA PROMOTIONS (3 Cards) === */
.cobra-promos {
    padding: 50px 0;
}

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

.cobra-promo-card {
    position: relative;
    background: linear-gradient(135deg, #0D1A14, #1A2E25);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s;
}

.cobra-promo-card:hover {
    border-color: #10B981;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
}

.promo-venom-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(16, 185, 129, 0.08), transparent 60%);
    pointer-events: none;
}

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

.cobra-promo-inner .promo-icon {
    font-size: 36px;
    color: #10B981;
    margin-bottom: 15px;
}

.cobra-promo-inner h3 {
    font-size: 18px;
    color: #F59E0B;
    margin-bottom: 10px;
    font-family: 'Spectral', serif;
}

.cobra-promo-inner p {
    font-size: 13px;
    color: #8AA89C;
    margin-bottom: 15px;
    line-height: 1.6;
}

.promo-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 12px;
    color: #8AA89C;
}

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

.promo-badge.hot { background: #EF4444; color: #fff; }
.promo-badge.new { background: #10B981; color: #fff; }
.promo-badge.vip { background: #F59E0B; color: #0A0F0D; }

.btn-promo {
    display: inline-block;
    padding: 10px 30px;
    background: linear-gradient(135deg, #10B981, #059669);
    color: #fff;
    font-weight: 700;
    border-radius: 6px;
    font-size: 13px;
    transition: all 0.3s;
    text-transform: uppercase;
}

.btn-promo:hover {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: #0A0F0D;
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
}

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

.footer-cta-scalefield {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #102A20 0%, #0A0F0D 50%, #102A20 100%);
    border-top: 2px solid rgba(16, 185, 129, 0.2);
    border-bottom: 2px solid rgba(16, 185, 129, 0.2);
}

.cobra-scale-pattern-cta {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(ellipse 18px 22px at 18px 22px, rgba(16, 185, 129, 0.06) 50%, transparent 50%),
        radial-gradient(ellipse 18px 22px at 0px 0px, rgba(16, 185, 129, 0.06) 50%, transparent 50%);
    background-size: 36px 44px;
    animation: scaleShimmer 12s ease-in-out infinite;
}

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

.cta-cobra-decoration {
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.cta-cobra-hood {
    width: 80px;
    height: 60px;
    background: radial-gradient(ellipse at center, rgba(16, 185, 129, 0.4), transparent 70%);
    border-radius: 50% 50% 30% 30%;
    animation: hoodFlare 5s ease-in-out infinite;
    margin: 0 auto;
}

.cta-cobra-inner {
    width: 40px;
    height: 30px;
    background: radial-gradient(ellipse at center, rgba(245, 158, 11, 0.4), transparent 70%);
    border-radius: 50%;
    margin: -15px auto 0;
}

.footer-cta-inner h2 {
    font-size: 32px;
    color: #10B981;
    margin-bottom: 12px;
    font-family: 'Spectral', serif;
    text-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
}

.footer-cta-inner p {
    font-size: 16px;
    color: #C0CCC6;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.cta-feature {
    padding: 8px 16px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 20px;
    font-size: 13px;
    color: #10B981;
}

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

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

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

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

.article-card {
    background: linear-gradient(135deg, #0D1A14, #1A2E25);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
    display: block;
    color: #E0E8E4;
}

.article-card:hover {
    border-color: #10B981;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.15);
    color: #E0E8E4;
}

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

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

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

.article-card-title {
    padding: 12px 15px 5px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    color: #E0E8E4;
    font-family: 'Spectral', serif;
}

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

.article-card-title a:hover {
    color: #10B981;
}

.article-card-meta {
    padding: 0 15px;
    font-size: 12px;
    color: #6B8A7E;
}

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

.article-card-excerpt {
    padding: 8px 15px 15px;
    font-size: 13px;
    color: #8AA89C;
    line-height: 1.5;
}

.article-card-more {
    display: block;
    padding: 10px 15px;
    border-top: 1px solid rgba(16, 185, 129, 0.1);
    color: #10B981;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
}

.article-card-more:hover {
    color: #F59E0B;
    background: rgba(16, 185, 129, 0.05);
}

.view-more-btn {
    display: block;
    text-align: center;
    padding: 12px 30px;
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 8px;
    color: #F59E0B;
    font-weight: 600;
    max-width: 250px;
    margin: 0 auto;
    transition: all 0.3s;
}

.view-more-btn:hover {
    background: rgba(245, 158, 11, 0.1);
    border-color: #F59E0B;
    color: #F59E0B;
}

/* === FOOTER === */
.site-footer {
    background: linear-gradient(180deg, #0A0F0D, #060A08);
    border-top: 2px solid rgba(16, 185, 129, 0.2);
    padding: 50px 0 20px;
    margin-top: 30px;
}

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

.footer-brand-logo img {
    height: 45px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.3));
}

.footer-brand-text {
    font-size: 13px;
    color: #8AA89C;
    line-height: 1.7;
    margin-bottom: 12px;
}

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

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

.footer-social-links a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50%;
    color: #10B981;
    transition: all 0.3s;
}

.footer-social-links a:hover {
    background: #10B981;
    color: #0A0F0D;
}

.footer-col h4 {
    font-size: 15px;
    color: #F59E0B;
    margin-bottom: 15px;
    font-family: 'Spectral', serif;
}

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

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

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

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

/* License Bar */
.footer-license-bar {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid rgba(16, 185, 129, 0.1);
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
    margin-bottom: 20px;
}

.footer-license-bar h4 {
    font-size: 15px;
    color: #F59E0B;
    margin-bottom: 15px;
    font-family: 'Spectral', serif;
}

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

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

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

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 15px;
}

.footer-copyright {
    font-size: 13px;
    color: #6B8A7E;
}

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

.sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #1A2E25, #0D1A14);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50%;
    color: #10B981;
    font-size: 18px;
    transition: all 0.3s;
    position: relative;
}

.sidebar-btn:hover {
    background: #10B981;
    color: #0A0F0D;
    transform: scale(1.1);
}

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

.sidebar-label {
    display: none;
    position: absolute;
    right: 52px;
    background: #1A2E25;
    color: #10B981;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

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

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

.breadcrumb a {
    color: #10B981;
}

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

.breadcrumb span {
    color: #6B8A7E;
}

/* === CONTENT AREA === */
.content-area {
    display: flex;
    gap: 25px;
    padding: 10px 0;
}

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

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

.category-title {
    font-size: 28px;
    font-family: 'Spectral', serif;
    margin-bottom: 8px;
}

.category-desc {
    color: #8AA89C;
    font-size: 14px;
}

/* === PROVIDER TABS === */
.provider-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 25px;
}

.provider-tab {
    padding: 8px 18px;
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 20px;
    color: #8AA89C;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
}

.provider-tab:hover,
.provider-tab.active {
    background: #10B981;
    color: #0A0F0D;
    border-color: #10B981;
    font-weight: 600;
}

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

/* === SINGLE ARTICLE === */
.single-article {
    background: linear-gradient(135deg, #0D1A14, #1A2E25);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
}

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

.article-title {
    font-size: 28px;
    color: #F59E0B;
    margin-bottom: 12px;
    font-family: 'Spectral', serif;
}

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

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

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

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

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

.article-content h2,
.article-content h3 {
    color: #F59E0B;
    margin: 20px 0 10px;
    font-family: 'Spectral', serif;
}

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

.article-content a {
    color: #10B981;
    text-decoration: underline;
}

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

.article-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    padding-top: 15px;
    border-top: 1px solid rgba(16, 185, 129, 0.1);
    margin-top: 20px;
}

.article-tags i {
    color: #10B981;
}

.article-tags span {
    padding: 4px 12px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 15px;
    font-size: 12px;
    color: #10B981;
}

/* Article Navigation */
.article-nav {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1px solid rgba(16, 185, 129, 0.1);
    margin-top: 20px;
}

.article-nav-prev a,
.article-nav-next a {
    color: #10B981;
    font-size: 14px;
}

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

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

.related-posts-title {
    font-size: 20px;
    margin-bottom: 20px;
    font-family: 'Spectral', serif;
}

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

.related-item {
    background: linear-gradient(135deg, #0D1A14, #1A2E25);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
    display: block;
    color: #E0E8E4;
}

.related-item:hover {
    border-color: #10B981;
    transform: translateY(-2px);
    color: #E0E8E4;
}

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

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

.related-item-title {
    padding: 10px;
    font-size: 13px;
    color: #E0E8E4;
    font-family: 'Spectral', serif;
}

/* === PAGE === */
.page-article {
    background: linear-gradient(135deg, #0D1A14, #1A2E25);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 12px;
    padding: 30px;
}

.page-title {
    font-size: 28px;
    color: #F59E0B;
    margin-bottom: 20px;
    font-family: 'Spectral', serif;
}

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

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

.page-content h2,
.page-content h3 {
    color: #F59E0B;
    margin: 20px 0 10px;
}

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

/* === PAGINATION === */
.pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
    padding: 20px 0;
}

.pagination .nav-links {
    display: flex;
    gap: 5px;
}

.pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 6px;
    color: #8AA89C;
    font-size: 14px;
    transition: all 0.3s;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: #10B981;
    color: #0A0F0D;
    border-color: #10B981;
}

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

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

.error-cobra {
    margin: 0 auto 30px;
    position: relative;
    width: 100px;
    height: 80px;
}

.error-cobra-hood {
    width: 100px;
    height: 70px;
    background: radial-gradient(ellipse at center, rgba(16, 185, 129, 0.3), transparent 70%);
    border-radius: 50% 50% 30% 30%;
    animation: hoodFlare 4s ease-in-out infinite;
}

.error-cobra-inner {
    width: 50px;
    height: 35px;
    background: radial-gradient(ellipse at center, rgba(245, 158, 11, 0.3), transparent 70%);
    border-radius: 50%;
    margin: -20px auto 0;
}

.error-code {
    font-size: 80px;
    color: #10B981;
    font-family: 'Spectral', serif;
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
    margin-bottom: 10px;
}

.error-title {
    font-size: 24px;
    color: #F59E0B;
    margin-bottom: 15px;
    font-family: 'Spectral', serif;
}

.error-desc {
    font-size: 15px;
    color: #8AA89C;
    margin-bottom: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* === HOME NEWS PLACEHOLDER === */
.home-news-placeholder {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
