:root {
    --font-display: 'Orbitron', sans-serif;
    --font-heading: 'Rajdhani', sans-serif;
    --font-body: 'Inter', sans-serif;
}

[data-theme="dark"] {
    --bg-primary: #0a0a0f;
    --bg-secondary: #0f0f18;
    --bg-tertiary: #151521;
    --bg-card: #18182a;
    --bg-card-hover: #1e1e36;
    --border-color: #252540;
    --border-accent: #ff2d55;
    --text-primary: #f0f0f8;
    --text-secondary: #a0a0c0;
    --text-muted: #6b6b8a;
    --accent: #ff2d55;
    --accent-glow: rgba(255, 45, 85, 0.4);
    --accent-secondary: #00e5ff;
    --accent-secondary-glow: rgba(0, 229, 255, 0.4);
    --accent-tertiary: #7b2fff;
    --success: #00e676;
    --warning: #ffab00;
    --discord: #5865f2;
    /* extra accent palette for more colorful accents */
    --accent-gold: #ffc23c;
    --accent-gold-glow: rgba(255, 194, 60, 0.35);
    --accent-teal: #22d3ba;
    --accent-teal-glow: rgba(34, 211, 186, 0.3);
    --accent-violet: #b06bff;
    --accent-violet-glow: rgba(176, 107, 255, 0.3);
    --accent-blue: #4d8dff;
    --accent-blue-glow: rgba(77, 141, 255, 0.3);
    --accent-pink: #ff6bd4;
    --accent-pink-glow: rgba(255, 107, 212, 0.3);
    --gradient-hero: linear-gradient(135deg, #0a0a14 0%, #1a0a20 40%, #0a1420 100%);
    --gradient-card: linear-gradient(145deg, #18182a 0%, #1a1a30 100%);
    --gradient-accent: linear-gradient(135deg, #ff2d55, #ff6b8a);
    --gradient-rainbow: linear-gradient(135deg, #ff2d55, #ffc23c, #22d3ba, #4d8dff, #b06bff);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 40px rgba(255, 45, 85, 0.15);
    --shadow-glow-blue: 0 0 40px rgba(0, 229, 255, 0.1);
    --noise-opacity: 0.03;
}

[data-theme="light"] {
    --bg-primary: #f5f5fa;
    --bg-secondary: #ffffff;
    --bg-tertiary: #eeeef5;
    --bg-card: #ffffff;
    --bg-card-hover: #f8f8ff;
    --border-color: #dcdce8;
    --border-accent: #e0245e;
    --text-primary: #1a1a2e;
    --text-secondary: #4a4a6a;
    --text-muted: #8888a8;
    --accent: #e0245e;
    --accent-glow: rgba(224, 36, 94, 0.25);
    --accent-secondary: #0097b2;
    --accent-secondary-glow: rgba(0, 151, 178, 0.2);
    --accent-tertiary: #6b21d4;
    --success: #00b34b;
    --warning: #e6a400;
    --discord: #5865f2;
    /* extra accent palette for more colorful accents */
    --accent-gold: #d69200;
    --accent-gold-glow: rgba(214, 146, 0, 0.2);
    --accent-teal: #0f9c86;
    --accent-teal-glow: rgba(15, 156, 134, 0.18);
    --accent-violet: #8a3ee0;
    --accent-violet-glow: rgba(138, 62, 224, 0.18);
    --accent-blue: #2f6fe0;
    --accent-blue-glow: rgba(47, 111, 224, 0.18);
    --accent-pink: #e0499f;
    --accent-pink-glow: rgba(224, 73, 159, 0.18);
    --gradient-hero: linear-gradient(135deg, #f0f0f8 0%, #fae8f0 40%, #e8f0fa 100%);
    --gradient-card: linear-gradient(145deg, #ffffff 0%, #fafaff 100%);
    --gradient-accent: linear-gradient(135deg, #e0245e, #ff4d7a);
    --gradient-rainbow: linear-gradient(135deg, #e0245e, #d69200, #0f9c86, #2f6fe0, #8a3ee0);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.08);
    --shadow-glow: 0 0 40px rgba(224, 36, 94, 0.1);
    --shadow-glow-blue: 0 0 40px rgba(0, 151, 178, 0.08);
    --noise-opacity: 0.02;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    transition: background 0.35s ease, color 0.35s ease;
    position: relative;
    min-height: 100vh;
}

.btn-admin {
    background: var(--bg-tertiary);
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
    text-decoration: none;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.nav-item {
    position: relative;
}
.nav-item > a {
    display: flex;
    align-items: center;
    gap: 5px;
}
.nav-item > a .fa-chevron-down {
    font-size: 0.65rem;
    transition: transform 0.2s ease;
}
.nav-item:hover > a .fa-chevron-down {
    transform: rotate(180deg);
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    box-shadow: var(--shadow-card);
    z-index: 1001;
}
/* ============ PROFESSIONAL HERO ============ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
}

.hero .container {
    width: 100%;
    padding: 0 20px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Content */
.hero-content {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.hero-content h1 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: clamp(2.8rem, 4.5vw, 4.2rem);
    line-height: 1.15;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.highlight-text {
    background: linear-gradient(135deg, var(--accent) 0%, #ff6b8a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 520px;
}

/* Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 8px 0;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: var(--border-color);
}

/* Buttons */
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 4px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--accent);
    color: white;
}

.btn-primary:hover {
    background: #e0245e;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 45, 85, 0.35);
}

.btn-primary i {
    transition: transform 0.2s ease;
}

.btn-primary:hover i {
    transform: translateX(3px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    background: var(--bg-secondary);
    border-color: var(--text-muted);
}

.btn-discord {
    background: #5865F2;
    color: white;
    border-radius: 10px;
}

.btn-discord:hover {
    background: #4752c4;
    box-shadow: 0 4px 16px rgba(88, 101, 242, 0.35);
}

.online-dot {
    width: 7px;
    height: 7px;
    background: #57f287;
    border-radius: 50%;
    display: inline-block;
}

/* Visual - Professional Card */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    width: 320px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.hero-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 45, 85, 0.15) 0%, rgba(255, 107, 138, 0.1) 100%);
    border: 1px solid rgba(255, 45, 85, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent);
}

.hero-card-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-card-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.hero-card-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-card-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #57f287;
    font-weight: 500;
    background: rgba(87, 242, 135, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
}

.status-indicator {
    width: 8px;
    height: 8px;
    background: #57f287;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(87, 242, 135, 0.5);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-description {
        max-width: 100%;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-card {
        width: 280px;
        padding: 36px 28px;
    }
}

@media (max-width: 480px) {
    .hero .container {
        padding: 80px 16px;
    }
    
    .hero-content h1 {
        font-size: clamp(2.2rem, 7vw, 2.8rem);
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        justify-content: center;
        width: 100%;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .hero-card {
        width: 240px;
        padding: 28px 20px;
    }
    
    .hero-card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        border-radius: 14px;
    }
}
/* ============ RESPONSIVE ============ */
@media (max-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-visual {
        order: -1;
        min-height: 300px;
    }
    
    .hero-orb {
        width: 240px;
        height: 240px;
    }
    
    .orb-core {
        width: 70px;
        height: 70px;
    }
    
    .orb-core i {
        font-size: 1.8rem;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-description {
        max-width: 100%;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-content h1 .line {
        font-size: clamp(2rem, 6vw, 3rem);
    }
    
    .float-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
.hero .container {
    width: 100%;
    padding: 0 20px;
}
    
    .hero-visual {
        min-height: 250px;
    }
    
    .hero-orb {
        width: 180px;
        height: 180px;
    }
    
    .orb-core {
        width: 55px;
        height: 55px;
    }
    
    .orb-core i {
        font-size: 1.4rem;
    }
    
    .hero-stats {
        gap: 16px;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        justify-content: center;
        width: 100%;
    }
    
    .float-icon {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
        border-radius: 10px;
    }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-visual {
        order: -1;
        height: 350px;
    }
    
    .hero-orb {
        width: 240px;
        height: 240px;
    }
    
    .orb-core {
        width: 70px;
        height: 70px;
    }
    
    .orb-core i {
        font-size: 1.8rem;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-description {
        max-width: 100%;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-content h1 .line {
        font-size: clamp(2rem, 6vw, 3rem);
    }
    
    .float-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-visual {
        height: 250px;
    }
    
    .hero-orb {
        width: 180px;
        height: 180px;
    }
    
    .orb-core {
        width: 55px;
        height: 55px;
    }
    
    .orb-core i {
        font-size: 1.4rem;
    }
    
    .hero-stats {
        gap: 16px;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        justify-content: center;
        width: 100%;
    }
    
    .float-icon {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
        border-radius: 10px;
    }
}
.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.15s ease;
    border-bottom: 1px solid transparent;
}
.dropdown-menu a:hover {
    background: rgba(255, 45, 85, 0.06);
    color: var(--accent);
}

@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: var(--bg-tertiary);
        border: none;
        border-radius: 0;
        box-shadow: none;
        display: none;
        padding: 0;
    }
    .nav-item.open-mobile .dropdown-menu {
        display: block;
    }
    .nav-item > a .fa-chevron-down {
        display: none;
    }
}

/* =========================
   FiveM RP Showcase
========================= */

.rp-showcase{
    padding:70px 0;
}

.rp-card{
    display:flex;
    gap:40px;
    align-items:center;
    justify-content:space-between;

    background:linear-gradient(
        135deg,
        rgba(255,45,85,.12),
        rgba(255,45,85,.03)
    );

    border:1px solid rgba(255,45,85,.25);
    border-radius:24px;
    padding:40px;
    overflow:hidden;
    position:relative;
}

.rp-card::before{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(255,45,85,.08);
    border-radius:50%;
    right:-120px;
    top:-120px;
    filter:blur(30px);
}

.rp-content{
    flex:1;
    position:relative;
    z-index:2;
}

.rp-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;

    background:rgba(255,45,85,.15);
    color:#ff4d73;

    padding:8px 14px;
    border-radius:999px;
    margin-bottom:16px;
    font-weight:600;
}

.rp-content h2{
    font-size:2.4rem;
    margin-bottom:16px;
}

.rp-desc{
    color:var(--text-secondary);
    line-height:1.8;
    margin-bottom:28px;
    max-width:700px;
}

.rp-features{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:14px;
}

.rp-feature{
    display:flex;
    align-items:center;
    gap:12px;

    padding:14px;
    border-radius:14px;

    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.06);
}

.rp-feature i{
    color:#ff4d73;
    font-size:1.1rem;
}

.rp-buttons{
    display:flex;
    gap:12px;
    margin-top:25px;
    flex-wrap:wrap;
}

.rp-side{
    min-width:260px;
    text-align:center;
    position:relative;
    z-index:2;
}

.rp-status{
    display:inline-flex;
    align-items:center;
    gap:8px;

    padding:10px 16px;
    border-radius:999px;

    background:rgba(0,255,100,.1);
    color:#42ff90;

    margin-bottom:20px;
}

.dot{
    width:10px;
    height:10px;
    background:#42ff90;
    border-radius:50%;
    box-shadow:0 0 12px #42ff90;
}

.rp-launch{
    padding:25px;
    border-radius:18px;

    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
}

.rp-launch small{
    display:block;
    opacity:.7;
    margin-bottom:10px;
}

.rp-launch h3{
    font-size:2rem;
    line-height:1.2;
    margin:0;
}

@media(max-width:900px){

    .rp-card{
        flex-direction:column;
        padding:25px;
        text-align:center;
    }

    .rp-features{
        grid-template-columns:1fr;
    }

    .rp-side{
        width:100%;
        min-width:unset;
    }

    .rp-content h2{
        font-size:1.9rem;
    }
}

.btn-admin:hover {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 0 16px var(--accent-glow);
    transform: translateY(-1px);
}
.btn-admin i {
    font-size: 0.9rem;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: var(--noise-opacity);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.5'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px 200px;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-accent);
    color: #fff;
    box-shadow: 0 4px 18px var(--accent-glow);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px var(--accent-glow);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent-secondary);
    color: var(--accent-secondary);
    box-shadow: 0 0 20px var(--accent-secondary-glow);
}
.btn-outline:hover {
    background: var(--accent-secondary);
    color: #000;
    box-shadow: 0 8px 30px var(--accent-secondary-glow);
    transform: translateY(-2px);
}

.btn-discord {
    background: var(--discord);
    color: #fff;
    font-weight: 600;
}
.btn-discord:hover {
    background: #4752c4;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(88, 101, 242, 0.4);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.badge-online {
    background: rgba(0, 230, 118, 0.15);
    color: var(--success);
    border: 1px solid var(--success);
}
.badge-offline {
    background: rgba(255, 171, 0, 0.15);
    color: var(--warning);
    border: 1px solid var(--warning);
}

.pulse-dot {
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    animation: pulse 1.8s infinite;
}
.pulse-dot.online {
    background: var(--success);
    box-shadow: 0 0 10px var(--success);
}
.pulse-dot.offline {
    background: var(--warning);
    box-shadow: 0 0 10px var(--warning);
    animation: none;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.35;
    }
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
    position: relative;
    display: inline-block;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 60%;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
    box-shadow: 0 0 18px var(--accent-glow);
}
.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 48px;
    font-family: var(--font-heading);
    letter-spacing: 0.4px;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: background 0.35s ease;
}
.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    flex-wrap: wrap;
    gap: 12px;
}
.navbar-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}
.navbar-logo span {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.navbar-links {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.navbar-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 14px;
    border-radius: 6px;
    transition: all 0.2s ease;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.navbar-links a:hover {
    color: var(--accent);
    background: rgba(255, 45, 85, 0.06);
}
.navbar-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-toggle {
    display: none;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 10px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.2s ease;
}
.navbar-toggle:hover {
    border-color: var(--accent);
    box-shadow: 0 0 12px var(--accent-glow);
}

@media (max-width: 768px) {
    .navbar-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .navbar-links {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        background: var(--bg-secondary);
        border-radius: 8px;
        padding: 8px 0;
        border: 1px solid var(--border-color);
    }
    .navbar-links.open {
        display: flex;
    }
    .navbar-links a {
        padding: 12px 16px;
        border-radius: 0;
        font-size: 0.95rem;
        border-bottom: 1px solid var(--border-color);
    }
    .navbar-links a:last-child {
        border-bottom: none;
    }
    .navbar-inner {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }
    .navbar-logo {
        flex: 1;
    }
    .navbar-controls {
        flex-wrap: wrap;
    }
}

.theme-toggle{
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}
.theme-toggle:hover{
    border-color: var(--accent);
    box-shadow: 0 0 12px var(--accent-glow);
}
.lang-select {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    transition: all 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
    padding-right: 28px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23a0a0c0' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
}
.lang-select:hover {
    border-color: var(--accent);
    box-shadow: 0 0 12px var(--accent-glow);
}

/* =========================
   HERO – без снимка
========================= */
.hero {
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    min-height: 600px;
}

.hero .container {
    width: 100%;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid var(--accent);
    border-radius: 30px;
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
    box-shadow: 0 0 24px var(--accent-glow);
}
.hero h1 {
    font-family: var(--font-display);
    font-size: 3.8rem;
    font-weight: 900;
    letter-spacing: 3px;
    line-height: 1.15;
    margin-bottom: 20px;
}
.hero h1 .highlight {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 36px;
    font-family: var(--font-heading);
    letter-spacing: 0.4px;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =========================
   САМО #servers – със снимка
========================= */
#servers {
    background: url('https://images.openai.com/static-rsc-4/LrOdCuEzCDLLefPL7_Z6zIqXf_ZcRhg5yNoJIG2vv_4APZgpJZNFzDzVQwzyt1Fv-7f7o5kx72u8mgg2zEbDqEp55hvQFGXyT7BqLh93QVdBVd8MEE4U6dc2rroxWwDytyJLJzbhX3rXRDWfEP32ePWFCOqwVnYRHhEWpFt6rMrp9eZxv1BzZwgQlLMzEEx4?purpose=fullsize');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    position: relative;
}
#servers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 15, 0.7);
    z-index: 1;
}
#servers .container {
    position: relative;
    z-index: 2;
}

section {
    padding: 80px 0;
}
section:nth-child(even) {
    background: var(--bg-secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 20px;
}
.about-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px 24px;
    transition: all 0.3s ease;
}
.about-card:hover {
    border-color: var(--accent-secondary);
    box-shadow: var(--shadow-glow-blue);
    transform: translateY(-4px);
}
.about-card i {
    font-size: 2.2rem;
    color: var(--accent-secondary);
    margin-bottom: 16px;
}
.about-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 8px;
    letter-spacing: 1px;
}
.about-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.server-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.filter-btn {
    padding: 8px 20px;
    border: 1px solid var(--border-color);
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    border-radius: 25px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
    text-transform: uppercase;
}
.filter-btn.active,
.filter-btn:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    box-shadow: 0 0 18px var(--accent-glow);
    transform: translateY(-1px);
}
.server-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}
.server-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}
.server-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-glow);
    transform: translateY(-5px);
}
.server-card-img {
    height: 180px;
    background: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--text-muted);
    position: relative;
    overflow: hidden;
}
.server-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.server-card-body {
    padding: 20px;
}
.server-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 1px;
    margin-bottom: 4px;
}
.server-game {
    color: var(--accent-secondary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.server-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 14px;
}
.server-status-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    flex-wrap: wrap;
    gap: 8px;
}
.server-ip {
    background: var(--bg-tertiary);
    padding: 8px 14px;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    user-select: all;
}
.server-ip:hover {
    border-color: var(--accent-secondary);
    box-shadow: 0 0 14px var(--accent-secondary-glow);
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}
.eco-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 28px;
    transition: all 0.3s ease;
}
.eco-card:hover {
    border-color: var(--accent-tertiary);
    box-shadow: 0 0 30px rgba(123, 47, 255, 0.15);
}
.eco-card i {
    font-size: 2rem;
    color: var(--accent-tertiary);
    margin-bottom: 14px;
}
.eco-card h3 {
    font-family: var(--font-display);
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.partner-highlight {
    background: var(--bg-card);
    border: 2px solid var(--accent);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow-glow);
}
.partner-highlight h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.partner-highlight .split {
    font-size: 3rem;
    font-family: var(--font-display);
    font-weight: 900;
    color: var(--accent);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 22px;
}
.news-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}
.news-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-glow);
}
.news-date {
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.news-card h4 {
    font-family: var(--font-display);
    letter-spacing: 0.8px;
    margin-bottom: 8px;
}

footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 32px 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}
footer a {
    color: var(--accent-secondary);
}

.toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--bg-card);
    border: 1px solid var(--accent-secondary);
    color: var(--text-primary);
    padding: 12px 22px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    box-shadow: 0 0 22px var(--accent-secondary-glow);
}
.toast.show {
    opacity: 1;
    pointer-events: auto;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.4rem;
        letter-spacing: 1px;
    }
    .hero p {
        font-size: 1rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .navbar-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .server-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   ЦВЕТНИ АКЦЕНТИ – допълнителна разноцветна шарка
   (основната палитра остава непроменена, тези правила
   само добавят вариация чрез nth-child редуване)
========================================================= */

/* About карти – всяка икона в различен цвят от разширената палитра */
.about-card:nth-child(4n+1) i { color: var(--accent-secondary); }
.about-card:nth-child(4n+2) i { color: var(--accent-gold); }
.about-card:nth-child(4n+3) i { color: var(--accent-violet); }
.about-card:nth-child(4n+4) i { color: var(--accent-teal); }

.about-card:nth-child(4n+1):hover { border-color: var(--accent-secondary); box-shadow: 0 0 30px var(--accent-secondary-glow); }
.about-card:nth-child(4n+2):hover { border-color: var(--accent-gold); box-shadow: 0 0 30px var(--accent-gold-glow); }
.about-card:nth-child(4n+3):hover { border-color: var(--accent-violet); box-shadow: 0 0 30px var(--accent-violet-glow); }
.about-card:nth-child(4n+4):hover { border-color: var(--accent-teal); box-shadow: 0 0 30px var(--accent-teal-glow); }

/* Ecosystem карти – редуващи се цветове вместо само лилаво */
.eco-card:nth-child(4n+1) i { color: var(--accent-violet); }
.eco-card:nth-child(4n+2) i { color: var(--accent-blue); }
.eco-card:nth-child(4n+3) i { color: var(--accent-pink); }
.eco-card:nth-child(4n+4) i { color: var(--accent-gold); }

.eco-card:nth-child(4n+1):hover { border-color: var(--accent-violet); box-shadow: 0 0 30px var(--accent-violet-glow); }
.eco-card:nth-child(4n+2):hover { border-color: var(--accent-blue); box-shadow: 0 0 30px var(--accent-blue-glow); }
.eco-card:nth-child(4n+3):hover { border-color: var(--accent-pink); box-shadow: 0 0 30px var(--accent-pink-glow); }
.eco-card:nth-child(4n+4):hover { border-color: var(--accent-gold); box-shadow: 0 0 30px var(--accent-gold-glow); }

/* News карти – датата в различен цвят на всяка карта */
.news-card:nth-child(4n+1) .news-date { color: var(--accent); }
.news-card:nth-child(4n+2) .news-date { color: var(--accent-teal); }
.news-card:nth-child(4n+3) .news-date { color: var(--accent-blue); }
.news-card:nth-child(4n+4) .news-date { color: var(--accent-gold); }

.news-card:nth-child(4n+1):hover { border-color: var(--accent); box-shadow: var(--shadow-glow); }
.news-card:nth-child(4n+2):hover { border-color: var(--accent-teal); box-shadow: 0 0 30px var(--accent-teal-glow); }
.news-card:nth-child(4n+3):hover { border-color: var(--accent-blue); box-shadow: 0 0 30px var(--accent-blue-glow); }
.news-card:nth-child(4n+4):hover { border-color: var(--accent-gold); box-shadow: 0 0 30px var(--accent-gold-glow); }

/* Server карти – играта под заглавието и рамката при hover се редуват */
.server-card:nth-child(3n+1) .server-game { color: var(--accent-secondary); }
.server-card:nth-child(3n+2) .server-game { color: var(--accent-gold); }
.server-card:nth-child(3n+3) .server-game { color: var(--accent-violet); }

.server-card:nth-child(3n+1):hover { border-color: var(--accent-secondary); box-shadow: 0 0 30px var(--accent-secondary-glow); }
.server-card:nth-child(3n+2):hover { border-color: var(--accent-gold); box-shadow: 0 0 30px var(--accent-gold-glow); }
.server-card:nth-child(3n+3):hover { border-color: var(--accent-violet); box-shadow: 0 0 30px var(--accent-violet-glow); }

/* Filter бутони – различен цвят при active/hover според позицията */
.server-filters .filter-btn:nth-child(4n+1).active,
.server-filters .filter-btn:nth-child(4n+1):hover {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 18px var(--accent-glow);
}
.server-filters .filter-btn:nth-child(4n+2).active,
.server-filters .filter-btn:nth-child(4n+2):hover {
    background: var(--accent-secondary);
    border-color: var(--accent-secondary);
    color: #04202a;
    box-shadow: 0 0 18px var(--accent-secondary-glow);
}
.server-filters .filter-btn:nth-child(4n+3).active,
.server-filters .filter-btn:nth-child(4n+3):hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: #241a00;
    box-shadow: 0 0 18px var(--accent-gold-glow);
}
.server-filters .filter-btn:nth-child(4n+4).active,
.server-filters .filter-btn:nth-child(4n+4):hover {
    background: var(--accent-violet);
    border-color: var(--accent-violet);
    box-shadow: 0 0 18px var(--accent-violet-glow);
}

/* Hero статистики – всяко число в свой цвят за повече живот */
.hero-stats .stat:nth-child(1) .stat-number { color: var(--accent); }
.hero-stats .stat:nth-child(3) .stat-number { color: var(--accent-secondary); }
.hero-stats .stat:nth-child(5) .stat-number { color: var(--accent-gold); }

/* Section title – дъга от цветове вместо само основния акцент */
.section-title::after {
    background: var(--gradient-rainbow);
}

/* Partner split число с малко повече цвят */
.partner-highlight {
    border-color: var(--accent-violet);
    box-shadow: 0 0 40px var(--accent-violet-glow);
}
.partner-highlight .split {
    background: var(--gradient-rainbow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* RP badge и feature икони в топло златно за контраст на червеното */
.rp-feature:nth-child(2n) i { color: var(--accent-gold); }
.rp-feature:nth-child(3n) i { color: var(--accent-teal); }