    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
    :root {
      --green-dark:   #1a2e1a;
      --green-mid:    #2d5a2d;
      --green-bright: #4caf50;
      --green-light:  #a5d6a7;
      --green-pale:   #f0f7f0;
      --gold:         #f5a623;
      --gold-pale:    #fff8ec;
      --text:         #1a1a1a;
      --text-muted:   #6b7a6b;
      --border:       #d8e8d8;
      --white:        #ffffff;
      --radius:       14px;
    }
 
    body {
      /* font-family: 'DM Sans', sans-serif; */
      /* background: var(--green-pale); */
      /* color: var(--text); */
      min-height: 100vh;
    }
 
    /* ── HERO ── */
    .hero {
      background: var(--green-dark);
      padding: 56px 24px 64px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 60% 0%, #2d5a2d 0%, transparent 70%);
    }
    .hero-badge {
      display: inline-block;
      background: rgba(76,175,80,0.18);
      border: 1px solid rgba(76,175,80,0.35);
      color: var(--green-light);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 2px;
      padding: 6px 16px;
      border-radius: 999px;
      margin-bottom: 20px;
      position: relative;
    }
    .hero h1 {
      /* font-family: 'DM Serif Display', serif; */
      font-size: clamp(32px, 6vw, 52px);
      color: var(--white);
      line-height: 1.1;
      position: relative;
      margin-bottom: 14px;
    }
    .hero h1 em {
      font-style: italic;
      color: var(--green-light);
    }
    .hero p {
      font-size: 15px;
      color: rgba(255,255,255,0.6);
      max-width: 420px;
      margin: 0 auto;
      line-height: 1.6;
      position: relative;
    }
 
    /* ── REFERRAL LINK BOX ── */
    .ref-link-wrap {
      max-width: 560px;
      margin: -28px auto 0;
      padding: 0 20px;
      position: relative;
      z-index: 10;
    }
    .ref-link-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 20px 20px 20px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.10);
      border: 1px solid var(--border);
    }
    .ref-link-label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 1.5px;
      color: var(--text-muted);
      margin-bottom: 10px;
    }
    .ref-link-row {
      display: flex;
      gap: 10px;
      align-items: center;
    }
    .ref-link-input {
      flex: 1;
      background: var(--green-pale);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 11px 14px;
      font-size: 13px;
      color: var(--text);
      /* font-family: 'DM Sans', sans-serif; */
      outline: none;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }
    .copy-btn {
      background: var(--green-dark);
      color: var(--white);
      border: none;
      border-radius: 8px;
      padding: 11px 20px;
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      /* font-family: 'DM Sans', sans-serif; */
      transition: background 0.15s;
      white-space: nowrap;
    }
    .copy-btn:hover { background: var(--green-mid); }
    .copy-btn.copied { background: var(--green-bright); }
 
    .share-row {
      display: flex;
      gap: 8px;
      margin-top: 12px;
      flex-wrap: wrap;
    }
    .share-btn {
      flex: 1;
      min-width: 80px;
      border: 1px solid var(--border);
      background: var(--white);
      border-radius: 8px;
      padding: 9px 12px;
      font-size: 12px;
      font-weight: 500;
      color: var(--text);
      cursor: pointer;
      /* font-family: 'DM Sans', sans-serif; */
      transition: background 0.12s, border-color 0.12s;
      text-align: center;
    }
    .share-btn:hover { background: var(--green-pale); border-color: var(--green-bright); }
 
    /* ── MAIN CONTENT ── */
    .content {
      max-width: 560px;
      margin: 0 auto;
      padding: 32px 20px 60px;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
 
    /* ── SECTION CARD ── */
    .card {
      background: var(--white);
      border-radius: var(--radius);
      border: 1px solid var(--border);
      overflow: hidden;
    }
    .card-header {
      padding: 18px 20px 14px;
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .card-icon {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      flex-shrink: 0;
    }
    .icon-green { background: #e8f5e9; }
    .icon-gold  { background: var(--gold-pale); }
    .icon-blue  { background: #e8eaf6; }
    .card-header-text h3 {
      font-size: 15px;
      font-weight: 600;
      color: var(--text);
    }
    .card-header-text p {
      font-size: 12px;
      color: var(--text-muted);
      margin-top: 2px;
    }
 
    /* ── REWARD ROWS ── */
    .reward-list { padding: 4px 0; }
    .reward-row {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 14px 20px;
      border-bottom: 1px solid #f5f5f5;
      transition: background 0.1s;
    }
    .reward-row:last-child { border-bottom: none; }
    .reward-row:hover { background: #fafff9; }
    .reward-amount {
      /* font-family: 'DM Serif Display', serif; */
      font-size: 22px;
      color: var(--green-bright);
      line-height: 1;
      min-width: 52px;
      flex-shrink: 0;
    }
    .reward-amount.gold { color: var(--gold); }
    .reward-info strong {
      font-size: 13px;
      font-weight: 600;
      color: var(--text);
      display: block;
      margin-bottom: 3px;
    }
    .reward-info span {
      font-size: 12px;
      color: var(--text-muted);
      line-height: 1.5;
    }
    .reward-tag {
      display: inline-block;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 1px;
      padding: 2px 8px;
      border-radius: 999px;
      margin-top: 5px;
    }
    .tag-green { background: #e8f5e9; color: #2e7d32; }
    .tag-gold  { background: var(--gold-pale); color: #b07a10; }
    .tag-blue  { background: #e8eaf6; color: #3949ab; }
 
    /* ── DRIVER GUARANTEE NOTICE ── */
    .guarantee-card {
      background: linear-gradient(135deg, #1a2e1a 0%, #2d5a2d 100%);
      border-radius: var(--radius);
      padding: 24px 20px;
      color: var(--white);
      position: relative;
      overflow: hidden;
    }
    .guarantee-card::before {
      
      position: absolute;
      right: 20px;
      top: 16px;
      font-size: 48px;
      opacity: 0.12;
    }
    .guarantee-card h3 {
      /* font-family: 'DM Serif Display', serif; */
      font-size: 20px;
      margin-bottom: 8px;
      color: var(--white);
    }
    .guarantee-card p {
      font-size: 13px;
      color: rgba(255,255,255,0.7);
      line-height: 1.6;
      margin-bottom: 16px;
    }
    .guarantee-rows { display: flex; flex-direction: column; gap: 10px; }
    .guarantee-row {
      display: flex;
      align-items: center;
      gap: 12px;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 10px;
      padding: 12px 14px;
    }
    .g-amount {
      /* font-family: 'DM Serif Display', serif; */
      font-size: 22px;
      color: var(--green-light);
      min-width: 44px;
    }
    .g-text strong {
      font-size: 13px;
      font-weight: 600;
      color: var(--white);
      display: block;
    }
    .g-text span {
      font-size: 11px;
      color: rgba(255,255,255,0.55);
    }
    .guarantee-note {
      margin-top: 14px;
      font-size: 11px;
      color: rgba(255,255,255,0.45);
      line-height: 1.5;
    }
 
    /* ── PROGRESS ── */
    .progress-card { padding: 20px; }
    .progress-label {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 10px;
    }
    .progress-label span { font-size: 13px; color: var(--text-muted); }
    .progress-label strong { font-size: 13px; font-weight: 600; color: var(--text); }
    .progress-bar {
      height: 8px;
      background: #e8f5e9;
      border-radius: 999px;
      overflow: hidden;
    }
    .progress-fill {
      height: 100%;
      background: linear-gradient(90deg, var(--green-mid), var(--green-bright));
      border-radius: 999px;
      width: 20%;
      transition: width 1s ease;
    }
    .progress-sub {
      font-size: 11px;
      color: var(--text-muted);
      margin-top: 8px;
    }
 
    /* ── DASHBOARD NOTICE PREVIEW ── */
    .notice-preview {
      border-radius: 10px;
      padding: 14px 16px;
      display: flex;
      gap: 12px;
      align-items: flex-start;
    }
    .notice-green { background: #e8f5e9; border: 1px solid #c8e6c9; }
    .notice-gold  { background: var(--gold-pale); border: 1px solid #ffe0a0; }
    .notice-blue  { background: #e8eaf6; border: 1px solid #c5cae9; }
    .notice-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
    .notice-text strong { font-size: 13px; font-weight: 600; color: var(--text); display: block; margin-bottom: 3px; }
    .notice-text span { font-size: 12px; color: var(--text-muted); line-height: 1.5; }
 
    .notices-section h4 {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 1.5px;
      color: var(--text-muted);
      padding: 16px 20px 10px;
      text-transform: uppercase;
    }
    .notices-list {
      padding: 0 16px 16px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
 
    /* ── LIMIT PILL ── */
    .limit-note {
      text-align: center;
      font-size: 12px;
      color: var(--text-muted);
      padding: 14px 20px;
      border-top: 1px solid var(--border);
    }
    .limit-note strong { color: var(--text); }
 
    /* ── ANIMATIONS ── */
    .card, .guarantee-card, .ref-link-card {
      animation: fadeUp 0.4s ease both;
    }
    .card:nth-child(2) { animation-delay: 0.05s; }
    .card:nth-child(3) { animation-delay: 0.10s; }
    .card:nth-child(4) { animation-delay: 0.15s; }
    .card:nth-child(5) { animation-delay: 0.20s; }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(12px); }
      to   { opacity: 1; transform: translateY(0); }
    }
