@import url('https://fonts.googleapis.com/css2?family=Righteous&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --solar-gold: #ff9f1c;
    --sunset-orange: #ff6b35;
    --hot-coral: #f7567c;
    --deep-blue: #1a1a2e;
    --cosmic-navy: #16213e;
    --pure-white: #ffffff;
    --soft-cream: #fffcf2;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--deep-blue);
    color: var(--pure-white);
    line-height: 1.7;
}

.solar-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 46, 0.95);
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--solar-gold);
}

.header-wrap {
    max-width: 1500px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.solar-logo {
    font-family: 'Righteous', cursive;
    font-size: 2rem;
    text-decoration: none;
    background: linear-gradient(135deg, var(--solar-gold), var(--hot-coral));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.solar-nav {
    display: flex;
    gap: 2rem;
}

.solar-nav a {
    color: var(--pure-white);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s;
}

.solar-nav a:hover {
    background: var(--solar-gold);
    color: var(--deep-blue);
}

.sun-menu-btn {
    display: none;
    cursor: pointer;
    width: 35px;
    height: 35px;
    position: relative;
}

.sun-menu-btn span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--solar-gold);
    border-radius: 3px;
    transition: all 0.3s;
}

.sun-menu-btn span:nth-child(1) { top: 5px; }
.sun-menu-btn span:nth-child(2) { top: 16px; }
.sun-menu-btn span:nth-child(3) { bottom: 5px; }

.sun-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 16px;
}

.sun-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.sun-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 16px;
}

.mobile-solar-nav {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--cosmic-navy);
    transform: translateY(-150%);
    transition: transform 0.4s;
    z-index: 999;
    padding: 1rem 0;
}

.mobile-solar-nav.open {
    transform: translateY(0);
}

.mobile-solar-nav a {
    display: block;
    padding: 1rem 2rem;
    color: var(--pure-white);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 159, 28, 0.2);
}

.mobile-solar-nav a:hover {
    background: rgba(255, 159, 28, 0.2);
}

.sunrise-hero {
    min-height: 100vh;
    padding: 120px 2rem 60px;
    background: radial-gradient(circle at 50% 0%, var(--sunset-orange) 0%, transparent 40%),
                radial-gradient(circle at 80% 80%, var(--hot-coral) 0%, transparent 30%),
                var(--deep-blue);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.solar-badge {
    display: inline-block;
    background: var(--solar-gold);
    color: var(--deep-blue);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 2rem;
}

.sunrise-hero h1 {
    font-family: 'Righteous', cursive;
    font-size: clamp(3rem, 10vw, 6rem);
    margin-bottom: 1.5rem;
}

.sunrise-hero h1 span {
    background: linear-gradient(135deg, var(--solar-gold), var(--hot-coral));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sunrise-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 650px;
    margin-bottom: 2.5rem;
}

.solar-btns {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-solar {
    background: linear-gradient(135deg, var(--solar-gold), var(--sunset-orange));
    color: var(--deep-blue);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-solar:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 159, 28, 0.4);
}

.btn-outline-solar {
    background: transparent;
    color: var(--solar-gold);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--solar-gold);
    transition: all 0.3s;
}

.btn-outline-solar:hover {
    background: var(--solar-gold);
    color: var(--deep-blue);
}

.notices-row {
    padding: 4rem 2rem;
    background: var(--cosmic-navy);
}

.notices-flex {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.notice-box {
    background: linear-gradient(145deg, rgba(255, 159, 28, 0.1), rgba(247, 86, 124, 0.1));
    border: 1px solid rgba(255, 159, 28, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    flex: 1;
    min-width: 280px;
    max-width: 380px;
}

.notice-box .box-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.notice-box h3 {
    font-family: 'Righteous', cursive;
    color: var(--solar-gold);
    margin-bottom: 0.5rem;
}

.notice-box p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.game-zone {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, var(--deep-blue) 0%, var(--cosmic-navy) 100%);
}

.zone-header {
    text-align: center;
    margin-bottom: 3rem;
}

.zone-header h2 {
    font-family: 'Righteous', cursive;
    font-size: clamp(2rem, 5vw, 3rem);
}

.zone-header h2 span {
    color: var(--solar-gold);
}

.zone-header p {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
}

.game-display {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--cosmic-navy);
    border-radius: 25px;
    overflow: hidden;
    border: 3px solid var(--solar-gold);
    box-shadow: 0 0 60px rgba(255, 159, 28, 0.2);
}

.game-display iframe {
    width: 100%;
    height: 620px;
    border: none;
}

.perks-grid-section {
    padding: 5rem 2rem;
    background: var(--cosmic-navy);
}

.perks-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.perk-item {
    background: rgba(255, 159, 28, 0.05);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border-bottom: 3px solid var(--sunset-orange);
    transition: all 0.3s;
}

.perk-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 159, 28, 0.1);
}

.perk-item .perk-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.perk-item h4 {
    font-family: 'Righteous', cursive;
    color: var(--solar-gold);
    margin-bottom: 0.5rem;
}

.perk-item p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.solar-footer {
    background: var(--deep-blue);
    padding: 4rem 2rem 1.5rem;
    border-top: 2px solid var(--solar-gold);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand .solar-logo {
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.footer-links h5 {
    font-family: 'Righteous', cursive;
    color: var(--solar-gold);
    margin-bottom: 1rem;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--solar-gold);
}

.footer-safety h5 {
    font-family: 'Righteous', cursive;
    color: var(--solar-gold);
    margin-bottom: 1rem;
}

.footer-safety a {
    display: inline-block;
    background: rgba(255, 159, 28, 0.2);
    color: var(--pure-white);
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.85rem;
    margin: 0.2rem;
    transition: background 0.3s;
}

.footer-safety a:hover {
    background: var(--solar-gold);
    color: var(--deep-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 159, 28, 0.2);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.age-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 46, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 1rem;
}

.age-overlay.hidden {
    display: none;
}

.age-box {
    background: linear-gradient(145deg, var(--cosmic-navy), var(--deep-blue));
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    max-width: 460px;
    border: 3px solid var(--solar-gold);
}

.age-box .age-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.age-box h2 {
    font-family: 'Righteous', cursive;
    font-size: 1.8rem;
    color: var(--solar-gold);
    margin-bottom: 1rem;
}

.age-box p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.age-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-btns button {
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
}

.age-yes {
    background: linear-gradient(135deg, var(--solar-gold), var(--sunset-orange));
    color: var(--deep-blue);
}

.age-no {
    background: transparent;
    border: 2px solid var(--pure-white) !important;
    color: var(--pure-white);
}

.page-area {
    padding: 120px 2rem 60px;
    min-height: 75vh;
    background: linear-gradient(180deg, var(--cosmic-navy) 0%, var(--deep-blue) 100%);
}

.page-inner {
    max-width: 900px;
    margin: 0 auto;
}

.page-heading {
    font-family: 'Righteous', cursive;
    font-size: clamp(2rem, 6vw, 3rem);
    color: var(--solar-gold);
    text-align: center;
    margin-bottom: 2.5rem;
}

.info-block {
    background: rgba(255, 159, 28, 0.05);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--sunset-orange);
}

.info-block h2 {
    font-family: 'Righteous', cursive;
    color: var(--solar-gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.info-block p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.8rem;
}

.info-block ul {
    color: rgba(255, 255, 255, 0.8);
    padding-left: 1.5rem;
}

.info-block li {
    margin-bottom: 0.4rem;
}

@media (max-width: 768px) {
    .solar-nav {
        display: none;
    }
    
    .sun-menu-btn {
        display: block;
    }
    
    .game-display iframe {
        height: 450px;
    }
    
    .age-btns {
        flex-direction: column;
    }
    
    .solar-btns {
        flex-direction: column;
        align-items: center;
    }
}
