* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background: linear-gradient(135deg, #1a0033 0%, #330066 50%, #663399 100%);
    color: #f5f5f5;
    min-height: 100vh;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.age-gate.hidden {
    display: none;
}

.age-gate-content {
    background: linear-gradient(135deg, #2d0a5e 0%, #4a1a7a 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
    border: 2px solid #FFD700;
}

.age-gate-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.age-gate-content h2 {
    color: #FFD700;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.age-gate-content p {
    margin-bottom: 2rem;
    color: #ddd;
    font-size: 1.1rem;
}

.age-gate-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Lato', sans-serif;
}

.age-btn.yes {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a0033;
}

.age-btn.yes:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
}

.age-btn.no {
    background: #444;
    color: #fff;
}

.age-btn.no:hover {
    background: #666;
}

header {
    background: rgba(26, 0, 51, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: #FFD700;
    font-size: 1.8rem;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #FFD700;
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: #f5f5f5;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 1.05rem;
}

.nav-menu a:hover {
    color: #FFD700;
}

main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

.hero {
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(102, 51, 153, 0.3) 0%, rgba(51, 0, 102, 0.3) 100%);
    border-bottom: 3px solid #FFD700;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #FFD700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: #e0e0e0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a0033;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
}

.info-section {
    padding: 5rem 2rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #FFD700;
    transform: translateY(-5px);
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.info-card h3 {
    color: #FFD700;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.info-card p {
    color: #ddd;
    font-size: 1.05rem;
}

.game-section {
    padding: 5rem 2rem;
    background: rgba(0, 0, 0, 0.3);
    text-align: center;
}

.game-section h2 {
    font-size: 2.8rem;
    color: #FFD700;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.2rem;
    color: #ddd;
    margin-bottom: 3rem;
}

.game-container {
    max-width: 1000px;
    margin: 0 auto;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.game-frame {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

.features {
    padding: 5rem 2rem;
}

.features-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.features-wrapper h2 {
    font-size: 2.8rem;
    text-align: center;
    color: #FFD700;
    margin-bottom: 3rem;
}

.feature-list {
    display: grid;
    gap: 2rem;
}

.feature-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    align-items: start;
}

.feature-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFD700;
    font-family: 'Playfair Display', serif;
}

.feature-item h4 {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: #ddd;
    font-size: 1.05rem;
}

.notice-section {
    padding: 5rem 2rem;
    background: rgba(255, 215, 0, 0.1);
}

.notice-box {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.4);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid #FFD700;
}

.notice-box h3 {
    color: #FFD700;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.notice-list {
    list-style: none;
    display: grid;
    gap: 1rem;
}

.notice-list li {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    font-size: 1.1rem;
    border-left: 4px solid #FFD700;
}

.notice-list strong {
    color: #FFD700;
}

footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 4rem 2rem 2rem;
    margin-top: 5rem;
    border-top: 3px solid #FFD700;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: #FFD700;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.footer-section p {
    color: #ddd;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    display: grid;
    gap: 0.5rem;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FFD700;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
    color: #aaa;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(26, 0, 51, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .game-frame {
        height: 500px;
    }

    .feature-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .feature-number {
        text-align: center;
    }
}

.content-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.content-page h1 {
    font-size: 3rem;
    color: #FFD700;
    margin-bottom: 2rem;
    text-align: center;
}

.content-page h2 {
    font-size: 2rem;
    color: #FFD700;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.content-page h3 {
    font-size: 1.5rem;
    color: #FFD700;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.content-page p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ddd;
}

.content-page ul, .content-page ol {
    margin-bottom: 1.5rem;
    margin-left: 2rem;
    color: #ddd;
}

.content-page li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.content-page strong {
    color: #FFD700;
}

.play-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.play-header {
    text-align: center;
    margin-bottom: 3rem;
}

.play-header h1 {
    font-size: 3rem;
    color: #FFD700;
    margin-bottom: 1rem;
}

.play-note {
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid #FFD700;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.play-note h3 {
    color: #FFD700;
    margin-bottom: 1rem;
}

.play-note ul {
    list-style: none;
    display: grid;
    gap: 0.8rem;
}

.play-note li {
    font-size: 1.05rem;
}
