@font-face {
  font-family: 'Spliffs';
  src: url('Spliffs.ttf');
}

:root {
      --bg: #0b0f0c;
      --card: #121813;
      --accent: #1e8e2e;
      --text: #e8f5ec;
      --muted: #a6c3b0;
      --shadow: 0 10px 30px rgba(0,0,0,.35);
    }
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--text); font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif; }
a { color: var(--text); }
.container { max-width: 1100px; margin: 0 auto; padding: 24px; }
header { display:flex; align-items:center; justify-content:center; padding: 24px 0 8px; }
.brand img { width: 320px; max-width: 45vw; height: auto; filter: drop-shadow(var(--shadow)); }
.brand { display: flex; flex-direction: horizontal; margin-top: 8px; }
.feature { width: 100%; padding: 2em; border-radius: 18px; }
.feature h1 { padding: 0.2em; width: auto; }
.brand h1 { font-size: clamp(52px, 5vw, 64px); margin: 8px 0 0; letter-spacing:.5px; font-family: 'Spliffs'; color: #fff; }
.tag { color: #fff; font-size: 14px; margin-top: 4px; }
.grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 28px; }
.card { background: linear-gradient(180deg, #152017, #0f1611); border: 3px solid #62bb05; border-radius: 18px; padding: 18px; box-shadow: var(--shadow); text-align: center; }
.card h3 { margin: 8px 0 6px; font-size: 22px; }
.price { font-weight: 700; font-size: 26px; margin: 6px 0 14px; }
.desc { color: var(--muted); font-size: 14px; line-height: 1.4; }
.divider { height: 1px; background: rgba(255,255,255,.08); margin: 14px 0; border-radius: 1px; }
.paypal-area { margin-top: 10px; }
footer { margin: 40px 0 24px; text-align:center; color: var(--muted); font-size: 13px; }
.notice { font-size: 12px; color: var(--muted); margin-top: 10px; }

