/* ==========================================================================
   AriyoGame - Cyberpunk Dark & Gold Design System
   ========================================================================== */

:root {
    /* Color Palette */
    --bg-main: #070709;
    --bg-card: rgba(16, 16, 22, 0.75);
    --bg-card-hover: rgba(24, 24, 34, 0.9);
    --bg-glass: rgba(13, 13, 18, 0.85);
    --border-subtle: rgba(245, 158, 11, 0.15);
    --border-bright: rgba(245, 158, 11, 0.5);
    --border-strong: #f59e0b;
    
    /* Luxury Gold Gradients */
    --gold-100: #fef3c7;
    --gold-300: #fcd34d;
    --gold-400: #fbbf24;
    --gold-500: #f59e0b;
    --gold-600: #d97706;
    --gold-700: #b45309;
    --gold-gradient: linear-gradient(135deg, #fff2a3 0%, #fbbf24 35%, #f59e0b 70%, #b45309 100%);
    --gold-gradient-soft: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(245, 158, 11, 0.03) 100%);
    --card-gradient: linear-gradient(180deg, rgba(26, 26, 36, 0.7) 0%, rgba(13, 13, 18, 0.85) 100%);

    /* Typography Colors */
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --text-dim: #6b7280;
    --text-gold: #fbbf24;

    /* Status Colors */
    --status-online: #10b981;
    --status-online-glow: rgba(16, 185, 129, 0.35);
    --status-offline: #ef4444;

    /* Glows & Shadows */
    --glow-gold-sm: 0 0 15px rgba(245, 158, 11, 0.3);
    --glow-gold-md: 0 0 25px rgba(245, 158, 11, 0.45);
    --glow-gold-lg: 0 0 45px rgba(245, 158, 11, 0.65);
    --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.8);

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base Setup */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Vazirmatn', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.7;
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #09090d;
}
::-webkit-scrollbar-thumb {
    background: #2a2a38;
    border-radius: 4px;
    border: 1px solid var(--border-subtle);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-500);
}

/* Canvas Background & Ambient Glow */
#cyberCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.45;
}

.ambient-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
    z-index: 0;
}

.glow-top {
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.18) 0%, rgba(245, 158, 11, 0) 70%);
}

.glow-bottom {
    bottom: 5%;
    right: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.12) 0%, rgba(0, 0, 0, 0) 70%);
}

/* Typography Utilities */
.en-num {
    font-family: 'Orbitron', 'Rajdhani', sans-serif;
    letter-spacing: 0.5px;
}

.gold-gradient-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    font-weight: 800;
}

.gold-text {
    color: var(--gold-400);
}

.text-center {
    text-align: center;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

/* ==========================================================================
   Cyber Button Styles
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    font-family: inherit;
    font-weight: 700;
    padding: 0.75rem 1.6rem;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-fast);
    border: 1px solid transparent;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    user-select: none;
}

.btn-sm {
    padding: 0.5rem 1.1rem;
    font-size: 0.85rem;
    border-radius: 6px;
}

.btn-lg {
    padding: 0.95rem 2rem;
    font-size: 1.05rem;
    border-radius: 10px;
}

.btn-block {
    width: 100%;
}

.btn-gold {
    background: var(--gold-gradient);
    color: #0d0d12;
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.35);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-gold-md);
    filter: brightness(1.1);
}

.btn-gold:active {
    transform: translateY(0);
}

.btn-glow {
    position: relative;
}
.btn-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition-fast);
    pointer-events: none;
}
.btn-glow:hover::after {
    opacity: 1;
}

.btn-cyber-outline {
    background: rgba(18, 18, 25, 0.7);
    color: var(--gold-300);
    border: 1px solid var(--border-bright);
    backdrop-filter: blur(8px);
}

.btn-cyber-outline:hover {
    background: rgba(245, 158, 11, 0.15);
    border-color: var(--gold-400);
    color: #ffffff;
    box-shadow: var(--glow-gold-sm);
    transform: translateY(-2px);
}

.btn-discord {
    background: #5865F2;
    color: #ffffff;
    box-shadow: 0 4px 18px rgba(88, 101, 242, 0.4);
}
.btn-discord:hover {
    background: #4752c4;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(88, 101, 242, 0.6);
}

/* ==========================================================================
   Header Navigation
   ========================================================================== */
.cyber-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(9, 9, 13, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-subtle);
    transition: all var(--transition-fast);
}

.cyber-header.scrolled {
    background: rgba(7, 7, 10, 0.95);
    border-bottom-color: var(--border-bright);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 82px;
    max-width: 1440px;
}

.brand-wrapper {
    display: flex;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    text-decoration: none;
    color: inherit;
}

.logo-box {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--gold-500);
    box-shadow: var(--glow-gold-sm);
    background: #121218;
}

.brand-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    border: 1px solid var(--gold-400);
    animation: pulseRing 2.5s infinite;
    pointer-events: none;
}

@keyframes pulseRing {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.4); opacity: 0; }
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: #ffffff;
    line-height: 1.2;
}

.brand-sub {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--gold-400);
    letter-spacing: 1.8px;
}
/* ==========================================================================
   Header Navigation & Dropdown - Robust Clean Redesign
   ========================================================================== */
.nav-menu {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links,
ul.nav-links {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    list-style: none !important;
    list-style-type: none !important;
    gap: 1.2rem;
    margin: 0 !important;
    padding: 0 !important;
}

.nav-links > li {
    display: inline-flex !important;
    align-items: center !important;
    list-style: none !important;
    list-style-type: none !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
    padding: 0.5rem 0.4rem;
    white-space: nowrap;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link i {
    font-size: 0.9rem;
    color: var(--text-dim);
    transition: color var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
    color: #ffffff;
}

.nav-link:hover i, .nav-link.active i {
    color: var(--gold-400);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 0%;
    height: 2px;
    background: var(--gold-gradient);
    transition: width var(--transition-fast);
    border-radius: 2px;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Nav Dropdown Styling */
li.nav-dropdown {
    position: relative;
    list-style: none !important;
    display: inline-flex !important;
    align-items: center;
}

.dropdown-toggle {
    cursor: pointer;
    user-select: none;
}

.dropdown-arrow {
    font-size: 0.75rem !important;
    margin-right: 0.3rem;
    transition: transform var(--transition-fast);
}

li.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu,
ul.dropdown-menu {
    position: absolute !important;
    top: calc(100% + 8px) !important;
    right: 0 !important;
    min-width: 255px !important;
    background: #0f1017 !important;
    border: 1px solid rgba(245, 158, 11, 0.25) !important;
    border-radius: 12px !important;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.9), 0 0 20px rgba(245, 158, 11, 0.15) !important;
    padding: 0.6rem !important;
    list-style: none !important;
    list-style-type: none !important;
    margin: 0 !important;
    display: none !important;
    flex-direction: column !important;
    gap: 0.35rem !important;
    z-index: 9999 !important;
}

li.nav-dropdown:hover .dropdown-menu {
    display: flex !important;
}

.dropdown-menu > li {
    list-style: none !important;
    list-style-type: none !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
}

.dropdown-menu > li > a {
    display: flex !important;
    align-items: center !important;
    gap: 0.65rem !important;
    padding: 0.65rem 0.9rem !important;
    color: var(--text-muted) !important;
    font-size: 0.86rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    border-radius: 8px !important;
    transition: all var(--transition-fast) !important;
    background: transparent !important;
}

.dropdown-menu > li > a:hover {
    background: rgba(245, 158, 11, 0.12) !important;
    color: #ffffff !important;
    transform: translateX(-4px) !important;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--border-subtle);
    color: var(--gold-400);
    width: 44px;
    height: 44px;
    border-radius: 8px;
    font-size: 1.2rem;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    padding: 4.5rem 0 5rem;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    align-items: center;
}

.cyber-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 1.1rem;
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.35);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gold-300);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--status-online);
    box-shadow: 0 0 10px var(--status-online);
    animation: blink 1.6s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.85); }
}

.hero-title {
    font-size: 2.9rem;
    font-weight: 900;
    line-height: 1.35;
    color: #ffffff;
    margin-bottom: 1.4rem;
}

.hero-description {
    font-size: 1.08rem;
    color: var(--text-muted);
    margin-bottom: 2.2rem;
    max-width: 580px;
    line-height: 1.85;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-bottom: 3.2rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    padding: 1.2rem 1.6rem;
    background: var(--card-gradient);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-card);
    width: fit-content;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-400);
    font-size: 1.2rem;
}

.stat-data {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: 'Orbitron', 'Vazirmatn', sans-serif;
    font-size: 1.45rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.stat-separator {
    width: 1px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Visual / Shield Graphics */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cyber-shield-display {
    position: relative;
    width: 380px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(245, 158, 11, 0.25);
    pointer-events: none;
}

.ring-outer {
    width: 370px;
    height: 370px;
    border-width: 1.5px;
    border-color: rgba(245, 158, 11, 0.2);
    animation: spinClockwise 30s linear infinite;
}

.ring-middle {
    width: 310px;
    height: 310px;
    border: 2px solid rgba(245, 158, 11, 0.15);
    border-top-color: var(--gold-400);
    border-bottom-color: var(--gold-500);
    animation: spinCounter 18s linear infinite;
}

.ring-inner {
    width: 250px;
    height: 250px;
    border: 1px dotted rgba(245, 158, 11, 0.4);
    animation: spinClockwise 12s linear infinite;
}

@keyframes spinClockwise {
    100% { transform: rotate(360deg); }
}
@keyframes spinCounter {
    100% { transform: rotate(-360deg); }
}

.shield-card-glow {
    position: absolute;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.35) 0%, transparent 70%);
    filter: blur(25px);
    pointer-events: none;
}

.hero-emblem {
    width: 240px;
    height: 240px;
    border-radius: 26px;
    object-fit: cover;
    z-index: 2;
    border: 2px solid var(--gold-400);
    box-shadow: var(--glow-gold-lg);
    transition: transform 0.4s ease;
}

.hero-emblem:hover {
    transform: scale(1.04) rotate(-1deg);
}

.floating-cyber-card {
    position: absolute;
    background: rgba(14, 14, 20, 0.88);
    border: 1px solid var(--border-bright);
    padding: 0.65rem 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    backdrop-filter: blur(14px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6), var(--glow-gold-sm);
    z-index: 3;
    animation: floatAnim 4s ease-in-out infinite alternate;
}

.top-right-tag {
    top: 25px;
    right: -20px;
}

.bottom-left-tag {
    bottom: 25px;
    left: -20px;
    animation-delay: -2s;
}

@keyframes floatAnim {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

.fcc-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(245, 158, 11, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-400);
    font-size: 0.95rem;
}

.fcc-icon.online-dot {
    color: var(--status-online);
    background: rgba(16, 185, 129, 0.15);
}

.fcc-info {
    display: flex;
    flex-direction: column;
}

.fcc-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: #ffffff;
}

.fcc-sub {
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Section General Styling
   ========================================================================== */
.section {
    padding: 5.5rem 0;
    position: relative;
}

.section-header {
    margin-bottom: 3.2rem;
}

.section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold-400);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 2.3rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 0.9rem;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 680px;
    margin: 0 auto;
}

/* ==========================================================================
   Server Browser Section
   ========================================================================== */
.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.8rem;
}

.filter-btn {
    background: rgba(18, 18, 25, 0.7);
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    padding: 0.6rem 1.3rem;
    border-radius: 50px;
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    transition: all var(--transition-fast);
    backdrop-filter: blur(8px);
}

.filter-btn:hover {
    color: #ffffff;
    border-color: var(--border-bright);
    background: rgba(245, 158, 11, 0.08);
}

.filter-btn.active {
    background: var(--gold-gradient);
    color: #0d0d12;
    border-color: transparent;
    font-weight: 800;
    box-shadow: var(--glow-gold-sm);
}

.servers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.6rem;
}

.server-card {
    background: var(--card-gradient);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all var(--transition-smooth);
    position: relative;
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
}

.server-card:hover {
    border-color: var(--border-bright);
    transform: translateY(-5px);
    box-shadow: 0 12px 35px -5px rgba(0, 0, 0, 0.9), var(--glow-gold-sm);
}

.server-card.featured-server {
    border-color: rgba(245, 158, 11, 0.45);
    background: linear-gradient(180deg, rgba(34, 30, 24, 0.8) 0%, rgba(14, 14, 19, 0.9) 100%);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: linear-gradient(135deg, #ef4444, #f59e0b);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.25rem 0.8rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.server-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.game-tag {
    font-family: 'Orbitron', 'Vazirmatn', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.3rem 0.85rem;
    border-radius: 6px;
    letter-spacing: 0.5px;
}

.fivem-tag { background: rgba(249, 115, 22, 0.18); color: #fb923c; border: 1px solid rgba(249, 115, 22, 0.3); }
.cs2-tag { background: rgba(234, 179, 8, 0.18); color: #facc15; border: 1px solid rgba(234, 179, 8, 0.3); }
.mc-tag { background: rgba(34, 197, 94, 0.18); color: #4ade80; border: 1px solid rgba(34, 197, 94, 0.3); }
.rust-tag { background: rgba(239, 68, 68, 0.18); color: #f87171; border: 1px solid rgba(239, 68, 68, 0.3); }

.server-status {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.25rem 0.65rem;
    border-radius: 50px;
}

.server-status.online {
    background: rgba(16, 185, 129, 0.12);
    color: var(--status-online);
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.status-pulse {
    width: 6px;
    height: 6px;
    background-color: var(--status-online);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--status-online);
    animation: blink 1.6s infinite;
}

.server-body {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.server-name {
    font-size: 1.18rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.45rem;
    line-height: 1.4;
}

.server-desc {
    font-size: 0.87rem;
    color: var(--text-muted);
    margin-bottom: 1.1rem;
    line-height: 1.55;
}

.server-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 1.2rem;
}

.spec-badge {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.3rem 0.7rem;
    border-radius: 6px;
    font-size: 0.78rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.spec-badge i {
    color: var(--gold-400);
}

.server-progress-wrap {
    margin-bottom: 1.1rem;
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gold-gradient);
    border-radius: 10px;
    transition: width 0.8s ease;
}

.progress-fill.full-fill {
    background: linear-gradient(90deg, #f59e0b, #ef4444);
}

.server-address-box {
    background: #09090d;
    border: 1px dashed var(--border-subtle);
    padding: 0.6rem 0.9rem;
    border-radius: 8px;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.addr-label {
    font-size: 0.76rem;
    color: var(--text-dim);
}

.server-ip {
    font-family: 'Orbitron', monospace;
    font-size: 0.82rem;
    color: var(--gold-300);
    direction: ltr;
    letter-spacing: 0.3px;
}

.server-card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    margin-top: auto;
}

/* ==========================================================================
   Game Server Store / Pricing Section
   ========================================================================== */
.store-section {
    background: linear-gradient(180deg, rgba(10, 10, 14, 0) 0%, rgba(14, 14, 20, 0.6) 50%, rgba(10, 10, 14, 0) 100%);
}

.billing-switch-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.1rem;
    margin-bottom: 3.5rem;
}

.cycle-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-muted);
    transition: color var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cycle-label.active {
    color: #ffffff;
}

.discount-pill {
    background: rgba(245, 158, 11, 0.18);
    border: 1px solid var(--border-bright);
    color: var(--gold-300);
    font-size: 0.72rem;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
}

.cyber-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 32px;
}

.cyber-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #1a1a24;
    border: 1px solid var(--border-bright);
    transition: var(--transition-fast);
    border-radius: 34px;
}

.slider::before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 4px;
    bottom: 3px;
    background: var(--gold-gradient);
    transition: var(--transition-fast);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

input:checked + .slider {
    background-color: #242436;
}

input:checked + .slider::before {
    transform: translateX(28px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(275px, 1fr));
    gap: 1.8rem;
}

.pricing-card {
    background: var(--card-gradient);
    border: 1px solid var(--border-subtle);
    border-radius: 18px;
    padding: 2rem 1.6rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all var(--transition-smooth);
    box-shadow: var(--shadow-card);
}

.pricing-card:hover {
    border-color: var(--border-bright);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.9), var(--glow-gold-sm);
}

.pricing-card.popular-plan {
    border-color: var(--gold-500);
    background: linear-gradient(180deg, rgba(32, 28, 20, 0.9) 0%, rgba(15, 15, 21, 0.95) 100%);
    box-shadow: 0 10px 30px -10px rgba(245, 158, 11, 0.25);
}

.plan-ribbon {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-gradient);
    color: #0d0d12;
    font-size: 0.78rem;
    font-weight: 800;
    padding: 0.35rem 1.2rem;
    border-radius: 50px;
    box-shadow: var(--glow-gold-md);
    white-space: nowrap;
}

.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.plan-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.cs2-color { background: rgba(234, 179, 8, 0.15); color: #facc15; border: 1px solid rgba(234, 179, 8, 0.3); }
.fivem-color { background: rgba(249, 115, 22, 0.15); color: #fb923c; border: 1px solid rgba(249, 115, 22, 0.3); }
.mc-color { background: rgba(34, 197, 94, 0.15); color: #4ade80; border: 1px solid rgba(34, 197, 94, 0.3); }
.voice-color { background: rgba(168, 85, 247, 0.15); color: #c084fc; border: 1px solid rgba(168, 85, 247, 0.3); }

.plan-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.4rem;
}

.plan-target {
    font-size: 0.8rem;
    color: var(--text-muted);
    min-height: 38px;
    line-height: 1.45;
}

.price-box {
    text-align: center;
    padding: 1.2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 1.6rem;
}

.currency {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-left: 0.3rem;
}

.price-value {
    font-family: 'Orbitron', 'Vazirmatn', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold-300);
}

.price-period {
    font-size: 0.8rem;
    color: var(--text-dim);
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    flex: 1;
}

.plan-features li {
    font-size: 0.85rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.plan-features li i {
    color: var(--gold-400);
    font-size: 0.85rem;
    width: 16px;
    text-align: center;
}

.pricing-action {
    margin-top: auto;
}

/* ==========================================================================
   Features Section
   ========================================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.6rem;
}

.feature-card {
    background: var(--card-gradient);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 2rem 1.8rem;
    transition: all var(--transition-fast);
}

.feature-card:hover {
    border-color: var(--border-bright);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    color: var(--gold-400);
    margin-bottom: 1.3rem;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.6rem;
}

.feature-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ==========================================================================
   Community Section
   ========================================================================== */
.community-banner {
    background: linear-gradient(135deg, rgba(20, 20, 30, 0.95) 0%, rgba(12, 12, 18, 0.95) 100%);
    border: 1px solid var(--border-bright);
    border-radius: 24px;
    padding: 3.5rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card), var(--glow-gold-sm);
}

.community-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.community-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gold-400);
    background: rgba(245, 158, 11, 0.12);
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 1.2rem;
}

.community-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1.1rem;
    line-height: 1.35;
}

.community-desc {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2.2rem;
}

.community-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.1rem;
}

.discord-card-mockup {
    background: #1e1f29;
    border: 1px solid rgba(88, 101, 242, 0.3);
    border-radius: 16px;
    padding: 1.6rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.dcm-header {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 1.2rem;
}

.dcm-avatar img {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: 2px solid var(--gold-500);
}

.dcm-title h4 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #ffffff;
}

.dcm-status {
    font-size: 0.78rem;
    color: var(--status-online);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.pulse-dot {
    width: 7px;
    height: 7px;
    background: var(--status-online);
    border-radius: 50%;
    animation: blink 1.6s infinite;
}

.dcm-channels {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.channel-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 0.8rem;
    border-radius: 6px;
    font-size: 0.85rem;
    color: #949ba4;
    transition: all var(--transition-fast);
}

.channel-item.active, .channel-item:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}

/* ==========================================================================
   Cyber Footer
   ========================================================================== */
.cyber-footer {
    background: #050508;
    border-top: 1px solid var(--border-subtle);
    padding: 4.5rem 0 2rem;
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 3.5rem;
}

.brand-col .brand-wrapper {
    margin-bottom: 1.2rem;
}

.footer-about {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.6rem;
}

.social-links {
    display: flex;
    gap: 0.7rem;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.social-btn:hover {
    color: #ffffff;
    background: rgba(245, 158, 11, 0.15);
    border-color: var(--gold-400);
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.3rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 28px;
    height: 2px;
    background: var(--gold-400);
}

.footer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    transition: all var(--transition-fast);
}

.footer-nav a i {
    font-size: 0.7rem;
    color: var(--gold-500);
    transition: transform var(--transition-fast);
}

.footer-nav a:hover {
    color: var(--gold-300);
    transform: translateX(-4px);
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 1.5rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.8rem;
    color: var(--gold-400);
    background: rgba(245, 158, 11, 0.07);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-dim);
}

/* ==========================================================================
   Modals & Popups
   ========================================================================== */
.cyber-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-smooth);
    padding: 1.5rem;
}

.cyber-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cyber-modal {
    background: #101016;
    border: 1px solid var(--border-bright);
    border-radius: 20px;
    width: 100%;
    max-width: 480px;
    padding: 2.2rem;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9), var(--glow-gold-md);
    transform: scale(0.92);
    transition: transform var(--transition-smooth);
}

.cyber-modal.order-dialog {
    max-width: 540px;
}

.cyber-modal-overlay.active .cyber-modal {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.modal-close:hover {
    color: #ffffff;
    border-color: var(--gold-400);
    background: rgba(245, 158, 11, 0.2);
}

.modal-logo img {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    border: 2px solid var(--gold-500);
    margin-bottom: 0.8rem;
    box-shadow: var(--glow-gold-sm);
}

.modal-title {
    font-size: 1.45rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 0.3rem;
}

.modal-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.modal-tabs {
    display: flex;
    background: #09090e;
    padding: 0.35rem;
    border-radius: 10px;
    margin-bottom: 1.8rem;
    border: 1px solid var(--border-subtle);
}

.modal-tab {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 0.65rem;
    font-family: inherit;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.modal-tab.active {
    background: var(--gold-gradient);
    color: #0d0d12;
    box-shadow: var(--glow-gold-sm);
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.form-group label i {
    color: var(--gold-400);
    margin-left: 0.3rem;
}

.cyber-input {
    width: 100%;
    background: #09090d;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 0.8rem 1rem;
    color: #ffffff;
    font-family: inherit;
    font-size: 0.92rem;
    transition: all var(--transition-fast);
}

.cyber-input:focus {
    outline: none;
    border-color: var(--gold-400);
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.35);
    background: #0e0e14;
}

.password-wrap {
    position: relative;
}

.pwd-toggle {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--text-dim);
    cursor: pointer;
    font-size: 0.95rem;
}

.pwd-toggle:hover {
    color: var(--gold-400);
}

.remember-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
    margin-bottom: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--text-muted);
    cursor: pointer;
}

.gold-link {
    color: var(--gold-400);
    text-decoration: none;
}
.gold-link:hover {
    text-decoration: underline;
}

.hidden {
    display: none !important;
}

.modal-footer {
    margin-top: 1.5rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.secure-text {
    font-size: 0.75rem;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

/* Order Configurator Details */
.modal-icon-badge {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(245, 158, 11, 0.15);
    color: var(--gold-400);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.config-section {
    margin-bottom: 1.4rem;
}

.config-label {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.6rem;
}

.location-picker {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.loc-option input {
    display: none;
}

.loc-box {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    background: #09090e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.8rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.loc-box strong {
    font-size: 0.85rem;
    color: #ffffff;
}

.loc-box small {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.loc-option.active .loc-box, .loc-option input:checked + .loc-box {
    border-color: var(--gold-400);
    background: rgba(245, 158, 11, 0.1);
    box-shadow: var(--glow-gold-sm);
}

.hostname-input-wrap {
    display: flex;
    align-items: center;
    background: #09090d;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    overflow: hidden;
}

.hostname-input-wrap input {
    border: none;
    background: transparent;
}

.hostname-suffix {
    padding: 0 1rem;
    font-family: 'Orbitron', monospace;
    font-size: 0.85rem;
    color: var(--gold-400);
    background: rgba(255, 255, 255, 0.04);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    display: flex;
    align-items: center;
}

.order-summary-card {
    background: #0a0a0f;
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 1.2rem;
    margin-bottom: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
    margin-bottom: 0.6rem;
    color: var(--text-muted);
}

.summary-row strong {
    color: #ffffff;
}

.summary-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 0.8rem 0;
}

.total-row {
    font-size: 1rem;
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 0;
}

.total-price {
    font-family: 'Orbitron', 'Vazirmatn', sans-serif;
    font-size: 1.25rem;
    color: var(--gold-300);
}

/* ==========================================================================
   Cyber Toast Notification
   ========================================================================== */
.cyber-toast {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: rgba(14, 14, 20, 0.95);
    border: 1px solid var(--gold-400);
    border-radius: 14px;
    padding: 1rem 1.4rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.8), var(--glow-gold-md);
    backdrop-filter: blur(14px);
    z-index: 2000;
    transform: translateY(120px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cyber-toast.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.toast-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(16, 185, 129, 0.15);
    color: var(--status-online);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.toast-title {
    font-size: 0.92rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.2rem;
}

.toast-message {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .community-banner {
        grid-template-columns: 1fr;
        padding: 2.5rem;
        text-align: center;
    }

    .community-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 1200px) {
    .nav-links {
        gap: 0.75rem;
    }
    .nav-link {
        font-size: 0.85rem;
        padding: 0.4rem 0.25rem;
    }
    .nav-link i {
        font-size: 0.82rem;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 82px;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: calc(100vh - 82px);
        background: rgba(10, 10, 15, 0.98);
        border-left: 1px solid var(--border-bright);
        backdrop-filter: blur(20px);
        padding: 2rem 1.5rem;
        transition: right var(--transition-smooth);
        box-shadow: -10px 0 30px rgba(0,0,0,0.8);
        z-index: 999;
        display: flex;
        flex-direction: column;
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.2rem;
        width: 100%;
    }

    .nav-links > li {
        width: 100%;
    }

    .nav-link {
        width: 100%;
        font-size: 1rem;
        padding: 0.6rem 0.5rem;
    }

    .nav-link i {
        display: inline-block;
        font-size: 1.1rem;
    }

    .mobile-toggle {
        display: flex;
    }

    li.nav-dropdown {
        width: 100%;
        display: flex !important;
        flex-direction: column;
    }

    .nav-menu .dropdown-menu {
        position: static !important;
        box-shadow: none !important;
        background: rgba(255,255,255,0.04) !important;
        border: 1px solid rgba(255,255,255,0.08) !important;
        margin-top: 0.5rem;
        display: flex !important;
        padding: 0.4rem !important;
        width: 100% !important;
    }
}

@media (max-width: 768px) {

    .hero-title {
        font-size: 2.1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .stat-separator {
        width: 100%;
        height: 1px;
    }

    .cyber-shield-display {
        width: 290px;
        height: 290px;
    }

    .ring-outer { width: 280px; height: 280px; }
    .ring-middle { width: 240px; height: 240px; }
    .ring-inner { width: 200px; height: 200px; }
    .hero-emblem { width: 180px; height: 180px; }

    .floating-cyber-card {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }

    .cyber-toast {
        left: 15px;
        right: 15px;
        bottom: 15px;
    }
}

/* ==========================================================================
   Global Announcement Bar & Maintenance Mode
   ========================================================================== */
.global-announcement-bar {
    background: linear-gradient(90deg, #b45309 0%, #f59e0b 50%, #d97706 100%);
    color: #0d0d12;
    padding: 0.55rem 0;
    font-size: 0.88rem;
    font-weight: 700;
    position: relative;
    z-index: 101;
    box-shadow: 0 2px 15px rgba(245, 158, 11, 0.4);
}

.announcement-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    position: relative;
}

.announcement-badge {
    background: rgba(0, 0, 0, 0.25);
    padding: 0.2rem 0.65rem;
    border-radius: 4px;
    font-size: 0.78rem;
}

.announcement-text {
    flex: 1;
    text-align: center;
}

.announcement-close {
    background: transparent;
    border: none;
    color: #0d0d12;
    cursor: pointer;
    font-size: 1rem;
    padding: 0 0.5rem;
}

.maintenance-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(20, 18, 14, 0.98) 0%, rgba(7, 7, 10, 0.99) 100%);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    backdrop-filter: blur(25px);
}

.maintenance-box {
    background: #0f0f15;
    border: 2px solid var(--gold-400);
    border-radius: 24px;
    padding: 3.5rem 2.5rem;
    max-width: 600px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.95), var(--glow-gold-lg);
    animation: fadeIn 0.4s ease;
}

.maint-icon-badge {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: rgba(245, 158, 11, 0.15);
    border: 2px solid var(--gold-400);
    color: var(--gold-400);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    margin: 0 auto 1.5rem;
    box-shadow: var(--glow-gold-md);
    animation: pulseRing 3s infinite;
}

.maint-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1rem;
}

.maint-desc {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 2rem;
}

.coming-soon-banner {
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.coming-soon-pill {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid var(--border-bright);
    color: var(--gold-300);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.55rem 1.4rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: var(--glow-gold-sm);
}

.coming-soon-text {
    font-size: 1.7rem !important;
    color: var(--gold-400) !important;
    letter-spacing: 1px;
}

/* ==========================================================================
   Cyber Canvas & Public Pages Layout Fix
   ========================================================================== */
#cyberCanvas {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    pointer-events: none !important;
    z-index: 0 !important;
}

.public-page-body {
    background-color: #07070a;
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

.public-page-body .cyber-header {
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    flex-shrink: 0;
}

.public-page-body main {
    flex: 1 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.public-page-body footer {
    width: 100%;
    margin-top: auto;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

/* ==========================================================================
   Floating Cyber Synthwave Radio Widget
   ========================================================================== */
.cyber-radio-widget {
    position: fixed;
    bottom: 25px;
    left: 25px;
    background: rgba(13, 13, 20, 0.94);
    border: 1px solid var(--gold-400);
    box-shadow: 0 0 25px rgba(245, 158, 11, 0.4);
    border-radius: 50px;
    padding: 0.5rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    z-index: 999;
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
}

.cyber-radio-widget:hover {
    box-shadow: 0 0 35px rgba(245, 158, 11, 0.7);
    transform: translateY(-2px);
}

.radio-play-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gold-gradient);
    border: none;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.8);
}

.radio-info-text {
    font-size: 0.78rem;
    color: #ffffff;
    display: flex;
    flex-direction: column;
}

.radio-waves {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 14px;
}

.radio-wave-bar {
    width: 3px;
    height: 100%;
    background: var(--gold-400);
    border-radius: 2px;
    animation: radioBeat 1.2s infinite ease-in-out alternate;
}
.radio-wave-bar:nth-child(2) { animation-delay: 0.2s; height: 60%; }
.radio-wave-bar:nth-child(3) { animation-delay: 0.4s; height: 80%; }

@keyframes radioBeat {
    0% { transform: scaleY(0.3); }
    100% { transform: scaleY(1); }
}





/* ==========================================================================
   Header Navigation & Dropdown - Clean Robust Rewritten System
   ========================================================================== */
.clean-nav-menu {
    display: flex !important;
    align-items: center !important;
}

.clean-nav-menu ul {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 1.1rem !important;
}

.clean-nav-menu ul li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    position: relative !important;
}

.clean-nav-link {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.45rem !important;
    color: #94a3b8 !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 0.92rem !important;
    padding: 0.5rem 0.35rem !important;
    white-space: nowrap !important;
    position: relative !important;
    transition: color 0.2s ease !important;
}

.clean-nav-link i {
    font-size: 0.9rem !important;
    color: #64748b !important;
    transition: color 0.2s ease !important;
}

.clean-nav-link:hover,
.clean-nav-link.active {
    color: #ffffff !important;
}

.clean-nav-link:hover i,
.clean-nav-link.active i {
    color: #f59e0b !important;
}

/* Dropdown */
.clean-dropdown {
    position: relative !important;
}

.clean-dropdown-box {
    position: absolute !important;
    top: calc(100% + 10px) !important;
    right: 0 !important;
    min-width: 260px !important;
    background: #0d0e14 !important;
    border: 1px solid rgba(245, 158, 11, 0.3) !important;
    border-radius: 12px !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.9), 0 0 25px rgba(245, 158, 11, 0.15) !important;
    padding: 0.6rem !important;
    display: none !important;
    flex-direction: column !important;
    gap: 0.35rem !important;
    z-index: 99999 !important;
}

.clean-dropdown:hover .clean-dropdown-box {
    display: flex !important;
}

.clean-dropdown-box a {
    display: flex !important;
    align-items: center !important;
    gap: 0.7rem !important;
    padding: 0.65rem 0.9rem !important;
    color: #94a3b8 !important;
    font-size: 0.86rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    border-radius: 8px !important;
    transition: all 0.2s ease !important;
}

.clean-dropdown-box a:hover {
    background: rgba(245, 158, 11, 0.14) !important;
    color: #ffffff !important;
    transform: translateX(-4px) !important;
}

/* Mobile responsive drawer */
@media (max-width: 992px) {
    .clean-nav-menu {
        position: fixed !important;
        top: 78px !important;
        right: -100% !important;
        width: 80% !important;
        max-width: 320px !important;
        height: calc(100vh - 78px) !important;
        background: #090a10 !important;
        border-left: 1px solid rgba(245, 158, 11, 0.25) !important;
        padding: 1.5rem !important;
        transition: right 0.3s ease !important;
        box-shadow: -10px 0 30px rgba(0,0,0,0.8) !important;
        z-index: 9999 !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .clean-nav-menu.open {
        right: 0 !important;
    }

    .clean-nav-menu ul {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 1rem !important;
        width: 100% !important;
    }

    .clean-nav-menu ul li {
        width: 100% !important;
    }

    .clean-nav-link {
        width: 100% !important;
        font-size: 1rem !important;
        padding: 0.6rem 0.5rem !important;
    }

    .clean-dropdown-box {
        position: static !important;
        box-shadow: none !important;
        background: rgba(255,255,255,0.03) !important;
        border: 1px solid rgba(255,255,255,0.06) !important;
        display: flex !important;
        width: 100% !important;
    }
}
