@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@400;500;600;700&family=Karla:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --sunset-orange: #ff7043;
    --amber: #ffb300;
    --coral: #ff8a65;
    --deep-brown: #3e2723;
    --warm-cream: #fff8f0;
    --rose-gold: #e8b4a2;
    --charcoal: #37474f;
}

body {
    font-family: 'Karla', sans-serif;
    background: var(--warm-cream);
    color: var(--charcoal);
    line-height: 1.8;
}

h1, h2, h3, h4 {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600;
}

.main-header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 3000;
    background: linear-gradient(90deg, var(--sunset-orange), var(--amber));
    padding: 1rem 2rem;
    box-shadow: 0 4px 15px rgba(255, 112, 67, 0.3);
}

.header-container {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-name {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--deep-brown);
    text-decoration: none;
}

.nav-trigger {
    display: none;
    background: rgba(255,255,255,0.3);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.nav-trigger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--deep-brown);
    margin: 3px 0;
    transition: 0.3s;
}

.nav-trigger.active span:first-child {
    transform: rotate(45deg) translate(4px, 4px);
}

.nav-trigger.active span:nth-child(2) {
    opacity: 0;
}

.nav-trigger.active span:last-child {
    transform: rotate(-45deg) translate(4px, -4px);
}

.main-nav {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    color: var(--deep-brown);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: opacity 0.3s;
}

.main-nav a:hover {
    opacity: 0.7;
}

.page-wrapper {
    padding-top: 76px;
}

.sunrise-hero {
    background: linear-gradient(135deg, var(--sunset-orange) 0%, var(--amber) 50%, var(--coral) 100%);
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sunrise-hero::before {
    content: '';
    position: absolute;
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-box {
    position: relative;
    z-index: 1;
    max-width: 850px;
    margin: 0 auto;
}

.hero-box h1 {
    font-size: 3.2rem;
    color: var(--deep-brown);
    margin-bottom: 1.5rem;
}

.hero-box p {
    font-size: 1.2rem;
    color: var(--deep-brown);
    opacity: 0.9;
}

.glow-cards {
    background: var(--warm-cream);
    padding: 4rem 2rem;
}

.cards-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.glow-card {
    background: white;
    border-radius: 50% 50% 20px 20px;
    padding: 3rem 2rem 2rem;
    width: 320px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 112, 67, 0.15);
    transition: transform 0.3s;
}

.glow-card:hover {
    transform: translateY(-8px);
}

.glow-card .sun-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--sunset-orange), var(--amber));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.glow-card h3 {
    color: var(--sunset-orange);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.glow-card p {
    color: var(--charcoal);
    font-size: 0.95rem;
}

.game-zone {
    background: linear-gradient(180deg, var(--warm-cream) 0%, var(--rose-gold) 100%);
    padding: 5rem 2rem;
}

.game-zone h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--deep-brown);
    margin-bottom: 3rem;
}

.game-display {
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--sunset-orange), var(--coral));
    padding: 10px;
    border-radius: 30px;
    box-shadow: 0 15px 50px rgba(255, 112, 67, 0.3);
}

.game-display iframe {
    width: 100%;
    height: 650px;
    border: none;
    border-radius: 22px;
    display: block;
}

.rays-section {
    background: var(--warm-cream);
    padding: 5rem 2rem;
}

.rays-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.ray-item {
    text-align: center;
    padding: 2rem 1rem;
}

.ray-item .symbol {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.ray-item h3 {
    color: var(--sunset-orange);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.ray-item p {
    color: var(--charcoal);
    font-size: 0.9rem;
}

.content-section {
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.content-section h1 {
    color: var(--sunset-orange);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2.5rem;
}

.content-section h2 {
    color: var(--deep-brown);
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
}

.content-section p {
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.content-section ul {
    color: var(--charcoal);
    margin: 1rem 0 1rem 2rem;
}

.content-section li {
    margin-bottom: 0.5rem;
}

.warm-tip {
    background: linear-gradient(135deg, rgba(255, 112, 67, 0.15), rgba(255, 179, 0, 0.15));
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
}

.warm-tip p {
    margin: 0.5rem 0;
}

.sunset-footer {
    background: var(--deep-brown);
    padding: 3rem 2rem;
    text-align: center;
}

.footer-content h4 {
    color: var(--amber);
    font-family: 'Josefin Sans', sans-serif;
    margin-bottom: 1rem;
}

.footer-content a {
    color: var(--rose-gold);
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s;
}

.footer-content a:hover {
    color: var(--amber);
}

.footer-text {
    color: var(--rose-gold);
    opacity: 0.7;
    font-size: 0.9rem;
    margin-top: 1.5rem;
}

/* Age Verification */
.age-screen {
    position: fixed;
    inset: 0;
    background: rgba(62, 39, 35, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 40000;
}

.age-screen.hidden {
    display: none;
}

.age-card {
    background: var(--warm-cream);
    border-radius: 30px;
    padding: 3rem;
    max-width: 480px;
    margin: 1rem;
    text-align: center;
}

.age-card h2 {
    color: var(--sunset-orange);
    font-size: 1.7rem;
    margin-bottom: 1rem;
}

.age-card > p {
    color: var(--charcoal);
    margin-bottom: 2rem;
}

.age-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-option {
    padding: 1rem 2.5rem;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
}

.age-option.confirm {
    background: linear-gradient(135deg, var(--sunset-orange), var(--amber));
    color: var(--deep-brown);
}

.age-option.confirm:hover {
    transform: scale(1.05);
}

.age-option.decline {
    background: var(--rose-gold);
    color: var(--deep-brown);
}

.age-option.decline:hover {
    background: #d4a090;
}

.decline-warning {
    display: none;
    margin-top: 1.5rem;
    color: var(--sunset-orange);
    font-weight: 600;
}

@media (max-width: 1024px) {
    .rays-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-trigger {
        display: flex;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--amber);
        flex-direction: column;
        padding: 1rem;
        gap: 0;
        display: none;
    }
    
    .main-nav.active {
        display: flex;
    }
    
    .main-nav li {
        text-align: center;
    }
    
    .main-nav a {
        display: block;
        padding: 1rem;
    }
    
    .hero-box h1 {
        font-size: 2.2rem;
    }
    
    .cards-wrapper {
        flex-direction: column;
        align-items: center;
    }
    
    .glow-card {
        width: 100%;
        max-width: 350px;
    }
    
    .game-display iframe {
        height: 480px;
    }
    
    .rays-grid {
        grid-template-columns: 1fr;
    }
    
    .age-options {
        flex-direction: column;
    }
}
