@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;900&family=Merriweather:wght@300;400;700&display=swap');

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

body {
    font-family: 'Merriweather', serif;
    background: linear-gradient(135deg, #0c1e4a 0%, #1e3a8a 50%, #0c1e4a 100%);
    color: #f0f0f0;
    line-height: 1.8;
    min-height: 100vh;
}

.content-wrapper {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: rgba(12, 30, 74, 0.95);
    padding: 1.8rem 0;
    box-shadow: 0 4px 20px rgba(251, 191, 36, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #fbbf24;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #fbbf24;
    text-decoration: none;
    letter-spacing: 3px;
    text-shadow: 0 2px 10px rgba(251, 191, 36, 0.5);
}

.main-menu ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-menu a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.main-menu a:hover {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
}

.menu-icon {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-icon span {
    width: 30px;
    height: 3px;
    background: #fbbf24;
    border-radius: 3px;
    transition: 0.3s;
}

main {
    padding: 4rem 0;
    min-height: calc(100vh - 200px);
}

.hero-banner {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(30, 58, 138, 0.8) 100%);
    padding: 5rem 4rem;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 4rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(251, 191, 36, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '✧';
    position: absolute;
    top: 20px;
    left: 40px;
    font-size: 3rem;
    color: #fbbf24;
    opacity: 0.3;
}

.hero-banner::after {
    content: '✧';
    position: absolute;
    bottom: 20px;
    right: 40px;
    font-size: 3rem;
    color: #fbbf24;
    opacity: 0.3;
}

h1 {
    font-family: 'Cinzel', serif;
    font-size: 4.5rem;
    color: #fbbf24;
    margin-bottom: 1.5rem;
    font-weight: 900;
    letter-spacing: 5px;
    text-shadow: 0 3px 15px rgba(251, 191, 36, 0.6);
}

h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    color: #fbbf24;
    margin: 3rem 0 2rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.hero-text {
    font-size: 1.4rem;
    color: #d0d0d0;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 1px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
}

.info-item {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.6) 0%, rgba(12, 30, 74, 0.8) 100%);
    padding: 3rem 2.5rem;
    border-radius: 15px;
    border: 2px solid rgba(251, 191, 36, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.info-item::before {
    content: '✦';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    color: #fbbf24;
    opacity: 0.5;
}

.info-item:hover {
    transform: translateY(-8px);
    border-color: #fbbf24;
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.2);
}

.info-item h3 {
    color: #fbbf24;
    font-size: 1.7rem;
    margin-bottom: 1.5rem;
    font-family: 'Cinzel', serif;
}

.info-item p {
    line-height: 2;
    font-size: 1.05rem;
}

.game-container {
    background: rgba(0, 0, 0, 0.4);
    padding: 3rem;
    border-radius: 20px;
    margin: 4rem 0;
    border: 3px solid #fbbf24;
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.3);
}

.game-container iframe {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 10px;
}

.content-area {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.5) 0%, rgba(12, 30, 74, 0.7) 100%);
    padding: 3.5rem 3rem;
    border-radius: 15px;
    margin: 3rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border-left: 6px solid #fbbf24;
}

.content-area p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 2.1;
}

.content-area ul {
    margin-left: 2.5rem;
    margin-bottom: 2rem;
}

.content-area li {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

footer {
    background: rgba(12, 30, 74, 0.95);
    padding: 3rem 0;
    margin-top: 5rem;
    border-top: 2px solid #fbbf24;
}

.footer-content {
    text-align: center;
}

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

.footer-links a {
    color: #fbbf24;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    font-family: 'Cinzel', serif;
    letter-spacing: 1px;
}

.footer-links a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

.age-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-modal.active {
    display: flex;
}

.age-modal-inner {
    background: linear-gradient(135deg, #1e3a8a 0%, #0c1e4a 100%);
    padding: 4rem 3.5rem;
    border-radius: 20px;
    text-align: center;
    max-width: 650px;
    border: 4px solid #fbbf24;
    box-shadow: 0 0 60px rgba(251, 191, 36, 0.4);
    position: relative;
}

.age-modal-inner::before {
    content: '✧';
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 2rem;
    color: #fbbf24;
    opacity: 0.6;
}

.age-modal-inner::after {
    content: '✧';
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: #fbbf24;
    opacity: 0.6;
}

.age-modal-inner h2 {
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.age-modal-inner p {
    margin-bottom: 2.5rem;
    font-size: 1.15rem;
    line-height: 1.9;
}

.age-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.age-btn {
    padding: 1.3rem 4rem;
    font-size: 1.2rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s ease;
    font-family: 'Cinzel', serif;
    letter-spacing: 1px;
}

.age-btn.confirm {
    background: #fbbf24;
    color: #0c1e4a;
}

.age-btn.confirm:hover {
    background: #fcd34d;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.age-btn.reject {
    background: #8b0000;
    color: #fff;
}

.age-btn.reject:hover {
    background: #a00000;
}

@media (max-width: 768px) {
    .menu-icon {
        display: flex;
    }

    .main-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: rgba(12, 30, 74, 0.98);
        transition: right 0.3s ease;
        padding: 6rem 2rem;
        border-left: 2px solid #fbbf24;
    }

    .main-menu.visible {
        right: 0;
    }

    .main-menu ul {
        flex-direction: column;
        gap: 2rem;
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .hero-banner {
        padding: 3rem 2rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .game-container iframe {
        height: 500px;
    }

    .content-area {
        padding: 2.5rem 2rem;
    }

    .age-modal-inner {
        margin: 1rem;
        padding: 3rem 2rem;
    }

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