/* genesis.css */
/* — Main Teaser Wrapper — */
.genesis-main {
    padding: 30px 2rem 4rem;
  }
  .genesis-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
  }
  .genesis-teaser {
    position: relative;
    overflow: hidden;
    padding-bottom: 400px;
  }
  
  /* — Drama Block — */
  .access-drama {
    text-align: center;
    max-width: 800px;
    margin: 4rem auto;
  }
  .drama-headline {
    font-size: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    background: linear-gradient(45deg, #fff, #4296d2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 30px rgba(66, 150, 210, 0.4);
    animation: textGlow 2s ease-in-out infinite alternate;
    margin-bottom: 1.5rem;
  }
  @keyframes textGlow {
    from {
      text-shadow: 0 0 20px rgba(66, 150, 210, 0.4);
    }
    to {
      text-shadow: 0 0 40px rgba(66, 150, 210, 0.8);
    }
  }
  .drama-text {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
  }
  .drama-list {
    display: grid;
    gap: 1.5rem;
    max-width: 700px;
    width: 100%;
    padding: 0;
    margin-bottom: 5rem;
    list-style: none;
  }
  .drama-list li {
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    border-left: 4px solid #4296d2;
    border-right: 4px solid #4296d2;
    border-radius: 4px;
    color: #fff;
    transition: transform 0.3s, border-color 0.3s, background 0.3s,
      box-shadow 0.3s;
  }
  .drama-list li:hover {
    transform: translateX(8px);
    border-color: #ff4c60;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.6);
  }
  
  /* — Fade Overlay — */
  .fade-to-paywall {
    display: none !important;
  }
  
  /* — Unlock Panel — */
  .unlock-panel {
    position: absolute;
    left: 50%;
    bottom: 100px;
    transform: translateX(-50%) translateY(20px);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    max-width: 700px;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    z-index: 2;
    opacity: 1;
    transition: opacity 0.6s, transform 0.6s;
  }
  .unlock-panel.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  .unlock-panel input {
    width: 100%;
    max-width: 650px;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: 2px solid #4296d2;
    border-radius: 4px;
    font-size: 16px;
    transition: background 0.3s, border-color 0.3s;
    box-sizing: border-box;
    height: 45px;
  }
  .unlock-panel input:focus {
    background: rgba(0, 0, 0, 0.8);
    border-color: #2f6d99;
    outline: none;
  }
  .unlock-panel input:hover {
    background: rgba(0, 0, 0, 0.7);
  }
  .unlock-panel button {
    width: 100%;
    padding: 0.75rem 0;
    background: linear-gradient(45deg, #4296d2, #2f6d99);
    border: none;
    border-radius: 4px;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(66, 150, 210, 0.4);
    transition: background 0.3s, box-shadow 0.3s;
  }
  .unlock-panel button:hover {
    background: linear-gradient(45deg, #2f6d99, #4296d2);
    box-shadow: 0 6px 24px rgba(66, 150, 210, 0.6);
  }
  .status {
    text-align: center;
    font-size: 0.95rem;
    margin-top: 0.5rem;
    font-weight: 500;
    transition: color 0.3s;
  }
  .status.error {
    color: #ff4c60;
  }
  .status.success {
    color: #4CAF50;
  }
  
  /* — Divider — */
  .section-divider {
    width: 80%;
    height: 2px;
    margin: 3rem auto;
    background: linear-gradient(to right, transparent, #4296d2, transparent);
    opacity: 0.8;
  }
  
  /* Protected Content */
  .protected-content {
    display: none;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .protected-content.hidden {
    display: none;
  }

  .protected-content:not(.hidden) {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }

  /* Secret Section */
  .secret-section {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    backdrop-filter: blur(10px);
  }
  
  /* — Secret Section (locked) — */
  .secret.hidden {
    display: none;
  }
  .secret {
    display: none;
    backdrop-filter: blur(4px);
  }
  .secret.visible {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }
  .secret h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #4296d2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 20px rgba(66, 150, 210, 0.6);
  }
  .secret p {
    margin-bottom: 1.25rem;
    line-height: 1.6;
  }
  
  /* Welcome section styling */
  .secret > h2:first-of-type {
    font-size: 2.5rem;
    text-align: center;
    margin: 3rem 0 1.5rem;
    background: linear-gradient(45deg, #fff, #4296d2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 15px rgba(66, 150, 210, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
  }

  .secret > p:first-of-type {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 0 1rem;
  }
  
  /* — Vault Grid — */
  .vault-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
  }
  .vault-item {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(66, 150, 210, 0.2);
    transition: transform 0.3s, border-color 0.3s;
  }
  .vault-item:hover {
    transform: translateY(-10px);
    border-color: rgba(66, 150, 210, 0.6);
  }
  .vault-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  .vault-item h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.25rem;
    background: linear-gradient(45deg, #fff, #4296d2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .vault-item p {
    padding: 0 1.5rem 1.5rem;
    color: rgba(255, 255, 255, 0.7);
  }
  
  /* — Pillars Intro — */
  .pillars-intro {
    max-width: 800px; margin: 0 auto 2.5rem;
    text-align: center; /* ← centered */
  }
  .pillars-intro-title {
    font-size: 2rem; margin-bottom: 0.75rem;
    background: linear-gradient(45deg, #fff, #4296d2);
    -webkit-background-clip: text; background-clip: text;
    color: transparent; text-shadow: 0 0 15px rgba(66, 150, 210, 0.6);
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.6s, transform 0.6s;
  }
  .pillars-intro-text {
    font-size: 1.1rem; line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.6s, transform 0.6s;
  }
  
  /* — Two‑Column Pillars — */
  .pillars {
    padding: 2rem 0;
  }
  .pillar-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    align-items: stretch;
  }
  .pillar-box {
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(4px);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(66, 150, 210, 0.3);
    min-width: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
  }
  .pillar-box:hover {
    transform: translateY(-10px);
  }
  .pillar-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    transition: transform 0.3s, background 0.3s;
  }
  .pillar-item:hover {
    transform: translateX(10px);
    background: rgba(66, 150, 210, 0.1);
  }
  .pillar-icon {
    font-size: 1.5rem;
    color: #4296d2;
    margin-right: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(66, 150, 210, 0.1);
    border-radius: 50%;
    transition: transform 0.3s, background 0.3s;
  }
  .pillar-item:hover .pillar-icon {
    transform: scale(1.1);
    background: rgba(66, 150, 210, 0.2);
  }
  .pillar-item h3 {
    margin: 0;
    font-size: 1rem;
    background: linear-gradient(45deg, #fff, #4296d2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  /* — Roadmap Intro — */
  .roadmap-intro {
    max-width: 800px; margin: 0 auto 2.5rem;
    text-align: center; /* ← centered */
  }
  .roadmap-intro h2 {
    font-size: 2rem; margin-bottom: 0.75rem;
    background: linear-gradient(45deg, #fff, #4296d2);
    -webkit-background-clip: text; background-clip: text;
    color: transparent; text-shadow: 0 0 15px rgba(66, 150, 210, 0.6);
  }
  .roadmap-intro p {
    font-size: 1.1rem; color: rgba(255,255,255,0.85);
    margin: 0 auto; max-width: 600px;
  }
  
  /* — Roadmap Styling — */
  .roadmap {
    margin: 2.5rem auto;
    max-width: 800px;
    width: 90%;
    padding: 2rem 1rem;
    background: rgba(30, 40, 60, 0.35);
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    backdrop-filter: blur(12px);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .roadmap svg {
    display: block;
    width: 100%;
    height: auto;
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(66,150,210,0.08);
    backdrop-filter: blur(6px);
    overflow: visible;
    position: relative;
    z-index: 1;
  }
  .roadmap svg line {
    stroke: url(#roadmap-gradient);
    stroke-width: 10px;
    filter: drop-shadow(0 0 16px #4296d2) blur(0.5px);
    opacity: 0.95;
    transition: filter 0.3s, stroke-width 0.3s;
  }
  .roadmap .milestone circle {
    fill: url(#milestone-gradient), #4296d2;
    stroke: none;
    filter: drop-shadow(0 2px 8px rgba(66,150,210,0.18));
    transition: transform 0.12s, filter 0.12s, fill 0.18s;
    cursor: pointer;
    position: relative;
    z-index: 2;
  }
  .roadmap .milestone .milestone-glow,
  .roadmap .milestone .milestone-click-effect {
    display: none;
  }
  .roadmap .milestone circle:nth-child(3),
  .roadmap .milestone circle:nth-child(4) {
    fill: #4296d2;
    stroke: none;
    filter: none;
  }
  .roadmap .milestone:hover circle {
    transform: scale(1.12);
    filter: drop-shadow(0 4px 16px #4296d2);
    fill: url(#milestone-gradient-hover), #5bb6ff;
  }
  .roadmap .milestone:active circle {
    transform: scale(0.93);
    filter: drop-shadow(0 1px 4px #4296d2);
  }
  .roadmap .mile-num {
    font-size: 1.5rem;
    fill: #fff;
    text-anchor: middle;
    dominant-baseline: middle;
    font-weight: bold;
    filter: drop-shadow(0 1px 4px rgba(0,0,0,0.18));
    pointer-events: none;
  }
  .roadmap .mile-label {
    font-size: 1.1rem;
    fill: #4296d2;
    text-anchor: middle;
    dominant-baseline: middle;
    font-weight: 600;
    filter: drop-shadow(0 1px 4px rgba(0,0,0,0.10));
    pointer-events: none;
  }
  .roadmap .milestone:hover text,
  .roadmap .milestone:hover .mile-num,
  .roadmap .milestone:hover .mile-label {
    fill: #fff;
  }
  
  /* — NFT Teaser Header — */
  .nft-teaser {
    text-align: center;
    margin: 3rem 0 1rem;
  }
  .nft-title {
    font-size: 2.5rem;
    background: linear-gradient(45deg, #fff, #4296d2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 20px rgba(66, 150, 210, 0.6);
  }
  
  /* — Parallax Image Container — */
  .nft-hero {
    perspective: 800px;
    margin: 0 auto;
    max-width: 600px;
    will-change: transform;
  }
  .nft-hero .nft-image {
    width: 100%;
    height: auto;
    transform-style: preserve-3d;
    transition: transform 0.2s ease-out;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.7);
  }
  
  /* — NFT Teaser Text — */
  .nft-teaser-text {
    max-width: 800px;
    margin: 2.5rem auto 2rem;
    text-align: center;
  }
  .nft-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
  }

  /* — Countdown Section — */
.countdown-section {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
  }
  .countdown-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #4296d2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 15px rgba(66, 150, 210, 0.6);
  }
  .countdown-timer {
    font-family: monospace;
    font-size: 1.75rem;
    color: #cfddeb;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 8px rgba(66, 150, 210, 0.8));
  }
  .cta-button {
    padding: 0.75rem 2rem;
    background: linear-gradient(45deg, #4296d2, #2f6d99);
    border: none;
    border-radius: 4px;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(66, 150, 210, 0.4);
    transition: background 0.3s, transform 0.2s;
  }
  .cta-button:hover {
    background: linear-gradient(45deg, #2f6d99, #4296d2);
    transform: translateY(-2px);
  }
  
  
  /* — Seal Button — */
  .logout-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #ff4c60;
    border: 2px solid #ff4c60;
    border-radius: 4px;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    transition: background 0.3s, transform 0.2s;
    margin-bottom: 2rem;
  }
  .logout-button:hover {
    background: transparent;
    color: #ff4c60;
    transform: translateY(-2px);
  }
  
  /* — Footer Divider — */
  footer .section-divider {
    margin: 3rem auto 1rem;
  }
  
  /* — Responsive — */
  @media (max-width: 600px) {
    .drama-headline {
      font-size: 1.5rem;
    }
    .drama-list {
      padding-left: 1rem;
    }
    .drama-list li {
      font-size: 0.9rem;
    }
    .unlock-panel {
      padding: 1.5rem;
      margin: 0 1rem;
    }
    .pillars-grid {
      grid-template-columns: 1fr;
    }
    .nft-hero {
      flex-direction: column;
    }
    
    /* Additional secret section fixes for very small screens */
    .secret {
      padding: 0.75rem;
      margin: 0.75rem 0;
    }
    
    .secret h2 {
      font-size: 1.6rem;
    }
    
    .secret > h2:first-of-type {
      font-size: 1.8rem;
      margin: 1.5rem 0 0.75rem;
    }
    
    .secret > p:first-of-type {
      font-size: 0.95rem;
      padding: 0 0.25rem;
    }
    
    .secret p {
      font-size: 0.95rem;
    }
    
    .section-title {
      font-size: 1.8rem;
      padding: 0 0.25rem;
    }
    
    .section-text {
      font-size: 0.95rem;
      padding: 0 0.25rem;
    }
    
    .pillar-box {
      padding: 1rem;
    }
    
    .matrix-card {
      padding: 1rem;
    }
    
    .achievement-card {
      padding: 1rem;
    }
    
    .evolution-card {
      padding: 1rem;
    }
    
    .final-section {
      padding: 1.5rem 0.75rem;
    }
    
    .final-section h2 {
      font-size: 1.8rem;
    }
  }
  
  @media (max-width: 768px) {
    .timeline-container::before {
      left: 20px;
    }

    .timeline-event {
      padding: 0 0 0 50px !important;
      text-align: left !important;
    }

    .event-dot {
      left: 11px !important;
      right: auto !important;
    }

    .event-content {
      margin: 0 !important;
    }

    .vault-grid {
      grid-template-columns: 1fr;
    }

    .pillar-boxes {
      grid-template-columns: 1fr;
    }
  }
  
  /* Whitelist Form */
  .whitelist-form {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(4px);
    border: 2px solid rgba(66, 150, 210, 0.8);
    border-radius: 8px;
    box-shadow: inset 0 0 16px rgba(66, 150, 210, 0.2),
                0 4px 16px rgba(0, 0, 0, 0.7);
  }

  .whitelist-form h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #fff, #4296d2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 8px rgba(66, 150, 210, 0.6);
  }

  .whitelist-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .whitelist-form input {
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(66, 150, 210, 0.4);
    border-radius: 4px;
    color: #fff;
    font-size: 1rem;
    transition: border-color 0.3s;
  }

  .whitelist-form input:focus {
    outline: none;
    border-color: #4296d2;
  }

  .whitelist-form input:hover {
    background: rgba(0, 0, 0, 0.7);
  }

  .whitelist-status {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 4px;
    text-align: center;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
    display: block;
  }

  .whitelist-status.error {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
    color: #f44336;
    font-weight: 500;
  }

  .whitelist-status.success {
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid rgba(76, 175, 80, 0.4);
    color: #4CAF50;
    font-weight: 500;
  }
  
  /* Solana Payment Button */
  .solana-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 0.75rem 0;
    background: linear-gradient(45deg, #9945FF, #14F195);
    border: none;
    border-radius: 4px;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(153, 69, 255, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
    height: 45px;
  }

  .solana-button:hover {
    background: linear-gradient(45deg, #14F195, #9945FF);
    box-shadow: 0 6px 24px rgba(153, 69, 255, 0.6);
    transform: translateY(-2px);
  }

  .solana-logo {
    height: 24px;
    width: auto;
  }

  /* Divider */
  .or-divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    margin: 1rem 0;
  }

  .or-divider::before,
  .or-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .or-divider span {
    padding: 0 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
  }
  
  /* — Tech Matrix Section — */
  .tech-matrix {
    padding: 2rem 0;
  }

  .matrix-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #fff, #4296d2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 15px rgba(66, 150, 210, 0.6);
  }

  .matrix-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
    padding: 0 2rem;
  }

  .matrix-card {
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(14px) saturate(120%);
    border-radius: 16px;
    padding: 2rem;
    border: 1.5px solid rgba(66, 150, 210, 0.18);
    transition: transform 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
    max-width: 340px;
    min-width: 260px;
    margin: 0.5rem;
    box-shadow: 0 4px 24px rgba(66,150,210,0.10), 0 2px 8px rgba(0,0,0,0.10);
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .matrix-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(66, 150, 210, 0.08), transparent);
    pointer-events: none;
    z-index: 0;
  }

  .matrix-card:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: #4296d2;
    box-shadow: 0 8px 32px rgba(66,150,210,0.18), 0 2px 12px rgba(0,0,0,0.18);
  }

  .card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #4296d2;
    text-shadow: 0 0 20px rgba(66, 150, 210, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #4296d2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .tech-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
  }

  .stat {
    text-align: center;
  }

  .stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #4296d2;
    margin-bottom: 0.5rem;
  }

  .stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
  }

  /* — Timeline Section — */
  .timeline-section {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
  }

  .timeline-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #fff, #4296d2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 15px rgba(66, 150, 210, 0.6);
  }

  .timeline-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
  }

  .timeline-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
  }

  .timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, #4296d2, transparent);
    transform: translateX(-50%);
  }

  .timeline-event {
    position: relative;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s, transform 0.6s;
  }

  .timeline-event:last-child {
    margin-bottom: 0;
  }

  .timeline-event:nth-child(odd) {
    padding-right: 50%;
    text-align: right;
  }

  .timeline-event:nth-child(even) {
    padding-left: 50%;
    text-align: left;
  }

  .event-dot {
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: #4296d2;
    border-radius: 50%;
    border: 4px solid rgba(10, 10, 10, 0.6);
    box-shadow: 0 0 20px rgba(66, 150, 210, 0.6);
    transform: translateY(-50%);
    z-index: 1;
  }

  .timeline-event:nth-child(odd) .event-dot {
    right: -10px;
  }

  .timeline-event:nth-child(even) .event-dot {
    left: -10px;
  }

  .event-content {
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(66, 150, 210, 0.3);
    margin: 0 2rem;
    position: relative;
    transition: transform 0.3s, border-color 0.3s;
  }

  .timeline-event:nth-child(odd) .event-content {
    margin-right: 3rem;
  }

  .timeline-event:nth-child(even) .event-content {
    margin-left: 3rem;
  }

  .event-content:hover {
    transform: translateY(-5px);
    border-color: #4296d2;
  }

  .event-year {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: bold;
    color: #4296d2;
    margin-bottom: 0.5rem;
    padding: 0.25rem 1rem;
    background: rgba(66, 150, 210, 0.1);
    border-radius: 4px;
  }

  .event-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #4296d2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .event-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }

  .event-details {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .event-details li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
  }

  .event-details li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #4296d2;
    font-size: 1.2rem;
  }

  /* Timeline Responsive */
  @media (max-width: 768px) {
    .timeline-container::before {
      left: 20px;
    }

    .timeline-event {
      padding: 0 0 0 50px !important;
      text-align: left !important;
    }

    .event-dot {
      left: 11px !important;
      right: auto !important;
    }

    .event-content {
      margin: 0 !important;
      padding: 1.5rem;
    }

    .event-year {
      font-size: 1.1rem;
    }

    .event-content h3 {
      font-size: 1.3rem;
    }

    .event-content p {
      font-size: 1rem;
    }

    .event-details li {
      font-size: 0.95rem;
    }
  }
  
  /* Add a new section at the bottom */
  .final-section {
    padding: 4rem 0;
    text-align: center;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    margin: 2rem 0;
    border: 1px solid rgba(66, 150, 210, 0.3);
  }

  .final-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #fff, #4296d2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 15px rgba(66, 150, 210, 0.6);
  }

  .final-section p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
  }

  .final-section .cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
  }

  .final-section .cta-button {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    text-transform: uppercase;
    transition: transform 0.3s, background 0.3s;
  }

  .final-section .cta-primary {
    background: linear-gradient(45deg, #4296d2, #2f6d99);
    color: white;
  }

  .final-section .cta-secondary {
    background: transparent;
    border: 2px solid #4296d2;
    color: #4296d2;
  }

  .final-section .cta-button:hover {
    transform: translateY(-5px);
  }
  
  /* Welcome Section */
  .welcome-section {
    text-align: center;
    padding: 3rem 2rem;
    margin-bottom: 4rem;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(66, 150, 210, 0.3);
  }

  .welcome-content {
    max-width: 1200px;
    margin: 0 auto;
  }

  .section-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3rem;
  }

  /* Technology Matrix Fixes */
  .matrix-card {
    text-align: center;
  }

  .card-content {
    text-align: center;
  }

  .tech-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
  }

  /* Digital Milestones Section */
  .achievements-section {
    padding: 4rem 0;
  }

  .achievements-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(45deg, #fff, #4296d2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 15px rgba(66, 150, 210, 0.6);
  }

  .achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
  }

  .achievement-card {
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(66, 150, 210, 0.3);
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    box-shadow: 0 2px 12px rgba(66,150,210,0.08);
    position: relative;
    overflow: hidden;
  }

  .achievement-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(120deg, rgba(255,255,255,0.08) 0%, rgba(66,150,210,0.04) 100%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }

  .achievement-card:hover {
    transform: scale(1.045) translateY(-6px);
    box-shadow: 0 8px 32px rgba(66,150,210,0.18);
    background: rgba(30, 40, 60, 0.38);
  }

  .achievement-card:hover::after {
    opacity: 1;
  }

  .achievement-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    font-size: 2.5rem;
    color: #4296d2;
  }

  .achievement-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #fff, #4296d2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .achievement-card p {
    color: rgba(255, 255, 255, 0.7);
  }
  
  /* Evolution Timeline */
  .evolution-section {
    padding: 4rem 0;
    text-align: center;
  }

  .evolution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .evolution-card {
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(66, 150, 210, 0.3);
    padding: 2rem;
    transition: transform 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
    text-align: left;
  }

  .evolution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(66, 150, 210, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
  }

  .evolution-card:hover {
    transform: translateY(-10px);
    border-color: #4296d2;
  }

  .evolution-card:hover::before {
    transform: translateX(100%);
  }

  .evolution-year {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: bold;
    color: #4296d2;
    margin-bottom: 1rem;
    padding: 0.25rem 1rem;
    background: rgba(66, 150, 210, 0.1);
    border-radius: 4px;
  }

  .evolution-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #4296d2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .evolution-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }

  .evolution-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .evolution-content li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
  }

  .evolution-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #4296d2;
    font-size: 1.2rem;
  }

  @media (max-width: 1400px) {
    .evolution-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 768px) {
    .evolution-grid {
      grid-template-columns: 1fr;
      padding: 1rem;
    }
    
    .evolution-card {
      padding: 1.5rem;
    }
    
    .evolution-content h3 {
      font-size: 1.3rem;
    }
    
    .evolution-content p {
      font-size: 1rem;
    }
    
    .evolution-content li {
      font-size: 0.95rem;
    }
  }
  
  @media (max-width: 1024px) {
    .vault-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 768px) {
    .vault-grid {
      grid-template-columns: 1fr;
    }
    
    .welcome-section {
      padding: 2rem 1rem;
    }
    
    /* Secret section mobile fixes */
    .secret {
      padding: 1rem;
      margin: 1rem 0;
      border-radius: 8px;
      overflow: hidden;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }
    
    .secret h2 {
      font-size: 1.8rem;
      margin-bottom: 0.75rem;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }
    
    .secret > h2:first-of-type {
      font-size: 2rem;
      margin: 2rem 0 1rem;
      padding: 0 0.5rem;
    }
    
    .secret > p:first-of-type {
      font-size: 1rem;
      padding: 0 0.5rem;
      margin: 0 auto 3rem;
    }
    
    .secret p {
      margin-bottom: 1rem;
      line-height: 1.5;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }
    
    .section-title {
      font-size: 2rem;
      margin-bottom: 1.5rem;
      padding: 0 0.5rem;
    }
    
    .section-text {
      font-size: 1rem;
      padding: 0 0.5rem;
      margin: 0 auto 2rem;
    }
    
    /* Pillar boxes mobile fix */
    .pillar-boxes {
      grid-template-columns: 1fr;
      gap: 1rem;
      padding: 0 0.5rem;
    }
    
    .pillar-box {
      padding: 1.5rem;
    }
    
    /* Matrix cards mobile fix */
    .matrix-card {
      padding: 1.5rem;
      margin: 0.5rem;
      min-width: auto;
    }
    
    /* Achievement cards mobile fix */
    .achievement-card {
      padding: 1.5rem;
    }
    
    /* Evolution cards mobile fix */
    .evolution-card {
      padding: 1.5rem;
    }
    
    /* Final section mobile fix */
    .final-section {
      padding: 2rem 1rem;
      margin: 1rem 0;
    }
    
    .final-section h2 {
      font-size: 2rem;
    }
    
    .final-section .cta-group {
      flex-direction: column;
      gap: 0.75rem;
    }
  }
  
  .section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #4296d2, #2f6d99);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 30px rgba(66, 150, 210, 0.4);
    position: relative;
    z-index: 1;
  }

  .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #4296d2, transparent);
  }

  .section-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
  }
  
  /* Share Lore Section Styles */
  .share-lore-container {
    margin-top: 1.5rem;
    padding: 1.25rem 1rem 1rem 1rem;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(66,150,210,0.08);
  }
  .share-headline {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(66,150,210,0.2);
  }
  .share-subtext {
    color: #b3d6f6;
    font-size: 1.05rem;
    margin-bottom: 1rem;
  }
  .share-x-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    background: linear-gradient(45deg, #1da1f2, #4296d2);
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 0.7em 1.5em;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(29,161,242,0.15);
    transition: background 0.2s, box-shadow 0.2s;
  }
  .share-x-button:hover {
    background: linear-gradient(45deg, #4296d2, #1da1f2);
    box-shadow: 0 4px 16px rgba(29,161,242,0.25);
  }
  
  .share-lore-section {
    margin: 6rem 0 4rem 0;
    padding-top: 3rem;
    padding-bottom: 3rem;
    scroll-margin-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .whitelist-success {
    margin-top: 1.5rem;
    background: #4296d2;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 2px 12px rgba(66,150,210,0.15);
    display: none;
  }
  .whitelist-success.visible {
    display: block;
  }
  .whitelist-form form {
    transition: opacity 0.7s cubic-bezier(.4,0,.2,1);
  }

  /* Remove progress bar styles */
  .whitelist-spots-bar-container,
  #whitelistSpotsBar,
  #whitelistSpotsCount {
    display: none !important;
  }

  /* Milestone Panel Glass Style */
  .milestone-panel {
    margin: 2rem auto 0 auto;
    max-width: 700px;
    background: rgba(30, 40, 60, 0.45);
    border-radius: 18px;
    box-shadow: 0 8px 32px 0 rgba(66,150,210,0.18), 0 2px 12px rgba(0,0,0,0.18);
    backdrop-filter: blur(18px) saturate(120%);
    padding: 2rem 2rem 2rem 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: box-shadow 0.3s, background 0.3s;
    border: 1.5px solid rgba(66,150,210,0.18);
  }
  .milestone-panel-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    width: 100%;
  }
  .milestone-panel img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(66,150,210,0.18);
    background: #fff;
  }
  .milestone-panel-text {
    flex: 1;
  }
  .milestone-panel-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #fff, #4296d2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .milestone-panel-text p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    line-height: 1.5;
  }
  @media (max-width: 700px) {
    .milestone-panel, .milestone-panel-content {
      flex-direction: column;
      align-items: flex-start;
      gap: 1.5rem;
    }
    .milestone-panel img {
      width: 100%;
      height: auto;
      max-width: 320px;
      margin: 0 auto;
      display: block;
    }
  }

  .donation-agree-label {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.7em;
    font-size: 0.95em;
    color: #fff;
    line-height: 1.5;
    white-space: normal;
  }

  .donation-agree-label input[type="checkbox"] {
    width: 1em;
    height: 1em;
    min-width: 1em;
    min-height: 1em;
    accent-color: #4296d2;
    transform: scale(0.85);
    margin-right: 0.7em;
  }

  #donationWarningContainer {
    flex-direction: column;
    align-items: center !important;
    justify-content: center;
    margin: 0 auto;
    text-align: center;
    gap: 0.5rem;
  }