:root {
    --accent: #a0c213;
    --bg1: #0a111a;
    --bg2: #0f1729;
  }
  
  /* Reset */
  * { margin: 0; padding: 0; box-sizing: border-box; }
  
  body {
    margin: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--bg1);
    font-family: "Inter", sans-serif;
    color: white;
    overflow: hidden;
    position: relative;
  }
  
  /* Hero */
  .hero {
    text-align: center;
    background: rgba(255,255,255,0.04);
    padding: 28px 32px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    z-index: 2;
    width: 100%;
    max-width: 420px;
  }
  
  h1 {
    margin: 0 0 12px;
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(90deg, var(--accent), #dfff7f);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    text-shadow: 0 0 12px rgba(160,194,19,0.6);
    cursor: pointer;
  }
  
  /* Easter egg au hover */
  h1:hover::after {
    content: " 🌿 Farmer Inside";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -22px;
    font-size: 14px;
    color: var(--accent);
    opacity: 0;
    animation: appear 0.6s forwards;
  }
  
  @keyframes appear {
    to { opacity: 1; transform: translate(-50%, -4px); }
  }
  
  .tagline {
    color: #b9c5cf;
    margin-bottom: 24px;
  }
  
  /* Form */
  .form {
    text-align: left;
  }
  
  label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #b9c5cf;
  }
  
  input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
    color: white;
    font-size: 15px;
    margin-bottom: 16px;
  }
  
  input:focus {
    border-color: var(--accent);
    outline: none;
  }
  
  /* FAQ */
  .faq {
    margin-top: 28px;
    text-align: left;
  }
  
  .faq-item {
    margin-bottom: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255,255,255,0.02);
  }
  
  .faq-question {
    cursor: pointer;
    padding: 12px 16px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s ease;
  }
  
  .faq-question:hover {
    background: rgba(160,194,19,0.1);
  }
  
  .faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 16px;
    line-height: 1.5;
    color: #b9c5cf;
    transition: all 0.4s ease;
  }
  
  .faq-item.active .faq-answer {
    max-height: 200px;
    opacity: 1;
    padding: 12px 16px;
  }
  
  /* Flèche animée */
  .faq-question::after {
    content: "▼";
    font-size: 14px;
    margin-left: 10px;
    transition: transform 0.3s ease;
  }
  
  .faq-item.active .faq-question::after {
    transform: rotate(180deg);
  }
  
  /* CTA */
  .cta {
    margin-top: 20px;
    display: flex;
    gap: 16px;
  }
  
  .btn {
    flex: 1;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.25s ease;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
  }
  
  .btn.primary {
    background: linear-gradient(90deg, var(--accent), #8fbf13);
    color: #081814;
    box-shadow: 0 0 8px rgba(160,194,19,0.3);
  }
  
  .btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 12px rgba(160,194,19,0.5);
  }
  
  .btn.ghost {
    border: 1px solid rgba(255,255,255,0.2);
    color: #b9c5cf;
  }
  
  .btn.ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
  }
  
  /* Retour */
  .back {
    display: block;
    margin-bottom: 12px;
    font-size: 14px;
    color: #8d99a7;
    text-decoration: none;
  }
  
  .back:hover {
    color: var(--accent);
  }
  
  /* Footer */
  footer {
    position: absolute;
    bottom: 14px;
    text-align: center;
    font-size: 13px;
    color: #8d99a7;
    z-index: 2;
  }
  
  footer a {
    color: var(--accent);
    text-decoration: none;
    display: block;
    margin-top: 4px;
  }
  
  /* Background animé */
  .bg {
    position: absolute;
    inset: 0;
    background: 
      repeating-linear-gradient(45deg, rgba(160,194,19,0.06) 0px, rgba(160,194,19,0.06) 1px, transparent 1px, transparent 40px),
      repeating-linear-gradient(-45deg, rgba(160,194,19,0.06) 0px, rgba(160,194,19,0.06) 1px, transparent 1px, transparent 40px),
      radial-gradient(circle at 20% 30%, rgba(160,194,19,0.12), transparent 40%),
      radial-gradient(circle at 80% 70%, rgba(160,194,19,0.12), transparent 40%);
    animation: pulse 16s infinite alternate, drift 60s linear infinite;
    z-index: 1;
  }

  .hint {
    font-size: 13px;
    color: #98a6b1;
    margin: 0px 0 0;
    line-height: 1.5;
  }

  /* OTP Inputs - Style Amazon */
  .otp-container {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 24px 0;
  }

  .otp-input {
    width: 50px !important;
    height: 60px !important;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    border: 2px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
    color: white;
    border-radius: 12px;
    margin-bottom: 0 !important;
    padding: 0 !important;
    transition: all 0.3s ease;
  }

  .otp-input:focus {
    border-color: var(--accent);
    background: rgba(160,194,19,0.1);
    box-shadow: 0 0 0 3px rgba(160,194,19,0.2);
    outline: none;
    transform: scale(1.05);
  }

  .otp-input:not(:placeholder-shown) {
    border-color: var(--accent);
    background: rgba(160,194,19,0.05);
  }
  
  .bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(var(--accent) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.15;
    animation: floatParticles 30s linear infinite;
  }
  
  @keyframes pulse {
    0% { opacity: 0.5; transform: scale(1); }
    100% { opacity: 0.8; transform: scale(1.05); }
  }
  
  @keyframes drift {
    0% { background-position: 0 0, 0 0, 0 0, 0 0; }
    100% { background-position: 80px 80px, -80px -80px, 0 0, 0 0; }
  }
  
  @keyframes floatParticles {
    0% { transform: translateY(0); }
    100% { transform: translateY(-40px); }
  }
  