/* ===== DESIGN TOKENS ===== */
:root {
    --primary: #2563eb;
    --primary-light: #3b82f6;
    --primary-dark: #1d4ed8;
    --primary-glow: rgba(37, 99, 235, 0.4);
    --accent: #60a5fa;
    --accent-glow: rgba(96, 165, 250, 0.25);
    --gold: #f59e0b;
    --gold-light: #fbbf24;
    --gold-glow: rgba(245, 158, 11, 0.3);
    --bg-deep: #050811;
    --bg-dark: #090e1a;
    --bg-card: rgba(13, 20, 38, 0.55);
    --bg-card-hover: rgba(18, 28, 54, 0.8);
    --border: rgba(59, 130, 246, 0.15);
    --border-hover: rgba(59, 130, 246, 0.35);
    --text: #e2e8f0;
    --text-muted: #94a3b8;
    --text-dim: #475569;
    --white: #ffffff;
    --radius: 20px;
    --radius-sm: 12px;
    --shadow-glow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --font: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: var(--font-body);
    background: var(--bg-deep);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== PARTICLES ===== */
#particles-canvas {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0; pointer-events: none;
}

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.accent { color: var(--primary-light); }
.accent-gradient {
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 28px; border-radius: var(--radius-sm);
    font-family: var(--font); font-weight: 600; font-size: 0.95rem;
    cursor: pointer; transition: all 0.3s ease; border: none; position: relative; overflow: hidden;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white); box-shadow: 0 4px 20px var(--primary-glow);
}
.btn-primary:hover {
    transform: translateY(-2px); box-shadow: 0 8px 30px var(--primary-glow);
}
.btn-glass {
    background: rgba(255,255,255,0.05); color: var(--text);
    border: 1px solid var(--border); backdrop-filter: blur(10px);
}
.btn-glass:hover { background: rgba(255,255,255,0.1); border-color: var(--border-hover); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; }
.btn-discord {
    background: #5865F2; color: var(--white);
}
.btn-discord:hover { background: #4752c4; transform: translateY(-2px); }
.btn-shop {
    background: linear-gradient(135deg, #f59e0b, #d97706); color: var(--white);
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}
.btn-shop:hover { background: linear-gradient(135deg, #d97706, #b45309); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(245, 158, 11, 0.4); }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    padding: 16px 0; transition: all 0.4s ease;
}
.navbar.scrolled {
    background: rgba(6, 10, 20, 0.85); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border); padding: 10px 0;
}
.nav-container {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.logo-img { width: 42px; height: 42px; border-radius: 10px; object-fit: cover; }
.logo-text { font-family: var(--font); font-weight: 800; font-size: 1.3rem; }
.nav-links { display: flex; gap: 8px; }
.nav-link {
    padding: 8px 18px; border-radius: 8px; font-size: 0.9rem; font-weight: 500;
    color: var(--text-muted); transition: all 0.3s;
}
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(255,255,255,0.06); }
.btn-nav { padding: 10px 22px; font-size: 0.85rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }

/* ===== HERO ===== */
.hero {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    justify-content: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg-img { width: 100%; height: 100%; object-fit: cover; opacity: 0.3; filter: brightness(0.5) contrast(1.1); }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(5,8,17,0.3) 0%, rgba(5,8,17,0.75) 60%, var(--bg-deep) 100%);
}
.hero-container {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    padding-top: 120px;
    padding-bottom: 80px;
    text-align: left;
    width: 100%;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 20px; border-radius: 50px; font-size: 0.85rem; font-weight: 500;
    background: rgba(37,99,235,0.08); border: 1px solid rgba(37,99,235,0.2); color: var(--accent);
    margin-bottom: 24px;
}
.badge-dot {
    width: 8px; height: 8px; background: #22c55e; border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero-title {
    font-family: var(--font); font-size: clamp(3rem, 7.5vw, 5.2rem);
    font-weight: 900; line-height: 1.05; letter-spacing: -2px; margin-bottom: 20px;
}
.hero-subtitle { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 36px; line-height: 1.7; }
.hero-cta { display: flex; gap: 16px; justify-content: flex-start; flex-wrap: wrap; }

/* Status & Connection Card */
.hero-status-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--shadow-glow);
    transition: all 0.4s ease;
}
.hero-status-card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.18);
}
.card-glass-glow {
    position: absolute;
    top: -50px; right: -50px;
    width: 150px; height: 150px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    opacity: 0.12;
    pointer-events: none;
}
.status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
    margin-bottom: 24px;
}
.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
}
.pulse-dot {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 10px #22c55e;
    animation: pulse-dot-shadow 2.5s ease-in-out infinite;
}
@keyframes pulse-dot-shadow {
    0%, 100% { transform: scale(1); box-shadow: 0 0 8px rgba(34, 197, 94, 0.6); }
    50% { transform: scale(1.15); box-shadow: 0 0 15px rgba(34, 197, 94, 0.9); }
}
.status-text.text-red { color: #ef4444; }
.pulse-dot.offline {
    background: #ef4444;
    box-shadow: 0 0 10px #ef4444;
    animation: pulse-dot-shadow-red 2.5s ease-in-out infinite;
}
@keyframes pulse-dot-shadow-red {
    0%, 100% { transform: scale(1); box-shadow: 0 0 8px rgba(239, 68, 68, 0.6); }
    50% { transform: scale(1.15); box-shadow: 0 0 15px rgba(239, 68, 68, 0.9); }
}
.status-dot.offline {
    background: #ef4444;
    animation: pulse-dot-red 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 0.6; box-shadow: 0 0 0 0px rgba(34, 197, 94, 0.5); }
    50% { opacity: 1; box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}
@keyframes pulse-dot-red {
    0%, 100% { opacity: 0.6; box-shadow: 0 0 0 0px rgba(239, 68, 68, 0.5); }
    50% { opacity: 1; box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
}
.status-text.text-green { color: #22c55e; }
.ping-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.ping-indicator svg { color: var(--accent); }
.status-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 28px;
}
.status-stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.stat-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.stat-lbl {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 500;
}
.stat-val {
    font-family: var(--font);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
}
.stat-max {
    font-family: var(--font);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dim);
}
.bar-container {
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
}
.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 10px;
    transition: width 1.5s cubic-bezier(0.1, 1, 0.1, 1);
}
.bar-fill.blue {
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
}
.ip-copy-widget {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ip-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--text-dim);
}
.ip-box {
    display: flex;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s;
}
.ip-box:hover {
    border-color: rgba(96, 165, 250, 0.35);
    background: rgba(0, 0, 0, 0.35);
}
.ip-box code {
    font-family: monospace;
    font-size: 0.9rem;
    color: var(--accent);
    letter-spacing: 0.5px;
    user-select: all;
}
.btn-copy {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.2s;
}
.btn-copy:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}
.hero-scroll-indicator {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2;
}
.scroll-line {
    width: 2px; height: 40px; background: linear-gradient(to bottom, var(--primary-light), transparent);
    animation: scroll-anim 2s ease-in-out infinite;
}
@keyframes scroll-anim { 0%,100% { opacity: 0.3; transform: scaleY(0.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* ===== ANIMATIONS ===== */
.animate-fade-up { opacity: 0; transform: translateY(30px); animation: fadeUp 0.8s ease forwards; }
.delay-1 { animation-delay: 0.15s; } .delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; } .delay-4 { animation-delay: 0.6s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* ===== SECTIONS ===== */
.section { position: relative; z-index: 1; padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
    display: inline-block; font-size: 0.8rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 2px; color: var(--primary-light); margin-bottom: 12px;
    padding: 6px 16px; background: rgba(37,99,235,0.1); border-radius: 50px;
}
.section-title { font-family: var(--font); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 16px; }
.section-desc { color: var(--text-muted); max-width: 550px; margin: 0 auto; font-size: 1.05rem; }

/* ===== FEATURES ===== */
.features { background: var(--bg-deep); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 36px 28px; transition: all 0.4s ease; position: relative; overflow: hidden;
}
.feature-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
    opacity: 0; transition: opacity 0.4s;
}
.feature-card:hover { transform: translateY(-6px); border-color: var(--border-hover); background: var(--bg-card-hover); }
.feature-card:hover::before { opacity: 1; }
.feature-icon {
    width: 52px; height: 52px; border-radius: 12px;
    background: rgba(37,99,235,0.1); border: 1px solid rgba(37,99,235,0.2);
    display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.feature-icon svg { width: 24px; height: 24px; stroke: var(--primary-light); }
.feature-card h3 { font-family: var(--font); font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.feature-card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.6; }

/* ===== RULES ===== */
.rules { background: linear-gradient(180deg, var(--bg-deep) 0%, rgba(10,14,26,1) 100%); }
.rules-container { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.rule-card {
    display: flex; align-items: flex-start; gap: 24px;
    padding: 28px; background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); transition: all 0.3s;
}
.rule-card:hover { border-color: var(--border-hover); transform: translateX(8px); }
.rule-number {
    font-family: var(--font); font-size: 2rem; font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; min-width: 48px;
}
.rule-content h3 { font-family: var(--font); font-weight: 700; margin-bottom: 6px; font-size: 1.1rem; }
.rule-content p { color: var(--text-muted); font-size: 0.9rem; }

/* ===== TEAM ===== */
.team { background: var(--bg-dark); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card {
    text-align: center; padding: 36px 20px; background: var(--bg-card);
    border: 1px solid var(--border); border-radius: var(--radius); transition: all 0.4s;
}
.team-card:hover { transform: translateY(-6px); border-color: var(--border-hover); }
.team-avatar { position: relative; width: 80px; height: 80px; margin: 0 auto 20px; }
.avatar-placeholder {
    width: 80px; height: 80px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    display: flex; align-items: center; justify-content: center;
}
.avatar-placeholder svg { width: 36px; height: 36px; stroke: var(--white); }
.avatar-glow {
    position: absolute; inset: -4px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    z-index: -1; opacity: 0.3; filter: blur(8px);
}
.team-card h3 { font-family: var(--font); font-weight: 700; font-size: 1.1rem; margin-bottom: 4px; }
.team-role {
    display: inline-block; font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 1px; color: var(--primary-light); margin-bottom: 12px;
}
.team-card p { color: var(--text-muted); font-size: 0.85rem; }

/* ===== JOIN ===== */
.join { background: var(--bg-deep); }
.join-wrapper { display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center; }
.steps { display: flex; flex-direction: column; gap: 24px; margin-top: 36px; }
.step { display: flex; align-items: flex-start; gap: 20px; }
.step-number {
    min-width: 44px; height: 44px; border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font); font-weight: 800; font-size: 1.1rem; color: var(--white);
}
.step-info h4 { font-family: var(--font); font-weight: 700; margin-bottom: 4px; }
.step-info p { color: var(--text-muted); font-size: 0.9rem; }
.connect-card {
    position: relative; padding: 40px 32px; background: var(--bg-card);
    border: 1px solid var(--border); border-radius: var(--radius);
    display: flex; flex-direction: column; gap: 16px; overflow: hidden;
}
.connect-card-glow {
    position: absolute; top: -60px; right: -60px; width: 180px; height: 180px;
    background: var(--primary); opacity: 0.08; border-radius: 50%; filter: blur(50px);
}
.server-status { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text-muted); }
.status-dot { width: 10px; height: 10px; background: #22c55e; border-radius: 50%; animation: pulse-dot 2s ease-in-out infinite; }
.connect-card h3 { font-family: var(--font); font-size: 1.5rem; font-weight: 800; }
.connect-ip {
    font-family: monospace; font-size: 0.85rem; padding: 12px 16px;
    background: rgba(0,0,0,0.3); border-radius: 8px; color: var(--accent);
    border: 1px solid var(--border);
}

/* ===== FOOTER ===== */
.footer { position: relative; z-index: 1; border-top: 1px solid var(--border); padding: 60px 0 30px; background: var(--bg-dark); }
.footer-top { display: flex; justify-content: space-between; gap: 40px; margin-bottom: 40px; }
.footer-brand { max-width: 320px; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; margin-top: 16px; }
.footer-links { display: flex; gap: 60px; }
.footer-col h4 { font-family: var(--font); font-weight: 700; margin-bottom: 16px; font-size: 0.95rem; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--text-muted); font-size: 0.88rem; transition: color 0.3s; }
.footer-col a:hover { color: var(--primary-light); }
.footer-bottom {
    border-top: 1px solid var(--border); padding-top: 24px;
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { color: var(--text-dim); font-size: 0.8rem; }

/* ===== MAP INTERACTIVE ===== */
.map-section {
    background: var(--bg-deep);
}
.map-interactive-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: stretch;
    margin-top: 40px;
}
@media (max-width: 992px) {
    .map-interactive-container {
        grid-template-columns: 1fr;
    }
}
.map-visual-container {
    aspect-ratio: 16/11;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.6);
}
.map-glow-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
}
.map-grid-overlay {
    position: absolute;
    inset: 0;
    background-size: 30px 30px;
    background-image: 
        linear-gradient(to right, rgba(59, 130, 246, 0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(59, 130, 246, 0.04) 1px, transparent 1px);
}
.map-radar {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.radar-circle {
    position: absolute;
    border: 1px dashed rgba(59, 130, 246, 0.08);
    border-radius: 50%;
}
.radar-c1 { width: 85%; height: 85%; }
.radar-c2 { width: 55%; height: 55%; }
.radar-c3 { width: 25%; height: 25%; }
.radar-line {
    position: absolute;
    background: rgba(59, 130, 246, 0.04);
}
.radar-h { width: 90%; height: 1px; }
.radar-v { height: 90%; width: 1px; }

.map-marker {
    position: absolute;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(13, 20, 38, 0.9);
    border: 2px solid var(--primary-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    outline: none;
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.35);
}
.map-marker svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
}
.map-marker.active {
    background: var(--primary-light);
    color: var(--white);
    transform: scale(1.2);
    box-shadow: 0 0 25px var(--primary-glow);
    border-color: var(--white);
}
.map-marker:hover {
    transform: scale(1.15);
    border-color: var(--accent);
    color: var(--white);
}
.map-marker.illegal {
    border-color: #ef4444;
    color: #f87171;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.35);
}
.map-marker.illegal.active {
    background: #ef4444;
    color: var(--white);
    box-shadow: 0 0 25px rgba(239, 68, 68, 0.55);
}
.marker-pulse {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1.5px solid inherit;
    opacity: 0;
    animation: marker-pulse-anim 2s infinite;
    pointer-events: none;
}
.map-marker.active .marker-pulse {
    border-color: var(--primary-light);
    opacity: 1;
}
.map-marker.illegal.active .marker-pulse {
    border-color: #ef4444;
}
@keyframes marker-pulse-anim {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.5); opacity: 0; }
}

.map-details-container {
    perspective: 1000px;
}
.location-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-glow);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.location-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    align-self: flex-start;
}
.location-badge.legal {
    background: rgba(34, 197, 94, 0.1);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.2);
}
.location-badge.illegal {
    background: rgba(239, 68, 68, 0.1);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.2);
}
.location-card h3 {
    font-family: var(--font);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}
.location-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
}
.location-features {
    margin-bottom: 30px;
}
.location-features h4 {
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.location-features ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.location-features li {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}
.location-features li::before {
    content: "?";
    color: var(--accent);
    font-weight: 800;
}

/* ===== RULES TABS & ACCORDIONS ===== */
.rules-tab-container {
    max-width: 800px;
    margin: 40px auto 0;
}
.rules-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}
.tab-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    font-family: var(--font);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
}
.tab-btn:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--border-hover);
    color: var(--white);
}
.tab-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-color: var(--primary-light);
    color: var(--white);
    box-shadow: 0 4px 15px var(--primary-glow);
}
.tab-pane {
    display: none;
}
.tab-pane.active {
    display: block;
    animation: fadeIn 0.4s ease forwards;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.accordion-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.accordion-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: all 0.3s;
}
.accordion-item:hover {
    border-color: var(--border-hover);
}
.accordion-item.active {
    border-color: rgba(59, 130, 246, 0.4);
    background: var(--bg-card-hover);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.accordion-header {
    width: 100%;
    background: none;
    border: none;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
    font-family: var(--font);
    font-weight: 700;
    font-size: 1.1rem;
    text-align: left;
    cursor: pointer;
    outline: none;
}
.accordion-header span {
    padding-right: 20px;
}
.accordion-header svg.arrow {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--accent);
    flex-shrink: 0;
}
.accordion-item.active .accordion-header svg.arrow {
    transform: rotate(180deg);
}
.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.accordion-body p {
    padding: 0 24px 24px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== GALLERY CAROUSEL ===== */
.gallery-section {
    background: var(--bg-dark);
}
.gallery-slider-container {
    position: relative;
    max-width: 900px;
    margin: 40px auto 0;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow-glow);
}
.gallery-wrapper {
    position: relative;
    aspect-ratio: 16/9;
    width: 100%;
}
.gallery-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
    transform: scale(1.02);
    z-index: 1;
}
.gallery-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}
.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(5, 8, 17, 0.95) 0%, rgba(5, 8, 17, 0.5) 70%, transparent 100%);
    padding: 40px 40px 30px;
    color: var(--white);
    z-index: 3;
}
.slide-caption h3 {
    font-family: var(--font);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--white);
}
.slide-caption p {
    color: var(--text-muted);
    font-size: 0.95rem;
}
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(13, 20, 38, 0.8);
    border: 1px solid var(--border);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
}
.gallery-nav:hover {
    background: var(--primary);
    border-color: var(--primary-light);
    box-shadow: 0 0 15px var(--primary-glow);
}
.gallery-nav.prev { left: 20px; }
.gallery-nav.next { right: 20px; }

.gallery-dots {
    position: absolute;
    bottom: 24px;
    right: 40px;
    display: flex;
    gap: 8px;
    z-index: 10;
}
.gallery-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}
.gallery-dots .dot:hover {
    background: rgba(255, 255, 255, 0.6);
}
.gallery-dots .dot.active {
    width: 24px;
    border-radius: 10px;
    background: var(--accent);
}

/* ===== WHITELIST QUIZ ===== */
.quiz-section {
    background: var(--bg-deep);
}
.quiz-container {
    max-width: 680px;
    margin: 40px auto 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-glow);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
}
.quiz-progress-bar {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
}
.quiz-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    width: 0%;
    transition: width 0.4s ease;
}
.quiz-step-info {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
    display: inline-block;
}
.quiz-question {
    font-family: var(--font);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.4;
}
.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}
.quiz-option {
    text-align: left;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 0.92rem;
    line-height: 1.5;
    cursor: pointer;
    transition: all 0.25s;
    outline: none;
}
.quiz-option:hover {
    background: rgba(59, 130, 246, 0.05);
    border-color: rgba(59, 130, 246, 0.3);
    color: var(--white);
}
.quiz-option.selected {
    background: rgba(37, 99, 235, 0.15);
    border-color: var(--primary-light);
    color: var(--white);
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.15);
}
.quiz-option.correct {
    background: rgba(34, 197, 94, 0.15);
    border-color: #22c55e;
    color: #4ade80;
}
.quiz-option.incorrect {
    background: rgba(239, 68, 68, 0.15);
    border-color: #ef4444;
    color: #f87171;
}
.quiz-footer {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--border);
    padding-top: 24px;
}
.quiz-result-title {
    font-family: var(--font);
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 12px;
}
.quiz-result-score {
    font-family: var(--font);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 20px;
}
.quiz-result-desc {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* ===== BOUTIQUE EXCLUSIVE ===== */
.shop-section {
    background: var(--bg-dark);
}
.shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.shop-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.shop-card-glow {
    position: absolute;
    bottom: -60px; right: -60px;
    width: 150px; height: 150px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    opacity: 0.05;
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.4s;
}
.shop-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-glow);
}
.shop-card:hover .shop-card-glow {
    opacity: 0.12;
}

/* Gold Theme for VIP card */
.shop-card.VIP {
    border-color: rgba(245, 158, 11, 0.25);
}
.shop-card.VIP::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.shop-card.VIP:hover {
    border-color: rgba(245, 158, 11, 0.45);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.25);
}
.shop-card.VIP .shop-card-glow {
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    opacity: 0.08;
}
.shop-card.VIP:hover .shop-card-glow {
    opacity: 0.18;
}
.shop-card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--gold), #d97706);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 50px;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
}

.shop-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    background: rgba(59, 130, 246, 0.06);
    border: 1px solid rgba(59, 130, 246, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 24px;
}
.shop-card.VIP .shop-icon {
    background: rgba(245, 158, 11, 0.06);
    border-color: rgba(245, 158, 11, 0.18);
    color: var(--gold);
}
.shop-card h3 {
    font-family: var(--font);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}
.shop-price {
    font-family: var(--font);
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 24px;
    display: inline-block;
}
.shop-card.VIP .shop-price {
    color: var(--gold-light);
}
.shop-price .duration {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    font-family: var(--font-body);
}
.shop-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
    flex-grow: 1;
}
.shop-features li {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.4;
}
.shop-features li::before {
    content: "?";
    color: var(--accent);
    font-weight: 800;
}
.shop-card.VIP .shop-features li::before {
    color: var(--gold);
}

/* ===== TOAST NOTIFICATIONS ===== */
.toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
    pointer-events: none;
}
.toast {
    background: rgba(13, 20, 38, 0.9);
    border: 1px solid var(--border);
    padding: 16px 24px;
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: var(--font);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: auto;
}
.toast.show {
    transform: translateY(0);
    opacity: 1;
}
.toast-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}
.toast-icon.success svg {
    color: #22c55e;
}
.toast-icon.info svg {
    color: var(--accent);
}

/* Scrollbar improvement */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
    background: rgba(59, 130, 246, 0.15);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(59, 130, 246, 0.35);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .join-wrapper { grid-template-columns: 1fr; }
}
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding-top: 120px;
        padding-bottom: 50px;
    }
    .hero-cta {
        justify-content: center;
    }
    .hero-status-card {
        padding: 24px;
    }
}
@media (max-width: 768px) {
    .nav-links { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
        background: rgba(6,10,20,0.97); flex-direction: column; align-items: center;
        justify-content: center; gap: 20px; z-index: 999;
    }
    .nav-links.open { display: flex; }
    .hamburger { display: flex; z-index: 1001; }
    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
    .btn-nav { display: none; }
    .features-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .footer-top { flex-direction: column; }
    .footer-bottom { flex-direction: column; text-align: center; }
}
