@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
    --crimson: #dc143c;
    --deep-black: #0d0d0d;
    --charcoal: #1a1a1a;
    --silver: #c0c0c0;
    --pearl: #f8f6f0;
    --gold-trim: #b8860b;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--deep-black);
    color: var(--text-primary);
    min-height: 100vh;
    line-height: 1.7;
}

.header {
    background: linear-gradient(180deg, rgba(13, 13, 13, 0.98) 0%, rgba(13, 13, 13, 0.9) 100%);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(220, 20, 60, 0.3);
}

.header-wrap {
    max-width: 1500px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-mark {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-symbol {
    width: 48px;
    height: 48px;
    background: var(--crimson);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
    font-size: 1.6rem;
    color: var(--pearl);
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
}

.brand-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--pearl);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.menu-trigger {
    display: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.menu-trigger span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--crimson);
    margin: 6px 0;
    transition: 0.3s;
}

.menu-trigger.active span:first-child {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-trigger.active span:nth-child(2) {
    opacity: 0;
}

.menu-trigger.active span:last-child {
    transform: rotate(-45deg) translate(6px, -6px);
}

.navigation ul {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.navigation a {
    color: var(--silver);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.navigation a:hover {
    color: var(--crimson);
}

main {
    padding-top: 85px;
}

.landing {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: 
        linear-gradient(135deg, rgba(220, 20, 60, 0.1) 0%, transparent 50%),
        linear-gradient(225deg, rgba(184, 134, 11, 0.1) 0%, transparent 50%),
        var(--deep-black);
    padding: 4rem 2rem;
}

.landing-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.landing h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--pearl);
    line-height: 1.1;
}

.landing h1 em {
    color: var(--crimson);
    font-style: normal;
}

.landing-text {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.action-btn {
    display: inline-block;
    background: var(--crimson);
    color: var(--pearl);
    padding: 1.2rem 3.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
    border: none;
}

.action-btn:hover {
    background: #b8102f;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.4);
}

.highlights {
    background: var(--charcoal);
    padding: 5rem 2rem;
}

.highlights-row {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.highlight-item {
    padding: 3rem;
    text-align: center;
    border-right: 1px solid rgba(192, 192, 192, 0.1);
}

.highlight-item:last-child {
    border-right: none;
}

.highlight-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.highlight-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--pearl);
    margin-bottom: 1rem;
}

.highlight-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.game-display {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.display-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    text-align: center;
    color: var(--pearl);
    margin-bottom: 1rem;
}

.display-subheading {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.game-window {
    max-width: 1050px;
    margin: 0 auto;
    border: 1px solid var(--crimson);
    box-shadow: 0 0 40px rgba(220, 20, 60, 0.2);
}

.game-window iframe {
    width: 100%;
    height: 650px;
    border: none;
    display: block;
}

.numbers-band {
    background: var(--crimson);
    padding: 3.5rem 2rem;
}

.numbers-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.number-stat h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--pearl);
    margin-bottom: 0.3rem;
}

.number-stat p {
    color: rgba(248, 246, 240, 0.8);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-block {
    padding: 6rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.about-block h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: var(--pearl);
    margin-bottom: 1.5rem;
}

.about-block p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about-block ul {
    list-style: none;
    margin: 1.5rem 0;
}

.about-block li {
    color: var(--text-secondary);
    padding: 0.6rem 0 0.6rem 2rem;
    position: relative;
}

.about-block li::before {
    content: '♦';
    color: var(--crimson);
    position: absolute;
    left: 0;
}

.footer {
    background: var(--charcoal);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(220, 20, 60, 0.2);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--pearl);
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.help-links {
    margin-bottom: 2rem;
}

.help-links h4 {
    color: var(--silver);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.help-links a {
    color: var(--text-secondary);
    text-decoration: none;
    margin: 0 1.5rem;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.help-links a:hover {
    color: var(--crimson);
}

.footer-copy {
    border-top: 1px solid rgba(192, 192, 192, 0.1);
    padding-top: 2rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.verify-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13, 13, 13, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.verify-overlay.hidden {
    display: none;
}

.verify-card {
    background: var(--charcoal);
    padding: 4rem;
    text-align: center;
    max-width: 480px;
    border: 1px solid var(--crimson);
}

.verify-card h2 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--pearl);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.verify-card p {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.verify-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.verify-yes, .verify-no {
    padding: 1rem 2.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.verify-yes {
    background: var(--crimson);
    color: var(--pearl);
}

.verify-yes:hover {
    background: #b8102f;
}

.verify-no {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--text-secondary);
}

.verify-no:hover {
    border-color: var(--pearl);
    color: var(--pearl);
}

.interior-hero {
    background: 
        linear-gradient(135deg, rgba(220, 20, 60, 0.15) 0%, transparent 50%),
        var(--deep-black);
    padding: 10rem 2rem 4rem;
    text-align: center;
}

.interior-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--pearl);
    margin-bottom: 1rem;
}

.interior-hero p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.text-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.text-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--pearl);
    margin: 3rem 0 1rem;
}

.text-content h3 {
    color: var(--crimson);
    margin: 2rem 0 1rem;
    font-size: 1.1rem;
}

.text-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.text-content ul {
    list-style: none;
    margin: 1rem 0;
}

.text-content li {
    color: var(--text-secondary);
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
}

.text-content li::before {
    content: '—';
    color: var(--crimson);
    position: absolute;
    left: 0;
}

.info-panel {
    background: var(--charcoal);
    padding: 2rem;
    margin: 2rem 0;
    border-left: 3px solid var(--crimson);
}

.info-panel h3 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--pearl);
    margin-bottom: 1rem;
}

.info-panel p {
    color: var(--text-secondary);
}

@media (max-width: 992px) {
    .highlights-row {
        grid-template-columns: 1fr;
    }
    
    .highlight-item {
        border-right: none;
        border-bottom: 1px solid rgba(192, 192, 192, 0.1);
    }
    
    .highlight-item:last-child {
        border-bottom: none;
    }
    
    .numbers-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .menu-trigger {
        display: block;
    }
    
    .navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--deep-black);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: right 0.3s;
    }
    
    .navigation.open {
        right: 0;
    }
    
    .navigation ul {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .navigation a {
        font-size: 1.2rem;
    }
    
    .landing h1 {
        font-size: 2.5rem;
    }
    
    .numbers-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .game-window iframe {
        height: 500px;
    }
    
    .interior-hero h1 {
        font-size: 2.2rem;
    }
    
    .verify-card {
        margin: 1rem;
        padding: 2.5rem;
    }
    
    .verify-btns {
        flex-direction: column;
    }
    
    .help-links a {
        display: block;
        margin: 0.5rem 0;
    }
}

@media (max-width: 480px) {
    .header-wrap {
        padding: 1rem;
    }
    
    .brand-title {
        font-size: 1.4rem;
    }
    
    .brand-symbol {
        width: 38px;
        height: 38px;
    }
    
    .landing h1 {
        font-size: 2rem;
    }
    
    .action-btn {
        padding: 1rem 2rem;
    }
    
    .game-window iframe {
        height: 400px;
    }
    
    .display-heading {
        font-size: 2rem;
    }
}
