:root {
    --accent: #a0c213;
    --bg1: #0a111a;
    --bg2: #0f1729;
  }
  
  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 card */
  .hero {
    text-align: center;
    background: rgba(255,255,255,0.04);
    padding: 40px;
    border-radius: 24px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.6);
    z-index: 2;
  }
  
  h1 {
    margin: 0 0 12px;
    font-size: 28px;
  }
  
  .tagline {
    color: #b9c5cf;
    margin-bottom: 24px;
  }
  
  /* CTA */
  .cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .btn {
    padding: 14px 22px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
  }
  
  .btn.primary {
    background: linear-gradient(90deg, var(--accent), #8fbf13);
    color: #081814;
    box-shadow: 0 0 14px rgba(160,194,19,0.4);
  }
  
  .btn.primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 20px rgba(160,194,19,0.6);
  }
  
  .btn.ghost {
    border: 1px solid rgba(255,255,255,0.2);
    color: #b9c5cf;
  }
  
  .btn.ghost:hover {
    border-color: var(--accent);
    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 animation */
  .bg {
    position: absolute;
    inset: 0;
    background: 
      linear-gradient(135deg, rgba(160,194,19,0.06) 1px, transparent 1px),
      linear-gradient(225deg, rgba(160,194,19,0.06) 1px, transparent 1px),
      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%);
    background-size: 40px 40px, 40px 40px, auto, auto;
    animation: pulse 12s infinite alternate;
    z-index: 1;
  }
  
  /* Animations */
  @keyframes pulse {
    0% { opacity: 0.5; transform: scale(1); }
    100% { opacity: 0.8; transform: scale(1.05); }
  }
  h1 {
    margin: 0 0 12px;
    font-size: 32px;
    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);
    transition: all 0.3s ease;
    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); }
  }
  
  /* Background plus détaillé */
  .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;
  }
  
  /* Petites particules animées */
  .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 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); }
  }
  