@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Source+Sans+Pro:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --sand-gold: #d4a853;
    --desert-orange: #c75b39;
    --deep-burgundy: #4a1a2c;
    --midnight-indigo: #1a1a35;
    --cream-white: #f8f4e8;
    --warm-bronze: #8b5e3c;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    background: var(--midnight-indigo);
    color: var(--cream-white);
    line-height: 1.75;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--sand-gold);
}

a {
    color: var(--sand-gold);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--desert-orange);
}

.top-bar {
    background: linear-gradient(90deg, var(--deep-burgundy) 0%, var(--midnight-indigo) 100%);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.top-bar-inner {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.site-brand svg {
    width: 45px;
    height: 45px;
}

.site-brand span {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--sand-gold);
}

.desktop-links {
    display: flex;
    gap: 2rem;
}

.desktop-links a {
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 5px;
}

.desktop-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--sand-gold);
    transition: width 0.3s;
}

.desktop-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--sand-gold);
    border-radius: 2px;
}

.slide-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--deep-burgundy);
    z-index: 1001;
    transition: right 0.3s ease;
    padding: 5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.slide-menu.open {
    right: 0;
}

.slide-menu a {
    font-size: 1.3rem;
    font-weight: 600;
}

.slide-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--sand-gold);
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 1000;
}

.menu-overlay.visible {
    display: block;
}

.main-wrapper {
    padding-top: 80px;
}

.welcome-banner {
    background: linear-gradient(135deg, var(--deep-burgundy) 0%, var(--midnight-indigo) 100%);
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.welcome-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 0l40 40-40 40L0 40z' fill='%23d4a853' fill-opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.welcome-banner h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.welcome-banner p {
    max-width: 700px;
    margin: 0 auto 2.5rem;
    font-size: 1.15rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.play-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--sand-gold) 0%, var(--warm-bronze) 100%);
    color: var(--midnight-indigo);
    padding: 1rem 3rem;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 4px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s, box-shadow 0.3s;
}

.play-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 168, 83, 0.4);
    color: var(--midnight-indigo);
}

.info-strips {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.strip {
    background: rgba(212, 168, 83, 0.15);
    border: 1px solid var(--sand-gold);
    padding: 0.7rem 1.3rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 3px;
}

.slot-area {
    padding: 4rem 2rem;
    background: var(--midnight-indigo);
}

.slot-area h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.slot-container {
    max-width: 1300px;
    margin: 0 auto;
    background: linear-gradient(180deg, var(--deep-burgundy) 0%, #2a1020 100%);
    border: 3px solid var(--sand-gold);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(212, 168, 83, 0.2);
}

.slot-container iframe {
    width: 100%;
    height: 650px;
    border: none;
    display: block;
}

.benefits-section {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, var(--midnight-indigo) 0%, var(--deep-burgundy) 50%, var(--midnight-indigo) 100%);
}

.benefits-row {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background: rgba(26, 26, 53, 0.7);
    border-radius: 6px;
    padding: 2rem;
    border-top: 3px solid var(--sand-gold);
    transition: transform 0.3s;
}

.benefit-item:hover {
    transform: translateY(-8px);
}

.benefit-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.benefit-item p {
    opacity: 0.85;
    font-size: 0.95rem;
}

.about-area {
    padding: 5rem 2rem;
    background: var(--midnight-indigo);
}

.about-inner {
    max-width: 950px;
    margin: 0 auto;
}

.about-area h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.about-area p {
    margin-bottom: 1.3rem;
    opacity: 0.9;
}

.page-section {
    padding: 4rem 2rem;
    background: var(--midnight-indigo);
}

.page-inner {
    max-width: 900px;
    margin: 0 auto;
}

.page-section h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.page-section h2 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
}

.page-section p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.page-section ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.page-section li {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.bottom-bar {
    background: var(--deep-burgundy);
    padding: 3rem 2rem;
    border-top: 1px solid var(--sand-gold);
}

.bottom-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.bottom-nav {
    margin-bottom: 1.5rem;
}

.bottom-nav a {
    margin: 0 1rem;
    font-size: 0.9rem;
}

.support-links {
    margin-bottom: 1.5rem;
}

.support-links p {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

.support-links a {
    margin: 0 0.75rem;
    font-size: 0.85rem;
}

.footer-copy {
    font-size: 0.8rem;
    opacity: 0.5;
}

.age-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 53, 0.97);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.age-screen.gone {
    display: none;
}

.age-box {
    background: var(--deep-burgundy);
    border: 2px solid var(--sand-gold);
    border-radius: 8px;
    padding: 3rem;
    max-width: 480px;
    margin: 1rem;
    text-align: center;
}

.age-box h2 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
}

.age-box p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.age-choices {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-choice {
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.age-choice.accept {
    background: var(--sand-gold);
    color: var(--midnight-indigo);
}

.age-choice.decline {
    background: transparent;
    border: 2px solid var(--cream-white);
    color: var(--cream-white);
}

.age-choice:hover {
    transform: scale(1.05);
}

.rejected-notice {
    display: none;
    text-align: center;
}

.rejected-notice h2 {
    color: var(--desert-orange);
    margin-bottom: 1rem;
}

@media (max-width: 900px) {
    .benefits-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .desktop-links {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .welcome-banner h1 {
        font-size: 2.2rem;
    }
    
    .slot-container iframe {
        height: 420px;
    }
    
    .age-choices {
        flex-direction: column;
    }
}
