/* BattleNest main.css — aus index.php ausgelagert */

        :root {
            --primary-neon: #00f2ff;
            --secondary-neon: #7000ff;
            --accent-purple: #9d4edd;
            --bg-dark: #0b0e14;
            --bg-card: #121820;
            --text-light: #e8e8e8;
            --text-muted: #9aa0a6;
        }

        * { box-sizing: border-box; }

        body {
            background-color: var(--bg-dark);
            color: white;
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
        }

        ::selection { background: var(--primary-neon); color: #000; }

        /* ===== ANIMATED BACKGROUND ===== */
        .hero-bg {
            position: absolute;
            inset: 0;
            overflow: hidden;
            z-index: 0;
        }
        .hero-bg .orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.15;
            animation: orbFloat 12s ease-in-out infinite alternate;
        }
        .hero-bg .orb:nth-child(1) {
            width: 500px; height: 500px;
            background: var(--secondary-neon);
            top: -10%; left: -10%;
        }
        .hero-bg .orb:nth-child(2) {
            width: 400px; height: 400px;
            background: var(--primary-neon);
            bottom: -10%; right: -10%;
            animation-delay: -5s;
        }
        .hero-bg .orb:nth-child(3) {
            width: 300px; height: 300px;
            background: var(--accent-purple);
            top: 40%; left: 50%;
            animation-delay: -9s;
        }
        @keyframes orbFloat {
            0% { transform: translate(0,0) scale(1); }
            100% { transform: translate(60px,-60px) scale(1.2); }
        }

        /* ===== HERO ===== */
        .hero-section {
            position: relative;
            padding: 100px 0 80px;
            text-align: center;
            overflow: hidden;
        }
        .hero-section > .container { position: relative; z-index: 1; }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(0,242,255,0.1);
            border: 1px solid rgba(0,242,255,0.25);
            border-radius: 50px;
            padding: 8px 20px;
            font-size: 0.85rem;
            color: var(--primary-neon);
            margin-bottom: 24px;
            backdrop-filter: blur(4px);
        }
        .hero-badge .pulse-dot {
            width: 8px; height: 8px;
            background: #28a745;
            border-radius: 50%;
            animation: pulse 1.8s ease-in-out infinite;
        }
        @keyframes pulse {
            0%,100% { box-shadow: 0 0 0 0 rgba(40,167,69,0.6); }
            50% { box-shadow: 0 0 0 8px rgba(40,167,69,0); }
        }

        .hero-title {
            font-family: 'Orbitron', sans-serif;
            font-weight: 900;
            font-size: clamp(2rem, 6vw, 4rem);
            text-transform: uppercase;
            letter-spacing: 3px;
            line-height: 1.15;
            margin-bottom: 20px;
        }
        .hero-title .gradient-text {
            background: linear-gradient(135deg, var(--primary-neon), var(--accent-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-sub {
            font-size: clamp(1rem, 2vw, 1.2rem);
            color: var(--text-muted);
            max-width: 620px;
            margin: 0 auto 32px;
            line-height: 1.6;
        }

        /* ===== BUTTONS ===== */
        .btn-battle {
            background: linear-gradient(135deg, var(--secondary-neon), var(--primary-neon));
            border: none;
            color: #fff;
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            padding: 16px 38px;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .btn-battle::after {
            content: '';
            position: absolute;
            inset: -2px;
            border-radius: 10px;
            background: linear-gradient(135deg, var(--secondary-neon), var(--primary-neon), var(--secondary-neon));
            background-size: 200% 200%;
            z-index: -1;
            filter: blur(12px);
            opacity: 0;
            transition: opacity 0.4s;
        }
        .btn-battle:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(0,242,255,0.35);
            color: #fff;
        }
        .btn-battle:hover::after { opacity: 1; }

        .btn-outline-battle {
            background: transparent;
            border: 2px solid var(--primary-neon);
            color: var(--primary-neon);
            font-weight: 600;
            padding: 14px 32px;
            border-radius: 8px;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-outline-battle:hover {
            background: rgba(0,242,255,0.1);
            color: var(--primary-neon);
            transform: translateY(-2px);
        }

        .hero-cta {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            justify-content: center;
            align-items: center;
            margin-bottom: 24px;
        }
        .hero-trust {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            justify-content: center;
            font-size: 0.85rem;
            color: var(--text-muted);
        }
        .hero-trust i { color: var(--primary-neon); margin-right: 6px; }

        /* ===== NAV ===== */
        .navbar { padding: 16px 0; }
        .navbar-brand {
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 1.4rem;
        }
        .online-dot {
            width: 8px; height: 8px;
            background: #28a745;
            border-radius: 50%;
            display: inline-block;
            margin-right: 5px;
            box-shadow: 0 0 8px #28a745;
            animation: pulse 2s ease-in-out infinite;
        }

        /* ===== SECTION HEADERS ===== */
        .section-label {
            font-family: 'Orbitron', sans-serif;
            font-size: 0.75rem;
            letter-spacing: 3px;
            color: var(--primary-neon);
            text-transform: uppercase;
            margin-bottom: 8px;
        }
        .section-title {
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            font-size: clamp(1.5rem, 3vw, 2.2rem);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 12px;
        }
        .section-desc {
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto 48px;
            font-size: 1.05rem;
        }

        /* ===== GLASS / CARDS ===== */
        .glass-card {
            background: var(--bg-card);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 20px;
            padding: 40px 28px;
            transition: all 0.35s ease;
            height: 100%;
        }
        .glass-card:hover {
            border-color: rgba(0,242,255,0.2);
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.4);
        }
        .glass-card .icon-wrap {
            width: 60px; height: 60px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            margin-bottom: 18px;
            background: rgba(0,242,255,0.08);
            color: var(--primary-neon);
        }

        /* ===== STATISTICS ===== */
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
            gap: 20px;
        }
        .stat-item {
            background: var(--bg-card);
            border: 1px solid rgba(255,255,255,0.05);
            border-radius: 16px;
            padding: 28px 16px;
            text-align: center;
            transition: 0.3s;
        }
        .stat-item:hover { border-color: rgba(0,242,255,0.15); }
        .stat-number {
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            background: linear-gradient(135deg, var(--primary-neon), var(--accent-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .stat-label {
            color: var(--text-muted);
            font-size: 0.85rem;
            margin-top: 4px;
        }
        .stat-number-muted {
            font-family: 'Orbitron', sans-serif;
            font-weight: 500;
            font-size: clamp(1.2rem, 2.5vw, 1.6rem);
            color: var(--text-muted);
        }

        /* ===== HOW IT WORKS ===== */
        .step-card {
            text-align: center;
            padding: 32px 20px;
            position: relative;
        }
        .step-number {
            width: 48px; height: 48px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--secondary-neon), var(--primary-neon));
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            font-size: 1.2rem;
            margin: 0 auto 18px;
            box-shadow: 0 0 20px rgba(0,242,255,0.2);
        }
        .step-card h5 { font-weight: 600; margin-bottom: 8px; }
        .step-card p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

        /* ===== PAYMENT PROOF ===== */
        .payout-item {
            display: flex;
            align-items: center;
            gap: 16px;
            background: var(--bg-card);
            border: 1px solid rgba(255,255,255,0.05);
            border-radius: 14px;
            padding: 16px 20px;
            transition: 0.25s;
        }
        .payout-item:hover { border-color: rgba(0,242,255,0.15); }
        .payout-avatar {
            width: 42px; height: 42px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--secondary-neon), var(--primary-neon));
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.9rem;
            flex-shrink: 0;
        }
        .payout-info { flex: 1; min-width: 0; }
        .payout-info .name { font-weight: 600; font-size: 0.95rem; }
        .payout-info .meta { color: var(--text-muted); font-size: 0.8rem; }
        .payout-amount {
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            color: var(--primary-neon);
            font-size: 0.95rem;
            white-space: nowrap;
        }

        /* ===== EARNING METHODS ===== */
        .method-card {
            text-align: center;
            padding: 32px 18px;
        }
        .method-card .icon-wrap {
            margin: 0 auto 16px;
        }
        .method-card h5 { font-weight: 600; font-size: 1rem; margin-bottom: 6px; }
        .method-card p { color: var(--text-muted); font-size: 0.82rem; margin: 0; }

        /* ===== FAQ ===== */
        .faq-item {
            background: var(--bg-card);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 14px;
            margin-bottom: 12px;
            overflow: hidden;
        }
        .faq-question {
            padding: 18px 22px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 500;
            user-select: none;
            transition: 0.2s;
        }
        .faq-question:hover { background: rgba(255,255,255,0.02); }
        .faq-question i { transition: transform 0.3s; color: var(--primary-neon); }
        .faq-item.active .faq-question i { transform: rotate(180deg); }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.3s;
            padding: 0 22px;
            color: var(--text-muted);
            font-size: 0.9rem;
            line-height: 1.6;
        }
        .faq-item.active .faq-answer {
            max-height: 300px;
            padding: 0 22px 18px;
        }

        /* ===== FINAL CTA ===== */
        .cta-section {
            background: linear-gradient(135deg, rgba(112,0,255,0.12), rgba(0,242,255,0.06));
            border: 1px solid rgba(0,242,255,0.1);
            border-radius: 28px;
            padding: 60px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%; left: -50%;
            width: 200%; height: 200%;
            background: radial-gradient(circle at 30% 50%, rgba(0,242,255,0.04), transparent 60%);
            pointer-events: none;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 768px) {
            .hero-section { padding: 60px 0 50px; }
            .navbar-brand { font-size: 1.1rem; }
            .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
            .cta-section { padding: 40px 20px; }
            .glass-card { padding: 28px 18px; }
            .btn-battle, .btn-outline-battle { padding: 12px 24px; font-size: 0.9rem; }
        }
        @media (max-width: 480px) {
            .stat-grid { grid-template-columns: repeat(2, 1fr); }
            .hero-cta { flex-direction: column; }
            .hero-trust { flex-direction: column; gap: 8px; }
        }

        /* ===== SCROLLBAR ===== */
        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: var(--bg-dark); }
        ::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; }
        ::-webkit-scrollbar-thumb:hover { background: #555; }

        /* ===== COUNTER ANIMATION ===== */
        .count-up { display: inline-block; }
    
/* --- Sticky Blur Navbar + Scroll-Reveal (Hermes) --- */
.bn-nav {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: rgba(11,14,20,0.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,242,255,0.12);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}
.bn-nav.scrolled {
    background: rgba(11,14,20,0.92);
    box-shadow: 0 6px 28px rgba(0,0,0,0.55);
}
html { scroll-behavior: smooth; }
.js-reveal .reveal { opacity:0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.js-reveal .reveal.visible { opacity:1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .js-reveal .reveal { opacity:1 !important; transform:none !important; transition:none; }
}
