@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Poppins:wght@300;400;500;600;700&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --sun-gold: #f59e0b;
    --warm-amber: #fbbf24;
    --deep-bronze: #92400e;
    --cream-light: #fffbeb;
    --rich-brown: #451a03;
    --soft-orange: #fed7aa;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', sans-serif;
    background: var(--cream-light);
    color: var(--rich-brown);
    min-height: 100vh;
    line-height: 1.7;
}

.sun-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--sun-gold), var(--warm-amber));
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 15px rgba(245, 158, 11, 0.3);
}

.header-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.solar-brand {
    font-family: 'Abril Fatface', cursive;
    font-size: 1.8rem;
    color: var(--rich-brown);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-sun {
    width: 40px;
    height: 40px;
    background: var(--rich-brown);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--warm-amber);
    font-size: 1.2rem;
}

.menu-btn {
    display: none;
    background: var(--rich-brown);
    border: none;
    color: var(--warm-amber);
    padding: 8px 14px;
    cursor: pointer;
    border-radius: 5px;
}

.sun-nav {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.sun-nav a {
    color: var(--rich-brown);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s;
}

.sun-nav a:hover { opacity: 0.7; }

.main-area { padding-top: 72px; }

.radiant-hero {
    min-height: calc(100vh - 72px);
    background: linear-gradient(180deg, var(--cream-light) 0%, var(--soft-orange) 100%);
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
}

.hero-flex {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-info h1 {
    font-family: 'Abril Fatface', cursive;
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--rich-brown);
}

.hero-info h1 span { color: var(--deep-bronze); }

.hero-info p { font-size: 1.15rem; margin-bottom: 2rem; opacity: 0.9; }

.shine-btn {
    display: inline-block;
    background: var(--rich-brown);
    color: var(--warm-amber);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.shine-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(69, 26, 3, 0.3);
}

.solar-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.solar-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 5px solid var(--sun-gold);
    box-shadow: 0 4px 15px rgba(69, 26, 3, 0.08);
}

.solar-card h3 {
    font-family: 'Abril Fatface', cursive;
    color: var(--deep-bronze);
    margin-bottom: 0.4rem;
}

.game-zone {
    padding: 5rem 2rem;
    background: white;
}

.zone-heading {
    font-family: 'Abril Fatface', cursive;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--rich-brown);
}

.zone-heading span { color: var(--sun-gold); }

.game-stage {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--cream-light);
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid var(--sun-gold);
}

.game-stage iframe {
    width: 100%;
    height: 640px;
    border: none;
    display: block;
}

.perks-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--sun-gold), var(--warm-amber));
}

.perks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.perk-box {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.perk-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.perk-box h4 { font-family: 'Abril Fatface', cursive; color: var(--deep-bronze); margin-bottom: 0.5rem; }
.perk-box p { font-size: 0.9rem; opacity: 0.8; }

.story-section {
    padding: 5rem 2rem;
    background: var(--cream-light);
}

.story-inner {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.story-inner p { font-size: 1.1rem; margin-bottom: 1.2rem; opacity: 0.9; }

.golden-footer {
    background: var(--rich-brown);
    color: var(--cream-light);
    padding: 3rem 2rem;
}

.footer-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-col h5 { font-family: 'Abril Fatface', cursive; color: var(--sun-gold); margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { color: var(--soft-orange); text-decoration: none; opacity: 0.8; }
.footer-col a:hover { opacity: 1; color: var(--warm-amber); }
.footer-col p { opacity: 0.8; }

.footer-base {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(251, 191, 36, 0.3);
    opacity: 0.7;
    font-size: 0.85rem;
}

.dawn-gate {
    position: fixed;
    inset: 0;
    background: rgba(69, 26, 3, 0.97);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dawn-gate.risen { display: none; }

.gate-panel {
    background: linear-gradient(135deg, var(--sun-gold), var(--warm-amber));
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 460px;
}

.gate-panel h2 { font-family: 'Abril Fatface', cursive; color: var(--rich-brown); margin-bottom: 1rem; }
.gate-panel p { color: var(--rich-brown); margin-bottom: 2rem; opacity: 0.9; }

.gate-btns { display: flex; gap: 1rem; justify-content: center; }

.gate-yes, .gate-no {
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
}

.gate-yes { background: var(--rich-brown); color: var(--warm-amber); }
.gate-no { background: rgba(255,255,255,0.3); color: var(--rich-brown); }

.page-top {
    padding: 8rem 2rem 3rem;
    background: linear-gradient(135deg, var(--sun-gold), var(--warm-amber));
    text-align: center;
}

.page-top h1 { font-family: 'Abril Fatface', cursive; font-size: 3rem; color: var(--rich-brown); }

.page-body {
    padding: 3rem 2rem 5rem;
    max-width: 900px;
    margin: 0 auto;
}

.page-body h2 { font-family: 'Abril Fatface', cursive; color: var(--sun-gold); margin: 2.5rem 0 1rem; }
.page-body p { margin-bottom: 1rem; opacity: 0.9; }
.page-body ul { margin: 1rem 0; padding-left: 1.5rem; opacity: 0.9; }
.page-body li { margin-bottom: 0.5rem; }

@media (max-width: 1024px) {
    .hero-flex { grid-template-columns: 1fr; gap: 3rem; }
    .perks-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-layout { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 768px) {
    .menu-btn { display: block; }
    .sun-nav {
        position: absolute; top: 100%; left: 0; right: 0;
        background: linear-gradient(135deg, var(--sun-gold), var(--warm-amber));
        flex-direction: column; align-items: center;
        padding: 0; max-height: 0; overflow: hidden; transition: all 0.3s;
    }
    .sun-nav.open { max-height: 300px; padding: 1rem 0; }
    .sun-nav li { width: 100%; text-align: center; }
    .sun-nav a { display: block; padding: 0.8rem; }
    .hero-info h1 { font-size: 2.3rem; }
    .perks-grid { grid-template-columns: 1fr; }
    .game-stage iframe { height: 420px; }
    .gate-panel { margin: 1rem; padding: 2rem; }
}
