@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Nunito+Sans:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --stone: #2c2418;
    --amber: #d4a574;
    --cream: #f5f0e6;
    --rust: #a65d3f;
    --shadow: #1a1510;
}

body {
    font-family: 'Nunito Sans', sans-serif;
    background: var(--stone);
    color: var(--cream);
    min-height: 100vh;
    line-height: 1.75;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

a {
    color: var(--amber);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #f0c896;
}

.top-bar {
    background: linear-gradient(180deg, var(--shadow) 0%, rgba(26, 21, 16, 0.95) 100%);
    padding: 1.2rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--amber);
}

.top-bar-content {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand svg {
    width: 48px;
    height: 48px;
}

.brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--amber);
    letter-spacing: 2px;
}

.menu-btn {
    display: none;
    background: none;
    border: 2px solid var(--amber);
    padding: 8px;
    cursor: pointer;
    width: 44px;
    height: 44px;
    position: relative;
}

.menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--amber);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.3s;
}

.menu-btn span:first-child { top: 12px; }
.menu-btn span:nth-child(2) { top: 20px; }
.menu-btn span:last-child { top: 28px; }

.menu-btn.open span:first-child {
    top: 20px;
    transform: translateX(-50%) rotate(45deg);
}

.menu-btn.open span:nth-child(2) {
    opacity: 0;
}

.menu-btn.open span:last-child {
    top: 20px;
    transform: translateX(-50%) rotate(-45deg);
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--cream);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 0.6rem 0;
    border-bottom: 2px solid transparent;
}

.nav-menu a:hover {
    color: var(--amber);
    border-bottom-color: var(--amber);
}

.page-wrapper {
    padding-top: 90px;
}

.welcome-banner {
    background: radial-gradient(ellipse at bottom, rgba(212, 165, 116, 0.15) 0%, transparent 60%);
    padding: 7rem 2rem 5rem;
    text-align: center;
}

.welcome-banner h1 {
    font-size: 3.8rem;
    color: var(--amber);
    margin-bottom: 1.8rem;
    letter-spacing: 3px;
}

.welcome-banner .intro {
    font-size: 1.25rem;
    max-width: 720px;
    margin: 0 auto 2.5rem;
    opacity: 0.9;
}

.start-btn {
    display: inline-block;
    background: var(--amber);
    color: var(--stone);
    padding: 1.1rem 3.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    border: 3px solid var(--amber);
    transition: all 0.3s;
}

.start-btn:hover {
    background: transparent;
    color: var(--amber);
}

.notice-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 1200px;
    margin: 3rem auto;
}

.notice-box {
    background: rgba(166, 93, 63, 0.12);
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid rgba(212, 165, 116, 0.25);
}

.notice-box:nth-child(2) {
    border-left: none;
    border-right: none;
}

.notice-box .symbol {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
}

.notice-box h3 {
    color: var(--amber);
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.notice-box p {
    font-size: 0.95rem;
    opacity: 0.85;
}

.game-showcase {
    padding: 5rem 2rem;
}

.game-showcase h2 {
    text-align: center;
    font-size: 2.8rem;
    color: var(--amber);
    margin-bottom: 1rem;
}

.game-showcase .tagline {
    text-align: center;
    opacity: 0.75;
    margin-bottom: 3rem;
}

.game-frame {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    background: var(--shadow);
    border: 3px solid var(--amber);
}

.game-frame iframe {
    width: 100%;
    height: 580px;
    border: none;
    display: block;
}

.info-strip {
    background: rgba(212, 165, 116, 0.08);
    border-top: 1px solid rgba(212, 165, 116, 0.2);
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
    padding: 3rem 2rem;
    margin: 4rem 0;
}

.info-strip-inner {
    display: flex;
    justify-content: space-around;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 2rem;
}

.info-item {
    text-align: center;
}

.info-item .value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--amber);
}

.info-item .desc {
    font-size: 0.85rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-content {
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.article-content h1 {
    color: var(--amber);
    font-size: 3rem;
    margin-bottom: 2rem;
    text-align: center;
}

.article-content h2 {
    color: var(--amber);
    font-size: 1.6rem;
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(212, 165, 116, 0.3);
}

.article-content p {
    margin-bottom: 1.3rem;
    opacity: 0.9;
}

.article-content ul {
    margin: 1.2rem 0 1.5rem 1.8rem;
}

.article-content li {
    margin-bottom: 0.6rem;
}

.bottom-bar {
    background: var(--shadow);
    padding: 2.5rem 2rem;
    border-top: 2px solid var(--amber);
}

.bottom-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.support-links {
    margin-bottom: 1.5rem;
}

.support-links span {
    color: var(--amber);
    font-weight: 600;
    margin-right: 1rem;
}

.support-links a {
    margin: 0 0.8rem;
    font-size: 0.9rem;
}

.bottom-bar-inner .copyright {
    font-size: 0.85rem;
    opacity: 0.6;
}

.verify-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 21, 16, 0.98);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.verify-box {
    background: var(--stone);
    border: 3px solid var(--amber);
    padding: 3.5rem;
    max-width: 460px;
    text-align: center;
}

.verify-box h2 {
    color: var(--amber);
    font-size: 2rem;
    margin-bottom: 1.2rem;
}

.verify-box p {
    margin-bottom: 2.2rem;
    opacity: 0.85;
}

.verify-btns {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
}

.verify-btns button {
    padding: 0.9rem 2.2rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-enter {
    background: var(--amber);
    border: 2px solid var(--amber);
    color: var(--stone);
}

.btn-enter:hover {
    background: transparent;
    color: var(--amber);
}

.btn-exit {
    background: transparent;
    border: 2px solid var(--cream);
    color: var(--cream);
}

.btn-exit:hover {
    background: rgba(245, 240, 230, 0.1);
}

.hidden {
    display: none !important;
}

@media (max-width: 900px) {
    .notice-boxes {
        grid-template-columns: 1fr;
    }
    
    .notice-box:nth-child(2) {
        border: 1px solid rgba(212, 165, 116, 0.25);
        border-top: none;
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    .menu-btn {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 78px;
        left: 0;
        width: 100%;
        background: var(--shadow);
        padding: 1.5rem;
        transform: translateY(-120%);
        transition: transform 0.3s;
        border-bottom: 2px solid var(--amber);
    }
    
    .nav-menu.visible {
        transform: translateY(0);
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .welcome-banner h1 {
        font-size: 2.4rem;
    }
    
    .welcome-banner .intro {
        font-size: 1.05rem;
    }
    
    .game-frame iframe {
        height: 420px;
    }
    
    .article-content h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 1.3rem;
    }
    
    .welcome-banner {
        padding: 5rem 1rem 3rem;
    }
    
    .welcome-banner h1 {
        font-size: 1.9rem;
    }
    
    .game-frame iframe {
        height: 320px;
    }
    
    .verify-box {
        margin: 1rem;
        padding: 2rem;
    }
    
    .info-strip-inner {
        gap: 1.5rem;
    }
}
