/* Solaryth - Radiant Solar Theme */
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;600;700&family=Satisfy&display=swap');

:root {
    --solar-yellow: #ffd700;
    --warm-orange: #ff8c00;
    --bright-white: #fffef2;
    --deep-amber: #ff6600;
    --sky-gradient: #1a1a2e;
    --light-cream: #fff9e6;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Josefin Sans', sans-serif;
    background: var(--sky-gradient);
    color: var(--bright-white);
    min-height: 100vh;
    line-height: 1.7;
}

/* Radiant Header */
.radiant-header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: linear-gradient(to right, rgba(26, 26, 46, 0.98), rgba(26, 26, 46, 0.95));
    border-bottom: 3px solid var(--solar-yellow);
}

.header-row {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.solar-logo {
    font-family: 'Satisfy', cursive;
    font-size: 2.5rem;
    color: var(--solar-yellow);
    text-decoration: none;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.solar-nav {
    display: flex;
    gap: 2.5rem;
}

.solar-nav a {
    color: var(--bright-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s;
}

.solar-nav a:hover {
    color: var(--solar-yellow);
}

.solar-burger {
    display: none;
    cursor: pointer;
    padding: 10px;
}

.solar-burger span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--solar-yellow);
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.3s;
}

.solar-burger.active span:first-child {
    transform: rotate(45deg) translate(5px, 6px);
}

.solar-burger.active span:nth-child(2) {
    opacity: 0;
}

.solar-burger.active span:last-child {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Sunrise Hero */
.sunrise-hero {
    min-height: 100vh;
    padding: 120px 2rem 80px;
    background: 
        radial-gradient(ellipse at center bottom, rgba(255, 140, 0, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at center, rgba(255, 215, 0, 0.1) 0%, transparent 60%),
        var(--sky-gradient);
    display: flex;
    align-items: center;
}

.hero-columns {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-main h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--solar-yellow);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.4);
}

.hero-main p {
    font-size: 1.15rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.sun-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--solar-yellow), var(--warm-orange));
    color: var(--sky-gradient);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: all 0.4s;
    box-shadow: 0 4px 30px rgba(255, 215, 0, 0.4);
}

.sun-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(255, 215, 0, 0.6);
}

.hero-side {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sun-card {
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
}

.sun-card h4 {
    color: var(--solar-yellow);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.sun-card p {
    font-size: 0.95rem;
    font-weight: 300;
    opacity: 0.85;
}

/* Game Section */
.game-sunroom {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, var(--sky-gradient), #2a2a4a);
}

.sunroom-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--solar-yellow);
    text-align: center;
    margin-bottom: 2rem;
}

.sunroom-frame {
    max-width: 1100px;
    margin: 0 auto;
    background: rgba(26, 26, 46, 0.8);
    border: 3px solid var(--solar-yellow);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(255, 215, 0, 0.2);
}

.sunroom-frame iframe {
    width: 100%;
    height: 620px;
    border: none;
}

/* Features */
.features-light {
    padding: 5rem 2rem;
    background: var(--light-cream);
    color: var(--sky-gradient);
}

.light-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.light-box {
    background: var(--bright-white);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.light-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.light-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.light-box h3 {
    color: var(--deep-amber);
    margin-bottom: 1rem;
    font-weight: 700;
}

.light-box p {
    font-weight: 300;
    line-height: 1.7;
    color: #555;
}

/* About */
.about-glow {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--warm-orange), var(--deep-amber));
}

.glow-inner {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.about-glow h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--bright-white);
}

.about-glow p {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: var(--bright-white);
}

/* Footer */
.solar-footer {
    background: #0f0f1a;
    padding: 2.5rem 2rem;
    border-top: 3px solid var(--solar-yellow);
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.help-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.help-links a {
    color: var(--solar-yellow);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.help-links a:hover {
    color: var(--bright-white);
}

.footer-note {
    color: var(--bright-white);
    opacity: 0.6;
    font-size: 0.85rem;
}

/* Age Modal */
.age-shine {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.age-shine.hidden {
    display: none;
}

.shine-box {
    background: linear-gradient(145deg, var(--sky-gradient), #2a2a4a);
    border: 3px solid var(--solar-yellow);
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    max-width: 480px;
    width: 90%;
    box-shadow: 0 0 80px rgba(255, 215, 0, 0.3);
}

.shine-box h2 {
    font-family: 'Satisfy', cursive;
    color: var(--solar-yellow);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.shine-box p {
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.7;
}

.shine-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-shine {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--solar-yellow), var(--warm-orange));
    color: var(--sky-gradient);
    border: none;
    border-radius: 50px;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.btn-shine:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.btn-dim {
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--bright-white);
    border: 2px solid var(--bright-white);
    border-radius: 50px;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.btn-dim:hover {
    border-color: var(--solar-yellow);
    color: var(--solar-yellow);
}

/* Inner Pages */
.page-glow {
    padding: 120px 2rem 60px;
    min-height: 100vh;
    background: var(--light-cream);
    color: var(--sky-gradient);
}

.page-wrap {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bright-white);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.page-glow h1 {
    color: var(--deep-amber);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.page-glow h2 {
    color: var(--warm-orange);
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.page-glow p {
    color: #444;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.page-glow ul {
    margin: 0 0 1.5rem 1.5rem;
    color: #444;
}

.page-glow li {
    margin-bottom: 0.6rem;
    font-weight: 300;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-columns {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-side {
        max-width: 500px;
        margin: 0 auto;
    }

    .light-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .solar-burger {
        display: block;
    }

    .solar-nav {
        position: fixed;
        top: 76px;
        left: 0;
        width: 100%;
        background: rgba(26, 26, 46, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateX(-100%);
        transition: transform 0.3s;
        border-bottom: 3px solid var(--solar-yellow);
    }

    .solar-nav.visible {
        transform: translateX(0);
    }

    .hero-main h1 {
        font-size: 2.5rem;
    }

    .sunroom-frame iframe {
        height: 450px;
    }
}

@media (max-width: 480px) {
    .solar-logo {
        font-size: 1.8rem;
    }

    .hero-main h1 {
        font-size: 2rem;
    }

    .sunroom-frame iframe {
        height: 380px;
    }

    .shine-btns {
        flex-direction: column;
    }

    .page-wrap {
        padding: 2rem;
    }
}
