@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg: #fff8f0;
    --white: #fff;
    --dark: #1a0800;
    --orange: #ea580c;
    --orange-light: #fb923c;
    --orange-pale: #fff7ed;
    --border: #fed7aa;
    --text: #1a0800;
    --text-light: #92400e;
    --purple: #7c3aed;
    --blue: #1d4ed8;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.8;
}

/* HEADER */
.header {
    background: var(--dark);
    padding: 14px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.h-logo {
    font-size: 1em;
    font-weight: 800;
    color: var(--orange-light);
}
.h-tag {
    background: rgba(251,146,60,0.15);
    border: 1px solid rgba(251,146,60,0.3);
    color: var(--orange-light);
    font-size: 0.7em;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
}

/* HERO */
.hero {
    background: linear-gradient(135deg, var(--dark) 0%, #2d0e00 50%, var(--orange) 100%);
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '🎲';
    position: absolute;
    right: 3%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16em;
    opacity: 0.04;
}
.hero-inner {
    max-width: 1060px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 50px;
    align-items: center;
}
@media (max-width: 860px) {
    .hero-inner { grid-template-columns: 1fr; }
    .activity-board { display: none; }
    .hero { padding: 50px 20px; }
}
.h-kicker {
    font-size: 0.7em;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange-light);
    margin-bottom: 14px;
}
.hero h1 {
    font-size: 2.3em;
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 14px;
}
.hero h1 em { color: #fdba74; font-style: normal; }
.hero-sub {
    color: rgba(255,255,255,0.4);
    font-size: 1em;
    max-width: 380px;
}

/* ACTIVITY BOARD */
.activity-board {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.ab-tile {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 16px 12px;
    text-align: center;
}
.abt-icon { font-size: 1.8em; margin-bottom: 6px; }
.abt-label {
    font-size: 0.72em;
    font-weight: 700;
    color: rgba(255,255,255,0.6);
}

/* ANCHOR BAND */
.anchor-band {
    background: var(--orange-pale);
    border-left: 5px solid var(--orange);
    padding: 24px 40px;
    border-top: 2px solid var(--border);
    border-bottom: 2px solid var(--border);
}
.ab-inner {
    max-width: 1060px;
    margin: 0 auto;
}
.ab-label {
    font-size: 0.68em;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 8px;
}
.anchor-band p {
    font-size: 1.08em;
    color: var(--text);
    line-height: 1.85;
}

/* MAIN */
.main {
    max-width: 1060px;
    margin: 0 auto;
    padding: 52px 24px 80px;
}

/* VARIETY GRID */
.variety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 28px;
}
.vg-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
}
.vgc-icon { font-size: 2em; margin-bottom: 10px; }
.vgc-title {
    font-weight: 800;
    color: var(--dark);
    font-size: 0.95em;
    margin-bottom: 6px;
}
.vgc-desc {
    font-size: 0.9em;
    color: var(--text-light);
    line-height: 1.65;
}

/* PANEL */
.panel {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 38px;
    margin-bottom: 22px;
}
.panel h2 {
    font-size: 1.4em;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 14px;
}
.panel h3 {
    font-size: 1.05em;
    font-weight: 700;
    color: var(--orange);
    margin: 20px 0 8px;
}
.panel p {
    font-size: 1.02em;
    color: var(--text-light);
    margin-bottom: 14px;
    text-align: justify;
    line-height: 1.78;
}
@media (max-width: 768px) {
    .panel { padding: 22px; }
}

/* LINK */
a {
    color: var(--orange);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid rgba(234,88,12,0.3);
}
a:hover { border-color: var(--orange); }

/* FOOTER */
footer {
    background: var(--dark);
    border-top: 3px solid var(--orange-light);
    padding: 26px 24px;
    text-align: center;
}
footer p {
    color: #5a2000;
    font-size: 0.88em;
}
