@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Lato:wght@300;400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background: linear-gradient(to bottom, #f5e6d3 0%, #d4b896 100%);
    color: #2c1810;
    line-height: 1.8;
    min-height: 100vh;
}

header {
    background: linear-gradient(135deg, #8b6f47 0%, #6b5638 100%);
    padding: 1.5rem 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-svg {
    width: 50px;
    height: 50px;
}

.site-name {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: #f5e6d3;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #f5e6d3;
    transition: 0.3s;
    border-radius: 3px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

nav ul li a {
    color: #f5e6d3;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 1rem;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
}

nav ul li a:hover {
    color: #ffd89b;
    border-bottom-color: #ffd89b;
}

main {
    max-width: 100%;
    padding: 0;
}

.hero-banner {
    background: linear-gradient(135deg, #a67c52 0%, #8b6f47 100%);
    padding: 5rem 3rem;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="30" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: 200px;
    opacity: 0.3;
}

.hero-banner h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: #fff;
    position: relative;
    z-index: 1;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.hero-banner p {
    font-size: 1.3rem;
    color: #f5e6d3;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    line-height: 2;
}

.content-area {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.warning-boxes {
    display: flex;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.warning-box {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-left: 6px solid #8b6f47;
    transition: transform 0.3s;
}

.warning-box:hover {
    transform: translateY(-8px);
}

.warning-box h3 {
    font-family: 'Playfair Display', serif;
    color: #8b6f47;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.warning-box p {
    color: #4a3728;
    font-size: 1.05rem;
    line-height: 1.8;
}

.game-section {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    margin: 3rem 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.game-section h2 {
    font-family: 'Playfair Display', serif;
    text-align: center;
    color: #8b6f47;
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    font-weight: 900;
}

.game-embed {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 15px;
    background: #000;
    box-shadow: inset 0 4px 12px rgba(0, 0, 0, 0.2);
}

.content-block {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    margin: 3rem 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.content-block h2 {
    font-family: 'Playfair Display', serif;
    color: #8b6f47;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    border-bottom: 3px solid #d4b896;
    padding-bottom: 1rem;
}

.content-block p {
    color: #4a3728;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 2;
}

.content-block ul {
    margin-left: 2.5rem;
    color: #4a3728;
    margin-bottom: 1.5rem;
}

.content-block ul li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

footer {
    background: linear-gradient(135deg, #6b5638 0%, #4a3728 100%);
    padding: 3rem 2rem;
    margin-top: 4rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.footer-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-navigation {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-navigation a {
    color: #f5e6d3;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    font-size: 1.05rem;
}

.footer-navigation a:hover {
    color: #ffd89b;
}

.footer-notice {
    color: #d4b896;
    font-size: 0.95rem;
    line-height: 1.8;
}

.age-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 24, 16, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-modal.active {
    display: flex;
}

.modal-box {
    background: linear-gradient(135deg, #f5e6d3 0%, #d4b896 100%);
    padding: 3.5rem;
    border-radius: 25px;
    text-align: center;
    max-width: 550px;
    margin: 1.5rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    border: 4px solid #8b6f47;
}

.modal-box h2 {
    font-family: 'Playfair Display', serif;
    color: #2c1810;
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.modal-box p {
    color: #4a3728;
    font-size: 1.15rem;
    margin-bottom: 2rem;
    line-height: 2;
}

.modal-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.modal-actions button {
    padding: 1.2rem 3rem;
    font-size: 1.15rem;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Lato', sans-serif;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-confirm {
    background: linear-gradient(135deg, #8b6f47 0%, #6b5638 100%);
    color: #fff;
}

.btn-confirm:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-decline {
    background: linear-gradient(135deg, #c44536 0%, #a03528 100%);
    color: #fff;
}

.btn-decline:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(196, 69, 54, 0.4);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: linear-gradient(135deg, #8b6f47 0%, #6b5638 100%);
        transition: right 0.3s;
        padding-top: 80px;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 2rem;
    }

    nav ul li {
        padding: 1.5rem 0;
        border-bottom: 1px solid rgba(245, 230, 211, 0.3);
    }

    .hero-banner h1 {
        font-size: 2.2rem;
    }

    .hero-banner p {
        font-size: 1.1rem;
    }

    .warning-boxes {
        flex-direction: column;
    }

    .game-embed {
        height: 500px;
    }

    .modal-box {
        padding: 2.5rem;
    }

    .modal-actions {
        flex-direction: column;
    }

    .modal-actions button {
        width: 100%;
    }
}
