@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Source+Sans+3:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --sunset-coral: #ff7e5f;
    --warm-peach: #feb47b;
    --dark-wine: #2c1a1d;
    --cream-blush: #fff5f0;
    --terracotta: #c45c3e;
    --dusty-rose: #d4a5a5;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans 3', sans-serif;
    background: var(--cream-blush);
    color: var(--dark-wine);
    min-height: 100vh;
    line-height: 1.75;
}

.masthead {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--sunset-coral), var(--warm-peach));
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 15px rgba(255, 126, 95, 0.3);
}

.masthead-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-wine);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-icon {
    width: 38px;
    height: 38px;
    background: var(--dark-wine);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--warm-peach);
    font-size: 1.1rem;
}

.menu-toggle {
    display: none;
    background: var(--dark-wine);
    border: none;
    color: var(--warm-peach);
    padding: 8px 14px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1.1rem;
}

.main-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.main-menu a {
    color: var(--dark-wine);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: opacity 0.2s;
}

.main-menu a:hover {
    opacity: 0.7;
}

.site-body {
    padding-top: 72px;
}

.splash {
    min-height: calc(100vh - 72px);
    background: linear-gradient(180deg, var(--cream-blush) 0%, white 100%);
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
}

.splash-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.splash-copy h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--dark-wine);
}

.splash-copy h1 em {
    color: var(--sunset-coral);
    font-style: normal;
}

.splash-copy p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: var(--terracotta);
}

.action-link {
    display: inline-block;
    background: linear-gradient(135deg, var(--sunset-coral), var(--warm-peach));
    color: var(--dark-wine);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.action-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 126, 95, 0.4);
}

.splash-cards {
    display: grid;
    gap: 1.2rem;
}

.splash-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 5px solid var(--sunset-coral);
    box-shadow: 0 4px 15px rgba(44, 26, 29, 0.08);
}

.splash-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--dark-wine);
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
}

.splash-card p {
    color: var(--terracotta);
    font-size: 0.95rem;
}

.play-area {
    padding: 5rem 2rem;
    background: white;
}

.area-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--dark-wine);
}

.area-heading em {
    color: var(--sunset-coral);
    font-style: normal;
}

.game-holder {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--cream-blush);
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid var(--dusty-rose);
}

.game-holder iframe {
    width: 100%;
    height: 640px;
    border: none;
    display: block;
}

.highlights {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--sunset-coral) 0%, var(--warm-peach) 100%);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.highlight-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.highlight-emoji {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.highlight-box h4 {
    font-family: 'Playfair Display', serif;
    color: var(--dark-wine);
    margin-bottom: 0.5rem;
}

.highlight-box p {
    color: var(--terracotta);
    font-size: 0.9rem;
}

.narrative {
    padding: 5rem 2rem;
    background: var(--cream-blush);
}

.narrative-inner {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.narrative-inner p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: var(--terracotta);
}

.basement {
    background: var(--dark-wine);
    color: var(--cream-blush);
    padding: 3rem 2rem;
}

.basement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.basement-col h5 {
    font-family: 'Playfair Display', serif;
    color: var(--warm-peach);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.basement-col ul {
    list-style: none;
}

.basement-col li {
    margin-bottom: 0.5rem;
}

.basement-col a {
    color: var(--dusty-rose);
    text-decoration: none;
    transition: color 0.2s;
}

.basement-col a:hover {
    color: var(--warm-peach);
}

.basement-col p {
    color: var(--dusty-rose);
    font-size: 0.95rem;
}

.basement-end {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(212, 165, 165, 0.3);
    color: var(--dusty-rose);
    font-size: 0.85rem;
}

.gate-overlay {
    position: fixed;
    inset: 0;
    background: rgba(44, 26, 29, 0.97);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gate-overlay.off {
    display: none;
}

.gate-modal {
    background: linear-gradient(135deg, var(--sunset-coral), var(--warm-peach));
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 460px;
}

.gate-modal h2 {
    font-family: 'Playfair Display', serif;
    color: var(--dark-wine);
    margin-bottom: 1rem;
    font-size: 1.9rem;
}

.gate-modal p {
    color: var(--dark-wine);
    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(--dark-wine);
    color: var(--warm-peach);
}

.gate-yes:hover {
    transform: scale(1.05);
}

.gate-no {
    background: rgba(255, 255, 255, 0.3);
    color: var(--dark-wine);
}

.gate-no:hover {
    background: rgba(255, 255, 255, 0.5);
}

.inner-top {
    padding: 8rem 2rem 3rem;
    background: linear-gradient(135deg, var(--sunset-coral), var(--warm-peach));
    text-align: center;
}

.inner-top h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--dark-wine);
}

.text-block {
    padding: 3rem 2rem 5rem;
    max-width: 900px;
    margin: 0 auto;
}

.text-block h2 {
    font-family: 'Playfair Display', serif;
    color: var(--sunset-coral);
    margin: 2.5rem 0 1rem;
    font-size: 1.5rem;
}

.text-block p {
    color: var(--terracotta);
    margin-bottom: 1rem;
}

.text-block ul {
    color: var(--terracotta);
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.text-block li {
    margin-bottom: 0.5rem;
}

@media (max-width: 1024px) {
    .splash-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .basement-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .main-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, var(--sunset-coral), var(--warm-peach));
        flex-direction: column;
        align-items: center;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s;
    }
    
    .main-menu.visible {
        max-height: 300px;
        padding: 1rem 0;
    }
    
    .main-menu li {
        width: 100%;
        text-align: center;
    }
    
    .main-menu a {
        display: block;
        padding: 0.8rem;
    }
    
    .splash-copy h1 {
        font-size: 2.3rem;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .game-holder iframe {
        height: 420px;
    }
    
    .gate-modal {
        margin: 1rem;
        padding: 2rem;
    }
    
    .inner-top h1 {
        font-size: 2rem;
    }
}
