:root {
    --bg: #080808;
    --bg2: #0f0f0f;
    --bg3: #141414;
    --red: #FF2D2D;
    --red-dark: #cc1a1a;
    --white: #F0EDE6;
    --grey: #555;
    --grey2: #333;
    --border: rgba(255,255,255,0.08);
    --font-display: 'Anton', sans-serif;
    --font-body: 'Syne', sans-serif;
    --font-mono: 'DM Mono', monospace;
  }

  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  /* Hide scrollbar for Chrome, Safari and Opera */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
html, body {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--white);
    font-family: var(--font-body);
    overflow-x: hidden;
    cursor: default;
  }

  /* Grain overlay */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
    pointer-events: none;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(1.5rem, 5vw, 4rem);
    height: 68px;
    background: rgba(8,8,8,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
  }

  .nav-logo {
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 0.02em;
    color: var(--white);
    cursor: pointer;
    text-decoration: none;
  }

  .nav-logo span { color: var(--red); }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
  }

  .nav-links a {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(240,237,230,0.5);
    text-decoration: none;
    transition: color 0.2s;
    cursor: pointer;
  }

  .nav-links a:hover, .nav-links a.active { color: var(--white); }

  .nav-cta {
    background: var(--red) !important;
    color: var(--white) !important;
    padding: 0.5rem 1.2rem;
    font-size: 0.75rem !important;
    letter-spacing: 0.1em;
    transition: background 0.2s !important;
  }

  .nav-cta:hover { background: var(--red-dark) !important; }

  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
  }

  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
  }

  /* PAGES */
  .page { display: none; min-height: 100vh; }
  .page.active { display: block !important; position: relative; z-index: 100;}

  /* ============ HOME PAGE ============ */
  /* HERO */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px clamp(1.5rem, 6vw, 6rem) 80px;
    position: relative;
    overflow: hidden;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--red);
    border: 1px solid rgba(255,45,45,0.3);
    padding: 0.4rem 1rem;
    margin-bottom: 2rem;
    width: fit-content;
    animation: fadeUp 0.6s ease both;
  }

  .hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--red);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
  }

  .hero h1 {
    font-family: var(--font-display);
    font-size: clamp(4.5rem, 12vw, 11rem);
    line-height: 0.92;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--white);
    animation: fadeUp 0.6s ease 0.1s both;
    max-width: 900px;
  }

  .hero h1 .accent { color: var(--red); }

  .hero-sub {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: rgba(240,237,230,0.55);
    margin-top: 1.8rem;
    max-width: 480px;
    line-height: 1.6;
    font-weight: 600;
    animation: fadeUp 0.6s ease 0.2s both;
  }

  .hero-actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
    animation: fadeUp 0.6s ease 0.3s both;
  }

  .btn-primary {
    background: var(--red);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    padding: 1rem 2.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
  }

  .btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
  }

  .btn-ghost {
    background: transparent;
    color: rgba(240,237,230,0.6);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    padding: 1rem 0;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s;
  }

  .btn-ghost:hover { color: var(--white); }

  .hero-stat-row {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
    animation: fadeUp 0.6s ease 0.4s both;
    flex-wrap: wrap;
  }

  .hero-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 2.4rem;
    color: var(--white);
    letter-spacing: 0.02em;
  }

  .hero-stat span {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--grey);
  }

  /* BG decoration */
  .hero-bg-text {
    position: absolute;
    right: -2rem;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-family: var(--font-display);
    font-size: clamp(8rem, 20vw, 20rem);
    color: rgba(255,45,45,0.04);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    letter-spacing: 0.05em;
  }

  /* SECTIONS */
  section { padding: 6rem clamp(1.5rem, 6vw, 6rem); }

  .section-tag {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 1.2rem;
  }

  .section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    text-transform: uppercase;
    line-height: 0.95;
    letter-spacing: 0.01em;
    margin-bottom: 1.5rem;
  }

  .section-desc {
    font-size: 1rem;
    color: rgba(240,237,230,0.55);
    max-width: 560px;
    line-height: 1.7;
    font-weight: 600;
  }

  /* ABOUT SECTION */
  .about-section {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
  }

  .collab-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--bg3);
    border: 1px solid var(--border);
    padding: 0.8rem 1.2rem;
    margin-top: 2rem;
  }

  .collab-badge-icon {
    width: 32px; height: 32px;
    background: var(--red);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
  }

  .collab-badge-text {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    line-height: 1.4;
    letter-spacing: 0.05em;
  }

  .collab-badge-text strong {
    display: block;
    color: var(--white);
    font-size: 0.8rem;
  }

  .collab-badge-text span { color: var(--grey); }

  .about-quote {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    text-transform: uppercase;
    line-height: 1.1;
    color: rgba(240,237,230,0.15);
    border-left: 3px solid var(--red);
    padding-left: 1.5rem;
  }

  /* HOW IT WORKS */
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    margin-top: 3rem;
    background: var(--border);
    border: 1px solid var(--border);
  }

  .step {
    background: var(--bg);
    padding: 2.5rem 2rem;
    position: relative;
    transition: background 0.3s;
  }

  .step:hover { background: var(--bg3); }

  .step-num {
    font-family: var(--font-display);
    font-size: 4rem;
    color: rgba(255,45,45,0.15);
    line-height: 1;
    margin-bottom: 1.5rem;
  }

  .step-title {
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.6rem;
    color: var(--white);
  }

  .step-desc {
    font-size: 0.85rem;
    color: rgba(240,237,230,0.5);
    line-height: 1.6;
  }

  /* DIFFERENTIATORS */
  .diff-section { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

  .diff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
  }

  .diff-card {
    border: 1px solid var(--border);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s;
  }

  .diff-card:hover { border-color: rgba(255,45,45,0.4); }

  .diff-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
  }

  .diff-card:hover::before { transform: scaleX(1); }

  .diff-icon {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    display: block;
  }

  .diff-title {
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.6rem;
  }

  .diff-desc {
    font-size: 0.85rem;
    color: rgba(240,237,230,0.5);
    line-height: 1.7;
  }

  /* WHY JOIN */
  .why-list {
    list-style: none;
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .why-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
    transition: padding-left 0.3s;
  }

  .why-item:hover { padding-left: 0.5rem; }

  .why-num {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--red);
    letter-spacing: 0.1em;
    flex-shrink: 0;
    width: 32px;
  }

  .why-text {
    font-weight: 700;
    font-size: 1.05rem;
    flex: 1;
  }

  .why-sub {
    font-size: 0.82rem;
    color: rgba(240,237,230,0.4);
    font-weight: 400;
  }

  /* WHO SHOULD APPLY */
  .who-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .who-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s;
  }

  .who-card:hover {
    border-color: var(--red);
    transform: translateY(-4px);
  }

  .who-emoji { font-size: 2.5rem; display: block; margin-bottom: 1rem; }

  .who-title {
    font-weight: 800;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
  }

  .who-desc {
    font-size: 0.82rem;
    color: rgba(240,237,230,0.45);
    line-height: 1.6;
  }

  /* CTA SECTION */
  .cta-section {
    background: var(--red);
    text-align: center;
    padding: 6rem clamp(1.5rem, 6vw, 6rem);
    position: relative;
    overflow: hidden;
  }

  .cta-section::before {
    content: 'NOW';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    font-family: var(--font-display);
    font-size: 25vw;
    color: rgba(0,0,0,0.1);
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
  }

  .cta-section .section-tag { color: rgba(255,255,255,0.6); }

  .cta-section .section-title { color: #fff; }

  .cta-section .section-desc { color: rgba(255,255,255,0.7); margin: 0 auto 2.5rem; }

  .cta-section .btn-white {
    background: #fff;
    color: var(--red);
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    padding: 1rem 2.5rem;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    display: inline-block;
    text-decoration: none;
    transition: all 0.2s;
  }

  .cta-section .btn-white:hover { transform: scale(1.03); }

  .scarcity-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: rgba(0,0,0,0.2);
    color: #fff;
    padding: 0.4rem 1rem;
    margin-top: 1.2rem;
  }

  /* ============ SELECTION CARDS ============ */
.choice-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.choice-card {
  background: var(--bg3);
  border: 1px solid var(--grey2);
  padding: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.choice-card:hover {
  border-color: var(--red);
  transform: translateX(10px); 
}

.choice-card h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.choice-card p {
  font-size: 0.85rem;
  color: rgba(240,237,230,0.5);
  margin-bottom: 1rem;
  max-width: 300px;
}

.choice-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

  /* ============ APPLY PAGE ============ */
  .apply-page {
    padding-top: 68px;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .apply-left {
    background: var(--bg2);
    border-right: 1px solid var(--border);
    padding: clamp(3rem, 8vw, 6rem) clamp(2rem, 5vw, 4rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .apply-right {
    padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .apply-left h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5.5rem);
    text-transform: uppercase;
    line-height: 0.95;
    margin-bottom: 1.5rem;
  }

  .apply-left .accent { color: var(--red); }

  .apply-left p {
    font-size: 0.95rem;
    color: rgba(240,237,230,0.5);
    line-height: 1.7;
    font-weight: 600;
    margin-bottom: 2rem;
    max-width: 380px;
  }

  .apply-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }

  .apply-checklist li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(240,237,230,0.7);
  }

  .apply-checklist li::before {
    content: '✓';
    width: 22px; height: 22px;
    background: rgba(255,45,45,0.15);
    border: 1px solid rgba(255,45,45,0.3);
    color: var(--red);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
  }

  .form-footer-note {
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: rgba(240,237,230,0.4);
    text-align: center;
    font-family: var(--font-mono);
  }
  
  .accent-link {
    color: var(--red);
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 4px;
  }
  
  .accent-link:hover {
    color: var(--white);
  }
  
  /* FORM */
  .form-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
  }

  .form-sub {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 2rem;
  }

  .form-group {
    margin-bottom: 1.2rem;
  }

  .form-group label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(240,237,230,0.4);
    margin-bottom: 0.4rem;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100%;
    background: var(--bg3);
    border: 1px solid var(--grey2);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    padding: 0.8rem 1rem;
    outline: none;
    transition: border-color 0.2s;
    appearance: none;
  }

  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    border-color: var(--red);
  }

  .form-group select option { background: var(--bg3); }

  .form-group textarea { resize: vertical; min-height: 90px; }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .submit-btn {
    width: 100%;
    background: var(--red);
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    padding: 1.1rem;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
  }

  .submit-btn:hover { background: var(--red-dark); }

  /* ============ REWARDS SECTION ============ */
  .rewards-section {
    background: var(--bg);
    border-top: 1px solid var(--border);
    position: relative;
    overflow: hidden;
  }

  .rewards-section::before {
    content: '80%';
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-display);
    font-size: clamp(10rem, 22vw, 22rem);
    color: rgba(255,45,45,0.04);
    pointer-events: none;
    user-select: none;
    line-height: 1;
  }

  .rewards-intro {
    max-width: 620px;
    margin-bottom: 3.5rem;
  }

  .rewards-intro p {
    font-size: 1rem;
    color: rgba(240,237,230,0.55);
    line-height: 1.75;
    font-weight: 600;
    margin-top: 1rem;
  }

  /* THE 80% RULE VISUAL */
  .rule-block {
    display: flex;
    gap: 0;
    align-items: stretch;
    margin-bottom: 4rem;
    border: 1px solid var(--border);
    overflow: hidden;
  }

  .rule-left {
    background: var(--red);
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 260px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
  }

  .rule-left::after {
    content: '';
    position: absolute;
    right: -30px; top: 50%;
    transform: translateY(-50%);
    width: 60px; height: 60px;
    background: var(--bg3);
    border-radius: 50%;
  }

  .rule-percent {
    font-family: var(--font-display);
    font-size: 5rem;
    line-height: 1;
    color: #fff;
    letter-spacing: -0.02em;
  }

  .rule-label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-top: 0.5rem;
    line-height: 1.5;
  }

  .rule-right {
    background: var(--bg3);
    padding: 3rem 3rem 3rem 4rem;
    flex: 1;
  }

  .rule-right h3 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3.5vw, 2.8rem);
    text-transform: uppercase;
    line-height: 1.05;
    margin-bottom: 1rem;
  }

  .rule-right p {
    font-size: 0.92rem;
    color: rgba(240,237,230,0.55);
    line-height: 1.75;
    font-weight: 600;
    max-width: 520px;
  }

  .rule-right .rule-highlight {
    display: inline-block;
    color: var(--red);
    font-weight: 800;
  }

  /* HOW VOTING WORKS */
  .vote-flow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-bottom: 4rem;
  }

  .vote-step {
    background: var(--bg2);
    padding: 2rem 1.8rem;
    transition: background 0.3s;
  }

  .vote-step:hover { background: var(--bg3); }

  .vote-arrow {
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--grey2);
    padding: 1rem;
  }

  .vote-step-icon {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 1rem;
  }

  .vote-step-num {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 0.4rem;
  }

  .vote-step-title {
    font-weight: 800;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
    color: var(--white);
  }

  .vote-step-desc {
    font-size: 0.82rem;
    color: rgba(240,237,230,0.45);
    line-height: 1.65;
  }

  /* REWARDS GRID */
  .rewards-title-row {
    display: flex;
    align-items: baseline;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
  }

  .rewards-title-row h3 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    text-transform: uppercase;
    line-height: 1;
  }

  .rewards-title-row .rewards-tag {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: rgba(255,45,45,0.1);
    border: 1px solid rgba(255,45,45,0.3);
    color: var(--red);
    padding: 0.35rem 0.9rem;
  }

  .rewards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin-bottom: 3rem;
  }

  .reward-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    padding: 2rem 1.8rem;
    position: relative;
    transition: all 0.3s;
    overflow: hidden;
  }

  .reward-card:hover {
    border-color: rgba(255,45,45,0.5);
    transform: translateY(-3px);
  }

  .reward-card.featured {
    border-color: var(--red);
    background: rgba(255,45,45,0.06);
  }

  .reward-card.featured::before {
    content: 'MAIN REWARD';
    position: absolute;
    top: 0; right: 0;
    background: var(--red);
    color: #fff;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.3rem 0.7rem;
  }

  .reward-icon { font-size: 2.2rem; display: block; margin-bottom: 1.2rem; }

  .reward-title {
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
    color: var(--white);
  }

  .reward-desc {
    font-size: 0.83rem;
    color: rgba(240,237,230,0.5);
    line-height: 1.65;
  }

  /* VALIDATION PROOF BANNER */
  .proof-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: linear-gradient(135deg, var(--bg2) 0%, rgba(255,45,45,0.08) 100%);
    border: 1px solid rgba(255,45,45,0.3);
    padding: 2.5rem 2.8rem;
    flex-wrap: wrap;
  }

  
  .proof-banner-left .proof-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.8rem;
  }

  .proof-banner-left h4 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 0.5rem;
  }

  .proof-banner-left p {
    font-size: 0.88rem;
    color: rgba(240,237,230,0.5);
    max-width: 440px;
    line-height: 1.65;
    font-weight: 600;
  }

  .proof-stamp {
    border: 2px solid var(--red);
    padding: 1.5rem 2.5rem;
    text-align: center;
    transform: rotate(-2deg);
    flex-shrink: 0;
    position: relative;
  }

  .proof-stamp::before {
    content: '';
    position: absolute;
    inset: 4px;
    border: 1px solid rgba(255,45,45,0.3);
  }

  .proof-stamp p {
    font-family: var(--font-display);
    font-size: 1.1rem;
    text-transform: uppercase;
    color: var(--red);
    letter-spacing: 0.1em;
    line-height: 1.3;
  }

  .proof-stamp span {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: rgba(255,45,45,0.6);
    margin-top: 0.3rem;
    text-transform: uppercase;
  }

  @media (max-width: 900px) {
    .rewards-grid { grid-template-columns: 1fr 1fr; }
    .vote-flow { grid-template-columns: 1fr; }
    .rule-block { flex-direction: column; }
    .rule-left::after { display: none; }
  }

  @media (max-width: 640px) {
    .rewards-grid { grid-template-columns: 1fr; }
    .proof-banner { flex-direction: column; }
    .proof-stamp { transform: rotate(0); }
  }

  /* SUCCESS STATE */
  .success-msg {
    display: none;
    text-align: center;
    padding: 3rem 2rem;
  }

  .success-msg.show { display: block; }

  .success-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1.2rem;
  }

  .success-msg h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
  }

  .success-msg p {
    color: rgba(240,237,230,0.5);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 320px;
    margin: 0 auto;
    font-weight: 600;
  }

  /* ============ ABOUT PAGE ============ */
  .about-page { padding-top: 68px; }

  .about-hero {
    padding: 6rem clamp(1.5rem, 6vw, 6rem) 4rem;
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
  }

  .about-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 9vw, 8rem);
    text-transform: uppercase;
    line-height: 0.92;
    max-width: 700px;
  }

  .about-hero h1 .red { color: var(--red); }

  .about-manifest {
    margin-top: 3rem;
    max-width: 600px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(240,237,230,0.6);
    font-weight: 600;
  }

  .about-manifest p { margin-bottom: 1.2rem; }

  .about-manifest strong { color: var(--white); }

  .manifest-quote {
    margin: 4rem 0;
    padding: 2.5rem;
    background: var(--bg2);
    border-left: 4px solid var(--red);
  }

  .manifest-quote p {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    text-transform: uppercase;
    line-height: 1.2;
    color: var(--white);
  }

  /* COLLAB SECTION */
  .collab-section {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .collab-big {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
  }

  .collab-info h3 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    line-height: 1.1;
  }

  .collab-info p {
    font-size: 0.9rem;
    color: rgba(240,237,230,0.55);
    line-height: 1.7;
    font-weight: 600;
    margin-bottom: 1rem;
  }

  .collab-logo-box {
    border: 1px solid var(--border);
    padding: 3rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .collab-logo-box .bit-logo {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--red);
    letter-spacing: 0.1em;
  }

  .collab-logo-box p {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(240,237,230,0.4);
    line-height: 1.6;
    text-align: center;
  }

  .x-divider {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--grey2);
  }

  .up-logo-box {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--white);
    letter-spacing: 0.05em;
  }

  .up-logo-box span { color: var(--red); }

  /* VALUES */
  .values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-top: 3rem;
  }

  .value-item {
    background: var(--bg);
    padding: 2.5rem;
    transition: background 0.3s;
  }

  .value-item:hover { background: var(--bg3); }

  .value-num {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--red);
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
  }

  .value-title {
    font-weight: 800;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.6rem;
  }

  .value-desc {
    font-size: 0.85rem;
    color: rgba(240,237,230,0.45);
    line-height: 1.7;
  }

  /* ============ CONTACT PAGE ============ */
  .contact-page { padding-top: 68px; }

  .contact-hero {
    padding: 5rem clamp(1.5rem, 6vw, 6rem) 4rem;
    border-bottom: 1px solid var(--border);
  }

  .contact-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 7rem);
    text-transform: uppercase;
    line-height: 0.92;
    margin-bottom: 1.5rem;
  }

  .contact-hero h1 span { color: var(--red); }

  .contact-hero p {
    font-size: 1rem;
    color: rgba(240,237,230,0.5);
    max-width: 440px;
    line-height: 1.7;
    font-weight: 600;
  }

  .contact-grid {
    padding: 5rem clamp(1.5rem, 6vw, 6rem);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
  }

  .contact-card {
    background: var(--bg);
    padding: 3rem 2.5rem;
    transition: background 0.3s;
  }

  .contact-card:hover { background: var(--bg3); }

  .contact-card-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 1.2rem;
  }

  .contact-card-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 0.5rem;
  }

  .contact-card-value {
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
    text-decoration: none;
    display: block;
    margin-bottom: 0.3rem;
    transition: color 0.2s;
  }

  .contact-card-value:hover { color: var(--red); }

  .contact-card-sub {
    font-size: 0.82rem;
    color: rgba(240,237,230,0.4);
  }

  .socials-section {
    padding: 4rem clamp(1.5rem, 6vw, 6rem);
    border-top: 1px solid var(--border);
    background: var(--bg2);
  }

  .social-links {
    display: flex;
    gap: 1.2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
  }

  .social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: var(--bg3);
    border: 1px solid var(--border);
    padding: 0.8rem 1.5rem;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(240,237,230,0.6);
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
  }

  .social-link:hover {
    border-color: var(--red);
    color: var(--white);
  }

  /* FOOTER */
  footer {
    border-top: 1px solid var(--border);
    padding: 2.5rem clamp(1.5rem, 6vw, 6rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .footer-logo {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 0.02em;
  }

  .footer-logo span { color: var(--red); }

  footer p {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--grey);
    text-transform: uppercase;
  }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* SCROLL REVEAL */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* MOBILE NAV */
  .mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(8,8,8,0.98);
    z-index: 999;
    padding: 100px 2rem 2rem;
    flex-direction: column;
    gap: 1.5rem;
  }

  .mobile-menu.open { display: flex; }

  .mobile-menu a {
    font-family: var(--font-display);
    font-size: 2.5rem;
    text-transform: uppercase;
    color: rgba(240,237,230,0.6);
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s;
  }

  .mobile-menu a:hover { color: var(--white); }

  .mobile-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
  }

  footer, .cta-section {
    position: relative;
    z-index: 10; /* Ensures buttons stay above background decoys */
}

  /* RESPONSIVE */
  @media (max-width: 900px) {
    .about-grid,
    .collab-big,
    .apply-page { grid-template-columns: 1fr; }

    .steps-grid { grid-template-columns: 1fr 1fr; }
    .diff-grid { grid-template-columns: 1fr; }
    .who-grid { grid-template-columns: 1fr 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; padding: 3rem clamp(1.5rem, 6vw, 6rem); }
    .apply-left { border-right: none; border-bottom: 1px solid var(--border); }
    .form-row { grid-template-columns: 1fr; }
    .collab-logo-box { display: none; }
  }

  @media (max-width: 640px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .steps-grid { grid-template-columns: 1fr; }
    .who-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: clamp(3.5rem, 16vw, 6rem); }
    .hero-bg-text { display: none; }
  }

  .nav-admin {
    border: 1px solid #444;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.85rem;
    color: #888 !important; /* Muted color */
    transition: all 0.3s ease;
}

.nav-admin:hover {
    border-color: #007bff; /* Primary color on hover */
    color: #fff !important;
    background: rgba(0, 123, 255, 0.1);
}

@media (max-width: 900px) {
  /* Handle Admin Box on Tablets */
  .admin-box {
      max-width: 90%;
      margin: 50px auto;
      padding: 2rem;
  }
}

@media (max-width: 640px) {
  .admin-box input, 
  .admin-box .submit-btn {
      width: 100%;
      font-size: 16px; 
  }

  .data-table-wrapper {
      overflow-x: auto; 
      -webkit-overflow-scrolling: touch;
  }

  .admin-box h2 {
      font-size: 1.8rem;
  }
}


.nav-links .nav-admin {
  font-size: 0.9rem;
  color: var(--text-dim, #888); 
  text-decoration: none;
  transition: color 0.3s ease;
  margin-left: 10px;
}

.nav-links .nav-admin:hover {
  color: var(--accent, #fff);
}


#mobileMenu .nav-admin {
  display: block;
  padding: 1.5rem;
  color: var(--text-dim, #888);
  border-top: 1px solid var(--border, #333); 
  text-align: center;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .apply-page {
      display: flex !important; /* Switch from grid to flex for better stacking control */
      flex-direction: column !important;
      height: auto !important; 
      min-height: 100vh;
      padding: 80px 1.5rem 40px !important;
      overflow-y: auto !important;
  }

  .apply-left {
      width: 100% !important;
      padding-bottom: 2rem !important;
      border-bottom: 1px solid var(--border) !important;
      margin-bottom: 2rem !important;
      text-align: center;
  }

  .apply-left h1 {
      font-size: clamp(2.5rem, 10vw, 3.5rem) !important;
      line-height: 1.1;
  }

  .apply-right {
      width: 100% !important;
  }

  .choice-container {
      display: flex !important;
      flex-direction: column !important;
      gap: 20px !important;
      padding-bottom: 40px;
  }

  .choice-card {
      width: 100% !important;
      min-height: 160px !important; /* Ensure enough height for description */
  }
}

.btn-white, .btn-primary, .choice-card {
  position: relative;
  z-index: 101; 
  cursor: pointer;
}

#page-selection {
  height: auto;
  overflow-y: visible;
}

.cta-section {
  position: relative; /* Required for z-index to function */
  z-index: 5; 
}

.cta-section .btn-white {
  position: relative;
  z-index: 10;
  pointer-events: auto !important; /* Forces the browser to prioritize this click */
  cursor: pointer !important;
}