/* ================================================================
   VENOM-V  |  ULTRA PREMIUM DESIGN SYSTEM
   ================================================================ */

:root {
    /* ── Backgrounds ─────────────────────────────────────────── */
    --void:       #030408;
    --bg-main:    #060810;
    --bg-layer:   #0a0d18;
    --bg-card:    #0d1020;
    --bg-card-hv: #131628;

    /* ── Primary · Electric Violet ───────────────────────────── */
    --p1:         #a040f5;
    --p2:         #6820de;
    --p1-h:       #bf60ff;
    --p1-g:       rgba(160, 64, 245, 0.55);
    --p1-gs:      rgba(160, 64, 245, 0.18);

    /* ── Gold accent ─────────────────────────────────────────── */
    --gold:       #f5c040;
    --gold-g:     rgba(245, 192, 64, 0.25);

    /* ── Status ──────────────────────────────────────────────── */
    --green:      #00e676;
    --green-g:    rgba(0, 230, 118, 0.18);

    /* ── Text ────────────────────────────────────────────────── */
    --t1:  #ffffff;
    --t2:  #b8c4e0;
    --t3:  #525e78;

    /* ── Borders ─────────────────────────────────────────────── */
    --b1:  rgba(255,255,255, 0.055);
    --b2:  rgba(160,64,245,  0.22);

    /* ── Misc ────────────────────────────────────────────────── */
    --glass: rgba(8, 11, 22, 0.72);
    --ease:  cubic-bezier(0.25, 0.8, 0.25, 1);
    --tr:    all 0.38s var(--ease);
    --r-sm:  6px;
    --r-md:  14px;
    --r-lg:  24px;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--t1);
    line-height: 1.75;
    overflow-x: hidden;
    position: relative;
}

/* Background grid overlay */
body::before {
    content: '';
    position: fixed; inset: 0; z-index: 0; pointer-events: none;
    background-image:
        linear-gradient(var(--b1) 1px, transparent 1px),
        linear-gradient(90deg, var(--b1) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 30%, transparent 100%);
}
/* Deep gradient orbs */
body::after {
    content: '';
    position: fixed; inset: 0; z-index: 0; pointer-events: none;
    background:
        radial-gradient(ellipse 70% 50% at 15% 10%, rgba(160,64,245,0.09) 0%, transparent 65%),
        radial-gradient(ellipse 60% 40% at 85% 80%, rgba(104,32,222,0.07) 0%, transparent 65%),
        radial-gradient(ellipse 40% 40% at 50% 50%, rgba(160,64,245,0.03) 0%, transparent 70%);
}

section[id] { scroll-margin-top: 88px; }
* { position: relative; z-index: 1; }

/* ── SCROLLBAR ─────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--void); }
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--p1), var(--p2));
    border-radius: 3px;
}

/* ── TYPOGRAPHY ────────────────────────────────────────────────── */
h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900; text-transform: uppercase;
    letter-spacing: 1px; line-height: 1.1;
}
p { color: var(--t2); font-weight: 400; }

.text-accent {
    background: linear-gradient(135deg, var(--p1), var(--p1-h));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* Section titles */
.section-title { text-align: center; margin-bottom: 68px; }
.section-title h2 { font-size: clamp(2.2rem, 5vw, 3.5rem); margin-bottom: 16px; }
.section-title h2 .text-accent { display: inline; }
.section-title > p { color: var(--t3); font-size: 1rem; letter-spacing: 0.5px; }

/* ── DECORATION LINE ──────────────────────────────────────────── */
.title-line {
    display: flex; align-items: center; justify-content: center; gap: 16px;
    margin-bottom: 20px;
}
.title-line span {
    display: block; height: 1px; width: 80px;
    background: linear-gradient(90deg, transparent, var(--b2));
}
.title-line span:last-child { background: linear-gradient(-90deg, transparent, var(--b2)); }
.title-line i { color: var(--p1); font-size: 12px; }

/* ================================================================
   PRELOADER
   ================================================================ */
#preloader {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--void);
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 32px;
    transition: opacity 0.7s ease;
}
.loader-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px; font-weight: 900; letter-spacing: 10px; text-transform: uppercase;
    background: linear-gradient(135deg, var(--p2), var(--p1), var(--p1-h));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    filter: drop-shadow(0 0 40px var(--p1-g));
    animation: loaderPulse 1.6s ease-in-out infinite;
}
.loader-bar {
    width: 220px; height: 2px;
    background: var(--b1); border-radius: 2px; overflow: hidden;
}
.loader-bar::after {
    content: '';
    display: block; height: 100%;
    background: linear-gradient(90deg, var(--p2), var(--p1), var(--p1-h));
    border-radius: 2px;
    animation: loaderSlide 1.6s ease-in-out infinite;
}
@keyframes loaderPulse {
    0%,100% { opacity: 0.6; transform: scale(0.97); }
    50%      { opacity: 1;   transform: scale(1.02); }
}
@keyframes loaderSlide {
    0%   { width: 0%;   margin-left: 0%; }
    50%  { width: 100%; margin-left: 0%; }
    100% { width: 0%;   margin-left: 100%; }
}

/* ================================================================
   PARTICLE CANVAS
   ================================================================ */
#particle-canvas {
    position: fixed; inset: 0;
    width: 100%; height: 100%;
    pointer-events: none; z-index: 0; opacity: 0.5;
}

/* ================================================================
   BACK TO TOP
   ================================================================ */
#back-to-top {
    position: fixed; bottom: 30px; right: 30px;
    width: 46px; height: 46px;
    background: linear-gradient(135deg, var(--p1), var(--p2));
    color: #fff; border-radius: var(--r-sm);
    display: flex; align-items: center; justify-content: center; font-size: 16px;
    z-index: 990; text-decoration: none;
    box-shadow: 0 0 24px var(--p1-g);
    transition: var(--tr); opacity: 1; pointer-events: auto; transform: translateY(0);
}
#back-to-top:hover { transform: translateY(-5px); box-shadow: 0 0 40px var(--p1-g); }
#back-to-top.hidden-btn { opacity: 0; pointer-events: none; transform: translateY(22px); }

/* ================================================================
   NAVIGATION
   ================================================================ */
header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 26px 6%;
    position: fixed; width: 100%; top: 0; z-index: 1000;
    transition: var(--tr);
}
header.scrolled {
    background: rgba(6, 8, 16, 0.92);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--b2);
    padding: 12px 6%;
    box-shadow: 0 8px 48px rgba(0,0,0,0.95);
}

/* Logo */
.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px; font-weight: 900; letter-spacing: 5px; text-transform: uppercase;
    text-decoration: none; color: var(--t1);
    display: flex; align-items: center;
    position: relative; padding-left: 52px; z-index: 1001;
    transition: var(--tr);
}
.logo:hover { color: var(--p1-h); }
.logo::before {
    content: '';
    position: absolute; left: 0;
    width: 38px; height: 38px;
    background: url('logo.jpg') no-repeat center / cover;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 0 2px rgba(6, 8, 16, 0.8), 0 0 0 4px var(--p1), 0 0 20px var(--p1-g);
    transition: var(--tr);
}
.logo:hover::before { box-shadow: 0 0 0 2px rgba(6, 8, 16, 0.8), 0 0 0 4px var(--p1-h), 0 0 30px var(--p1-g); transform: scale(1.05); }

/* Nav */
nav { display: flex; gap: 30px; align-items: center; }
nav a {
    color: var(--t3); text-decoration: none;
    font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
    transition: var(--tr); position: relative; padding: 6px 0;
}
nav a:hover, nav a.active { color: var(--t1); }
nav a::after {
    content: '';
    position: absolute; width: 0; height: 2px;
    bottom: 0; left: 0;
    background: linear-gradient(90deg, var(--p1), var(--p1-h));
    border-radius: 2px; transition: var(--tr);
    box-shadow: 0 0 8px var(--p1-g);
}
nav a:hover::after, nav a.active::after { width: 100%; }
.menu-toggle { display: none; color: var(--t1); font-size: 24px; cursor: pointer; z-index: 1001; }

/* ================================================================
   HERO
   ================================================================ */
.hero, .page-header {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center; position: relative; padding: 0 24px; overflow: hidden;
}
.slim-header { min-height: 50vh; }

/* Hero background */
.hero::before, .page-header::before {
    content: '';
    position: absolute; inset: 0; z-index: 0;
    background:
        linear-gradient(to bottom, rgba(6,8,16,0.45) 0%, rgba(6,8,16,0.7) 60%, rgba(6,8,16,1) 100%),
        url('hintergrund.jpg') no-repeat center center / cover;
}
/* Animated gradient orbs behind hero */
.hero .orb {
    position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; z-index: 0;
}
.hero .orb-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(160,64,245,0.18) 0%, transparent 70%);
    top: -100px; left: -100px;
    animation: orbFloat1 12s ease-in-out infinite;
}
.hero .orb-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(104,32,222,0.12) 0%, transparent 70%);
    bottom: 0; right: -80px;
    animation: orbFloat2 15s ease-in-out infinite;
}
@keyframes orbFloat1 {
    0%,100% { transform: translate(0,0) scale(1); }
    50%      { transform: translate(40px, 30px) scale(1.1); }
}
@keyframes orbFloat2 {
    0%,100% { transform: translate(0,0) scale(1); }
    50%      { transform: translate(-30px, -40px) scale(1.08); }
}

/* Scanline texture */
.hero::after {
    content: '';
    position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background: repeating-linear-gradient(
        0deg, transparent, transparent 3px,
        rgba(0,0,0,0.02) 3px, rgba(0,0,0,0.02) 4px
    );
}

.hero-content { position: relative; z-index: 2; margin-top: 60px; width: 100%; }

/* Hero badge */
.hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(160,64,245,0.1);
    border: 1px solid var(--b2);
    color: var(--p1-h); font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 3px;
    padding: 8px 20px; border-radius: 100px;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
    animation: badgePop 0.8s var(--ease) both;
}
.badge-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 10px var(--green), 0 0 20px rgba(0,230,118,0.4);
    animation: dotPulse 2s ease-in-out infinite;
    display: inline-block; flex-shrink: 0;
}
@keyframes badgePop {
    from { opacity: 0; transform: translateY(20px) scale(0.9); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.hero h1, .page-header h1 {
    font-size: clamp(2.8rem, 8vw, 7.5rem);
    line-height: 1.03; margin-bottom: 28px;
}
.hero p, .page-header p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    max-width: 640px; margin: 0 auto 52px;
    color: var(--t2); text-shadow: 0 2px 16px rgba(0,0,0,0.9);
    min-height: 2em;
}

/* Cursor blink */
.cursor-blink {
    display: inline-block; color: var(--p1);
    animation: blink 1s step-start infinite;
    font-weight: 300;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }

/* Scroll indicator */
.scroll-indicator {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    margin-top: 20px; opacity: 0.5;
    animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-indicator span {
    display: block; width: 1px; height: 60px;
    background: linear-gradient(180deg, var(--p1), transparent);
}
@keyframes scrollBounce {
    0%,100% { transform: translateY(0); opacity: 0.4; }
    50%      { transform: translateY(8px); opacity: 0.8; }
}

/* Glitch */
.glitch { position: relative; display: inline-block; }
.glitch::before, .glitch::after {
    content: attr(data-text);
    position: absolute; top: 0; left: 0; width: 100%;
    font: inherit; letter-spacing: inherit;
    opacity: 0; pointer-events: none;
}
.glitch::before {
    color: #ff3a6e;
    clip-path: polygon(0 20%, 100% 20%, 100% 44%, 0 44%);
    animation: g1 6s 4s infinite;
}
.glitch::after {
    color: #3ab4ff;
    clip-path: polygon(0 58%, 100% 58%, 100% 78%, 0 78%);
    animation: g2 6s 4.15s infinite;
}
@keyframes g1 {
    0%,85%,100%{ transform:none; opacity:0; }
    86%{ transform:translate(-4px, 1px); opacity:0.85; }
    88%{ transform:translate( 4px,-1px); opacity:0.85; }
    90%{ transform:translate(-2px, 2px); opacity:0.85; }
    92%{ transform:translate( 2px,-2px); opacity:0.85; }
}
@keyframes g2 {
    0%,85%,100%{ transform:none; opacity:0; }
    86%{ transform:translate( 4px,-1px); opacity:0.85; }
    88%{ transform:translate(-4px, 1px); opacity:0.85; }
    90%{ transform:translate( 2px, 2px); opacity:0.85; }
    92%{ transform:translate(-2px,-2px); opacity:0.85; }
}

/* ================================================================
   BUTTONS
   ================================================================ */
.btn-container { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn {
    padding: 17px 48px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: 2.5px;
    text-decoration: none; display: inline-flex; align-items: center; gap: 12px;
    cursor: pointer; transition: all 0.25s var(--ease);
    clip-path: polygon(14px 0, 100% 0, calc(100% - 14px) 100%, 0 100%);
    position: relative; overflow: hidden;
    will-change: transform;
}
/* Shine sweep */
.btn::before {
    content: '';
    position: absolute; top: 0; left: -120%;
    width: 70%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.14), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
}
.btn:hover::before { left: 150%; }

.btn-primary {
    background: linear-gradient(130deg, var(--p1), var(--p2));
    color: #fff;
    box-shadow: 0 0 32px var(--p1-g), 0 4px 24px rgba(0,0,0,0.5);
}
.btn-primary:hover {
    background: linear-gradient(130deg, var(--p1-h), var(--p1));
    box-shadow: 0 0 55px var(--p1-g), 0 8px 32px rgba(0,0,0,0.6);
}
.btn-secondary {
    background: transparent;
    color: var(--t1);
    border: 1px solid var(--b2);
    backdrop-filter: blur(12px);
}
.btn-secondary:hover {
    background: rgba(160,64,245,0.08);
    color: var(--p1-h); border-color: var(--p1);
    box-shadow: 0 0 28px var(--p1-gs);
}

/* ================================================================
   NEWS TICKER
   ================================================================ */
.news-ticker-container {
    width: 100%; position: relative; z-index: 2;
    background: linear-gradient(90deg, var(--p2), var(--p1), var(--p1-h), var(--p1), var(--p2));
    background-size: 300% 100%;
    animation: tickerGrad 8s linear infinite;
    color: #fff; padding: 11px 0; overflow: hidden; white-space: nowrap;
    font-family: 'Montserrat', sans-serif; font-weight: 800;
    font-size: 10px; letter-spacing: 3px;
}
@keyframes tickerGrad {
    0%   { background-position: 0%   50%; }
    100% { background-position: 300% 50%; }
}
.news-ticker-container::before,
.news-ticker-container::after {
    content: ''; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2; pointer-events: none;
}
.news-ticker-container::before { left:  0; background: linear-gradient( 90deg, var(--p2), transparent); }
.news-ticker-container::after  { right: 0; background: linear-gradient(-90deg, var(--p2), transparent); }
.news-ticker span { display: inline-block; padding-left: 100%; animation: ticker 32s linear infinite; }
@keyframes ticker {
    0%   { transform: translate3d(0,   0, 0); }
    100% { transform: translate3d(-100%,0, 0); }
}

/* ================================================================
   SECTION SPACERS
   ================================================================ */
.status-section, .steps-section, .features-section,
.factions-section, .gallery-section, .faq-section, .team-section {
    padding: 120px 6% 70px;
    max-width: 1440px; margin: 0 auto;
}
.team-section { padding-bottom: 150px; }

/* ================================================================
   STATUS CARD
   ================================================================ */
.status-card {
    /* Gradient border trick */
    background:
        linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
        linear-gradient(135deg, var(--p1), rgba(160,64,245,0.1) 50%, var(--p2)) border-box;
    border: 1px solid transparent;
    padding: 40px 80px;
    display: flex; align-items: center; gap: 70px;
    flex-wrap: wrap; justify-content: center;
    width: 100%; max-width: 1000px; margin: 0 auto;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    box-shadow:
        0 30px 80px rgba(0,0,0,0.9),
        inset 0 1px 0 rgba(255,255,255,0.05),
        0 0 80px rgba(160,64,245,0.05);
    position: relative;
}
.status-card::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(160,64,245,0.05) 0%, transparent 55%);
    pointer-events: none;
}

.status-divider { width: 1px; height: 55px; background: var(--b2); flex-shrink: 0; }
.status-item { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.status-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px; font-weight: 700; text-transform: uppercase;
    color: var(--t3); letter-spacing: 3px;
    display: flex; align-items: center; gap: 7px;
}
.status-label i { color: var(--p1); font-size: 10px; }
.status-value {
    font-size: 28px; font-family: 'Montserrat', sans-serif; font-weight: 900;
    display: flex; align-items: center; gap: 12px; color: var(--t1);
}
.dot {
    width: 9px; height: 9px; background: var(--green); border-radius: 50%;
    box-shadow: 0 0 10px var(--green), 0 0 22px rgba(0,230,118,0.5);
    animation: dotPulse 2s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes dotPulse {
    0%,100% { box-shadow: 0 0 10px var(--green), 0 0 22px rgba(0,230,118,0.4); transform: scale(1); }
    50%      { box-shadow: 0 0 18px var(--green), 0 0 40px rgba(0,230,118,0.7); transform: scale(1.35); }
}

.ip-btn-direct {
    background:
        linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
        linear-gradient(135deg, var(--p1), var(--p2)) border-box;
    border: 1px solid transparent; color: var(--p1);
    padding: 12px 32px;
    font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 11px;
    text-transform: uppercase; letter-spacing: 2px;
    cursor: pointer; transition: var(--tr); text-decoration: none;
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
    position: relative; overflow: hidden; display: inline-block;
}
.ip-btn-direct::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--p1), var(--p2));
    opacity: 0; transition: opacity 0.3s ease; z-index: 0;
}
.ip-btn-direct span { position: relative; z-index: 1; }
.ip-btn-direct:hover { color: #fff; box-shadow: 0 0 24px var(--p1-g); }
.ip-btn-direct:hover::before { opacity: 1; }

/* ================================================================
   GRID CARDS  (Steps, Features, Factions, Team)
   ================================================================ */
.steps-grid, .features-grid, .factions-grid, .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 24px;
}

.step-card, .feature-card, .faction-card, .team-card {
    /* Gradient border trick */
    background:
        linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
        linear-gradient(160deg, rgba(255,255,255,0.07), rgba(255,255,255,0.01) 50%, rgba(160,64,245,0)) border-box;
    border: 1px solid transparent;
    padding: 50px 40px;
    transition: background 0.4s var(--ease), transform 0.2s var(--ease), box-shadow 0.4s var(--ease);
    border-radius: var(--r-sm);
    will-change: transform;
    box-shadow: 0 4px 40px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.04);
}
.step-card:hover, .feature-card:hover, .faction-card:hover, .team-card:hover {
    background:
        linear-gradient(var(--bg-card-hv), var(--bg-card-hv)) padding-box,
        linear-gradient(160deg, var(--p1), rgba(160,64,245,0.2) 50%, var(--p2)) border-box;
    box-shadow:
        0 24px 80px rgba(0,0,0,0.85),
        inset 0 1px 0 rgba(160,64,245,0.15),
        0 0 50px rgba(160,64,245,0.08);
}

.step-number {
    position: absolute; top: -20px; right: 10px;
    font-size: 120px; font-family: 'Montserrat', sans-serif; font-weight: 900;
    color: rgba(255,255,255,0.018); line-height: 1;
    pointer-events: none; user-select: none; transition: var(--tr);
}
.step-card:hover .step-number { color: rgba(160,64,245,0.065); transform: scale(1.04); }

.step-card h3, .feature-card h3, .faction-card h3, .team-card h3 {
    font-size: 19px; margin-bottom: 14px; color: var(--t1);
    letter-spacing: 1px;
}
.step-card p, .feature-card p, .faction-card p { font-size: 14px; line-height: 1.7; }

.step-link {
    color: var(--p1); text-decoration: none;
    font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: 2px;
    display: inline-flex; align-items: center; gap: 8px;
    transition: var(--tr); margin-top: 24px;
}
.step-link:hover { color: var(--p1-h); gap: 16px; }

/* Feature icon — floating animation */
.feature-icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, rgba(160,64,245,0.15), rgba(104,32,222,0.08));
    border: 1px solid var(--b2);
    border-radius: var(--r-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 26px;
    color: var(--p1);
    margin-bottom: 26px;
    transition: var(--tr);
    animation: iconFloat 4s ease-in-out infinite;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4), 0 0 20px var(--p1-gs);
}
.feature-icon:nth-child(1) { animation-delay: 0s; }
.feature-card:nth-child(2) .feature-icon { animation-delay: 0.7s; }
.feature-card:nth-child(3) .feature-icon { animation-delay: 1.4s; }
@keyframes iconFloat {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-5px); }
}
.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, rgba(160,64,245,0.25), rgba(104,32,222,0.15));
    color: var(--p1-h); box-shadow: 0 12px 36px rgba(0,0,0,0.5), 0 0 36px var(--p1-g);
    animation: none; transform: scale(1.08);
}

/* Faction icon */
.faction-icon {
    font-size: 36px; color: var(--p1); margin-bottom: 22px;
    transition: var(--tr);
    filter: drop-shadow(0 0 12px var(--p1-gs));
    display: block;
}
.faction-card:hover .faction-icon {
    color: var(--p1-h);
    filter: drop-shadow(0 0 22px var(--p1-g));
    transform: scale(1.1);
}

.status-badge {
    display: inline-block; padding: 5px 14px;
    font-size: 10px; font-weight: 700; text-transform: uppercase;
    border-radius: 100px; margin-top: 18px;
    font-family: 'Montserrat', sans-serif; letter-spacing: 1px;
}
.status-badge.open  {
    background: var(--green-g); color: var(--green);
    border: 1px solid rgba(0,230,118,0.3);
}
.status-badge.closed {
    background: rgba(160,64,245,0.08); color: var(--p1);
    border: 1px solid var(--b2);
}

/* ================================================================
   INTERACTIVE CHECKLIST
   ================================================================ */
.checklist { margin: 28px 0; display: flex; flex-direction: column; gap: 16px; text-align: left; }
.check-container {
    display: flex; align-items: center; gap: 10px;
    font-size: 14px; color: var(--t3);
    cursor: pointer; position: relative; padding-left: 36px;
    transition: color 0.2s; user-select: none;
}
.check-container:hover { color: var(--t2); }
.check-container input { position: absolute; opacity: 0; cursor: pointer; width: 0; height: 0; }
.checkmark {
    position: absolute; top: 0; left: 0;
    width: 22px; height: 22px;
    background: var(--void); border: 1px solid var(--b1);
    border-radius: 5px; transition: var(--tr);
}
.check-container:hover input ~ .checkmark {
    border-color: var(--p1); box-shadow: 0 0 12px var(--p1-gs);
}
.check-container input:checked ~ .checkmark {
    background: linear-gradient(135deg, var(--p1), var(--p2));
    border-color: var(--p1); box-shadow: 0 0 16px var(--p1-g);
}
.checkmark::after {
    content: ''; position: absolute; display: none;
    left: 7px; top: 3px; width: 5px; height: 10px;
    border: solid #fff; border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.check-container input:checked ~ .checkmark::after { display: block; }
.check-container input:checked ~ span { color: var(--t1); }

.disabled-link { opacity: 0.3; pointer-events: none; filter: grayscale(1); }
.disabled-link.active-link {
    opacity: 1; pointer-events: auto; filter: none; color: #fff;
    background: linear-gradient(135deg, var(--p1), var(--p2));
    padding: 12px 26px; border-radius: var(--r-sm);
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
    box-shadow: 0 0 28px var(--p1-g);
}
.disabled-link.active-link:hover {
    background: linear-gradient(135deg, var(--p1-h), var(--p1));
    box-shadow: 0 0 40px var(--p1-g); gap: 14px;
}

/* ================================================================
   GALLERY
   ================================================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}
.gallery-item {
    height: 230px; overflow: hidden;
    border-radius: var(--r-md);
    background:
        linear-gradient(var(--bg-card),var(--bg-card)) padding-box,
        linear-gradient(160deg, rgba(255,255,255,0.07), rgba(160,64,245,0)) border-box;
    border: 1px solid transparent;
    position: relative; cursor: pointer;
    box-shadow: 0 8px 36px rgba(0,0,0,0.6);
    transition: var(--tr);
}
.gallery-item:hover {
    background:
        linear-gradient(var(--bg-card),var(--bg-card)) padding-box,
        linear-gradient(160deg, var(--p1), var(--p2)) border-box;
    box-shadow: 0 16px 52px rgba(0,0,0,0.75), 0 0 32px var(--p1-gs);
    transform: translateY(-6px) scale(1.01);
}
.gallery-img {
    width: 100%; height: 100%;
    background-size: cover; background-position: center;
    transition: transform 0.7s ease;
    filter: grayscale(0.5) brightness(0.78) contrast(1.05);
}
.gallery-item:hover .gallery-img {
    transform: scale(1.09);
    filter: grayscale(0) brightness(1) contrast(1);
}
/* Bottom overlay */
.gallery-item::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(6,8,16,0.7) 0%, transparent 55%);
    pointer-events: none; transition: opacity 0.4s;
}
.gallery-item:hover::after { opacity: 0.4; }

/* ================================================================
   FAQ ACCORDION
   ================================================================ */
.faq-container { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

.faq-item {
    background:
        linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
        linear-gradient(135deg, rgba(255,255,255,0.07), rgba(160,64,245,0)) border-box;
    border: 1px solid transparent;
    border-radius: var(--r-md); overflow: hidden;
    transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.faq-question {
    padding: 22px 28px;
    font-family: 'Montserrat', sans-serif; font-weight: 700;
    color: var(--t1); cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    transition: var(--tr); font-size: 13px; letter-spacing: 0.5px;
    gap: 16px;
}
.faq-question:hover { color: var(--p1-h); background: rgba(160,64,245,0.04); }
.faq-question i { transition: transform 0.35s ease; color: var(--p1); flex-shrink: 0; }
.faq-answer {
    max-height: 0; padding: 0 28px; opacity: 0;
    transition: all 0.44s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--t2); font-size: 14.5px; line-height: 1.75;
}

.faq-item.faq-open {
    background:
        linear-gradient(var(--bg-card-hv), var(--bg-card-hv)) padding-box,
        linear-gradient(135deg, var(--p1), rgba(160,64,245,0.2) 50%, var(--p2)) border-box;
    box-shadow: 0 8px 40px rgba(0,0,0,0.6), 0 0 28px var(--p1-gs);
}
.faq-item.faq-open .faq-question {
    color: var(--p1-h); border-bottom: 1px solid var(--b2);
}
.faq-item.faq-open .faq-question i { transform: rotate(180deg); }
.faq-item.faq-open .faq-answer { max-height: 280px; padding: 22px 28px; opacity: 1; }

/* ================================================================
   CONTACT FORM
   ================================================================ */
.contact-section { padding: 120px 6% 70px; max-width: 1440px; margin: 0 auto; }
.contact-container {
    max-width: 600px; margin: 0 auto;
    background:
        linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
        linear-gradient(135deg, rgba(255,255,255,0.07), rgba(160,64,245,0)) border-box;
    border: 1px solid transparent;
    border-radius: var(--r-md);
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.contact-container:hover {
    background:
        linear-gradient(var(--bg-card-hv), var(--bg-card-hv)) padding-box,
        linear-gradient(135deg, var(--p1), rgba(160,64,245,0.2) 50%, var(--p2)) border-box;
    box-shadow: 0 24px 80px rgba(0,0,0,0.85), inset 0 1px 0 rgba(160,64,245,0.15), 0 0 50px rgba(160,64,245,0.08);
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group input, .form-group textarea {
    width: 100%;
    background: rgba(3,4,8,0.5);
    border: 1px solid var(--b2);
    border-radius: var(--r-sm);
    padding: 16px;
    color: var(--t1);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    outline: none;
    transition: var(--tr);
}
.form-group input:focus, .form-group textarea:focus {
    border-color: var(--p1);
    box-shadow: 0 0 16px var(--p1-gs);
    background: rgba(3,4,8,0.8);
}
.form-group input::placeholder, .form-group textarea::placeholder {
    color: var(--t3);
}

/* ================================================================
   TEAM
   ================================================================ */
.team-avatar-img {
    width: 82px; height: 82px; border-radius: 50%;
    object-fit: cover; margin-bottom: 22px;
    box-shadow: 0 0 0 2px var(--bg-card), 0 0 0 4px var(--p1), 0 0 28px var(--p1-g);
    background-color: var(--void); transition: var(--tr);
}
.team-card:hover .team-avatar-img {
    box-shadow: 0 0 0 2px var(--bg-card), 0 0 0 4px var(--p1-h), 0 0 44px var(--p1-g);
    transform: scale(1.06);
}
.team-card p.role {
    color: var(--p1); font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.5px;
    margin-bottom: 0;
}

/* ================================================================
   LEGAL / TEXT PAGES
   ================================================================ */
.content-section { max-width: 940px; margin: 0 auto; padding: 0 24px 130px; }
.legal-box {
    background:
        linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
        linear-gradient(135deg, var(--p1), rgba(160,64,245,0.1) 50%, var(--p2)) border-box;
    border: 1px solid transparent;
    border-radius: 0 0 var(--r-md) var(--r-md);
    padding: 56px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.9);
}
.legal-box h2 { font-size: 22px; margin-top: 48px; margin-bottom: 18px; color: var(--t1); }
.legal-box h2:first-child { margin-top: 0; }
.legal-box h3 { font-size: 14px; margin-top: 28px; margin-bottom: 10px; color: var(--p1); }
.legal-box p { margin-bottom: 20px; font-size: 14.5px; }
.legal-box a { color: var(--p1); text-decoration: none; font-weight: 600; }
.legal-box a:hover { color: var(--p1-h); text-decoration: underline; }

.rule-block {
    margin-bottom: 52px; padding: 38px 44px;
    background:
        linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
        linear-gradient(90deg, var(--p1), rgba(160,64,245,0.1)) border-box;
    border: 1px solid transparent;
    border-radius: 0 var(--r-sm) var(--r-sm) 0;
    border-left: 4px solid var(--p1);
    transition: var(--tr); word-break: break-word;
}
.rule-block:hover {
    background:
        linear-gradient(var(--bg-card-hv), var(--bg-card-hv)) padding-box,
        linear-gradient(90deg, var(--p1), rgba(160,64,245,0.2)) border-box;
    transform: translateX(8px);
    box-shadow: 0 16px 50px rgba(0,0,0,0.7), 0 0 30px var(--p1-gs);
}
.rule-block h2 {
    font-size: 21px; margin-bottom: 26px; color: var(--t1);
    display: flex; align-items: center; gap: 14px;
}
.rule-block h2 i { color: var(--p1); }
.rule-block ul { list-style: none; }
.rule-block li { margin-bottom: 14px; position: relative; padding-left: 28px; font-size: 14.5px; }
.rule-block li::before {
    content: '\f0da'; font-family: "Font Awesome 6 Free"; font-weight: 900;
    position: absolute; left: 0; top: 2px; color: var(--p1); font-size: 13px;
}
.rule-block strong { color: var(--t1); font-weight: 600; }

/* ================================================================
   SCROLL REVEAL
   ================================================================ */
.reveal {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.active { opacity: 1; transform: translateY(0); }

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
    padding: 56px 6%;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 24px;
    background: var(--bg-layer);
    border-top: 1px solid var(--b1);
    position: relative;
}
.footer::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--p1), transparent);
}
.footer-text { font-size: 13px; color: var(--t3); }
.footer-links { display: flex; gap: 30px; flex-wrap: wrap; }
.footer-links a {
    color: var(--t3); text-decoration: none;
    font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
    transition: var(--tr);
}
.footer-links a:hover { color: var(--p1-h); }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 900px) {
    .status-divider { display: none; }
    .status-card {
        flex-direction: column; gap: 28px; text-align: center;
        clip-path: none; border-radius: var(--r-md); padding: 36px 32px;
    }
}
@media (max-width: 768px) {
    header { padding: 18px 5%; background: rgba(6,8,16,0.96); }
    header.scrolled { padding: 18px 5%; }
    .menu-toggle { display: block; }
    nav#nav-menu {
        position: fixed; top: 0; right: -100%; width: 100%; height: 100vh;
        background: rgba(3,4,8,0.98);
        backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px);
        flex-direction: column; justify-content: center; align-items: center;
        gap: 34px; transition: 0.44s cubic-bezier(0.25, 0.8, 0.25, 1); z-index: 1000;
    }
    nav#nav-menu.active { right: 0; }
    nav a { font-size: 15px; }
    .hero h1, .page-header h1 { font-size: 2.2rem; overflow-wrap: break-word; hyphens: auto; }
    .btn-container { flex-direction: column; width: 100%; align-items: stretch; }
    .btn { width: 100%; clip-path: none; border-radius: var(--r-sm); }
    .status-section, .steps-section, .features-section,
    .factions-section, .gallery-section, .faq-section, .team-section {
        padding: 80px 5% 50px;
    }
    .content-section { padding: 0 16px 90px; }
    .rule-block, .legal-box { padding: 26px 20px; }
    .rule-block:hover { transform: none; }
    .footer { flex-direction: column; text-align: center; }
    .footer-links { justify-content: center; }
}