@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Lato:wght@300;400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #d4a853;
    --gold-light: #f0d78c;
    --gold-dark: #b8860b;
    --burgundy: #4a1c2b;
    --burgundy-light: #6b2c3f;
    --cream: #faf3e8;
    --dark-text: #2c1810;
}

body {
    font-family: 'Lato', sans-serif;
    background: linear-gradient(135deg, var(--burgundy) 0%, #2a1018 100%);
    color: var(--cream);
    min-height: 100vh;
    line-height: 1.75;
}

.top-bar {
    background: linear-gradient(90deg, rgba(74, 28, 43, 0.98), rgba(42, 16, 24, 0.98));
    padding: 1rem 1.5rem;
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 2px solid var(--gold);
}

.top-bar-inner {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-brand {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 2px;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: 1px solid var(--gold);
    padding: 10px 12px;
    cursor: pointer;
    border-radius: 4px;
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--gold);
    margin: 5px 0;
    transition: 0.3s;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.3rem;
}

.nav-links a {
    color: var(--cream);
    text-decoration: none;
    padding: 0.7rem 1.3rem;
    font-size: 0.95rem;
    transition: all 0.3s;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    background: var(--gold);
    color: var(--burgundy);
}

.welcome-area {
    padding: 5rem 2rem;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(212, 168, 83, 0.1) 0%, transparent 70%);
}

.welcome-inner {
    max-width: 950px;
    margin: 0 auto;
}

.welcome-area h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    color: var(--gold-light);
    font-weight: 600;
}

.welcome-area .tagline {
    font-size: 1.3rem;
    color: var(--cream);
    opacity: 0.9;
    margin-bottom: 2.5rem;
}

.important-notices {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.notice-tag {
    background: rgba(212, 168, 83, 0.15);
    border: 1px solid var(--gold-dark);
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    font-size: 0.95rem;
    color: var(--gold-light);
}

.slot-showcase {
    padding: 3rem 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.slot-frame-wrapper {
    background: linear-gradient(145deg, var(--burgundy-light), var(--burgundy));
    border-radius: 24px;
    padding: 1.5rem;
    border: 3px solid var(--gold);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.slot-frame-wrapper iframe {
    width: 100%;
    height: 620px;
    border: none;
    border-radius: 16px;
    background: #1a0a10;
}

.about-block {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, transparent, rgba(74, 28, 43, 0.5));
}

.about-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.about-block h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--gold);
}

.about-block p {
    text-align: center;
    margin-bottom: 1.5rem;
    color: rgba(250, 243, 232, 0.85);
    font-size: 1.1rem;
}

.highlights-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.highlight-box {
    background: rgba(74, 28, 43, 0.6);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(212, 168, 83, 0.3);
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}

.highlight-box:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
}

.highlight-box .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.highlight-box h3 {
    font-family: 'Playfair Display', serif;
    color: var(--gold-light);
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
}

.highlight-box p {
    text-align: center;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.bottom-bar {
    background: #1a0a10;
    padding: 3rem 2rem;
    border-top: 2px solid var(--gold-dark);
}

.bottom-bar-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.bottom-bar h4 {
    color: var(--gold);
    margin-bottom: 1.2rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
}

.support-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.support-links a {
    color: rgba(250, 243, 232, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.support-links a:hover {
    color: var(--gold-light);
}

.copyright-text {
    color: rgba(250, 243, 232, 0.5);
    font-size: 0.9rem;
}

.text-page {
    max-width: 950px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.text-page h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--gold);
    margin-bottom: 2rem;
}

.text-page h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    color: var(--gold-light);
    margin: 2.5rem 0 1rem;
}

.text-page p {
    color: rgba(250, 243, 232, 0.85);
    margin-bottom: 1.3rem;
}

.text-page ul {
    margin: 0 0 1.5rem 1.5rem;
    color: rgba(250, 243, 232, 0.8);
}

.text-page li {
    margin-bottom: 0.6rem;
}

.play-header {
    text-align: center;
    padding: 3rem 2rem 1rem;
}

.play-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.play-header p {
    color: rgba(250, 243, 232, 0.8);
    max-width: 700px;
    margin: 0 auto;
}

.verification-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 10, 16, 0.98);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.verification-box {
    background: linear-gradient(145deg, var(--burgundy), var(--burgundy-light));
    padding: 3rem;
    border-radius: 20px;
    max-width: 480px;
    text-align: center;
    border: 2px solid var(--gold);
}

.verification-box h2 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.verification-box p {
    color: var(--cream);
    margin-bottom: 1.2rem;
    opacity: 0.9;
}

.verification-box .emphasis {
    font-weight: 700;
    color: var(--gold-light);
}

.verify-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn-enter, .btn-leave {
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn-enter {
    background: linear-gradient(90deg, var(--gold-dark), var(--gold));
    color: var(--burgundy);
    border: none;
}

.btn-enter:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(212, 168, 83, 0.4);
}

.btn-leave {
    background: transparent;
    color: var(--cream);
    border: 2px solid var(--gold-dark);
}

.btn-leave:hover {
    background: rgba(212, 168, 83, 0.1);
}

.hidden {
    display: none !important;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--burgundy);
        flex-direction: column;
        padding: 1rem;
        display: none;
        border-bottom: 2px solid var(--gold-dark);
    }

    .nav-links.visible {
        display: flex;
    }

    .nav-links a {
        padding: 1rem;
        border-bottom: 1px solid rgba(212, 168, 83, 0.2);
    }

    .welcome-area h1 {
        font-size: 2.2rem;
    }

    .slot-frame-wrapper iframe {
        height: 420px;
    }

    .verification-box {
        margin: 1rem;
        padding: 2rem;
    }

    .verify-buttons {
        flex-direction: column;
    }

    .important-notices {
        flex-direction: column;
        align-items: center;
    }
}
