* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background: linear-gradient(135deg, #1a0b2e 0%, #2d1b4e 50%, #1a0b2e 100%);
    color: #e8dcc4;
    line-height: 1.6;
    min-height: 100vh;
}

.age-verify-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 5, 26, 0.98);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.age-verify-overlay.hidden {
    display: none;
}

.age-verify-box {
    background: linear-gradient(135deg, #2d1b4e 0%, #3d2560 100%);
    border: 3px solid #d4af37;
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.verify-icon {
    font-size: 80px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.age-verify-box h2 {
    font-family: 'Cinzel', serif;
    color: #d4af37;
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 900;
}

.age-verify-box p {
    margin-bottom: 15px;
    font-size: 16px;
    color: #e8dcc4;
}

.verify-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.verify-btn {
    padding: 15px 35px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cinzel', serif;
    flex: 1;
    min-width: 150px;
}

.yes-btn {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a0b2e;
}

.yes-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

.no-btn {
    background: #555;
    color: #fff;
}

.no-btn:hover {
    background: #777;
}

header {
    background: rgba(13, 5, 26, 0.95);
    border-bottom: 2px solid #d4af37;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Cinzel', serif;
    font-size: 28px;
    font-weight: 900;
    color: #d4af37;
    text-decoration: none;
}

.logo-icon {
    font-size: 36px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background: #d4af37;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: #e8dcc4;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0;
}

nav a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s ease;
}

nav a:hover {
    color: #d4af37;
}

nav a:hover:after {
    width: 100%;
}

main {
    min-height: calc(100vh - 80px);
}

.hero {
    padding: 100px 30px;
    text-align: center;
    background: linear-gradient(180deg, rgba(13, 5, 26, 0.8) 0%, rgba(45, 27, 78, 0.6) 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="pattern" x="0" y="0" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(212,175,55,0.2)"/></pattern></defs><rect width="1200" height="600" fill="url(%23pattern)"/></svg>');
    background-size: cover;
    background-position: center;
}

.hero-content h1 {
    font-family: 'Cinzel', serif;
    font-size: 64px;
    font-weight: 900;
    color: #d4af37;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(212, 175, 55, 0.5);
}

.hero-subtitle {
    font-size: 22px;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #e8dcc4;
}

.hero-badges {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    background: rgba(212, 175, 55, 0.15);
    border: 2px solid #d4af37;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 30px;
}

h2 {
    font-family: 'Cinzel', serif;
    font-size: 42px;
    color: #d4af37;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.info-section {
    background: rgba(45, 27, 78, 0.4);
}

.info-section p {
    font-size: 18px;
    margin-bottom: 25px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.notice-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.notice-box {
    background: linear-gradient(135deg, rgba(45, 27, 78, 0.8) 0%, rgba(61, 37, 96, 0.8) 100%);
    border: 2px solid #d4af37;
    border-radius: 15px;
    padding: 35px;
    text-align: center;
    transition: transform 0.3s ease;
}

.notice-box:hover {
    transform: translateY(-5px);
}

.notice-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.notice-box h3 {
    font-family: 'Cinzel', serif;
    color: #d4af37;
    font-size: 22px;
    margin-bottom: 15px;
}

.notice-box p {
    font-size: 16px;
}

.game-section {
    background: rgba(13, 5, 26, 0.6);
}

.game-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
}

.game-container {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    background: #000;
    border: 3px solid #d4af37;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

.game-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.game-note {
    text-align: center;
    margin-top: 25px;
    font-style: italic;
}

.game-note a {
    color: #d4af37;
    text-decoration: underline;
}

.features-section {
    background: rgba(45, 27, 78, 0.4);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: linear-gradient(135deg, rgba(13, 5, 26, 0.8) 0%, rgba(45, 27, 78, 0.8) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: #d4af37;
    transform: translateY(-5px);
}

.feature-emoji {
    font-size: 50px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-family: 'Cinzel', serif;
    color: #d4af37;
    font-size: 20px;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 15px;
}

.responsible-section {
    background: rgba(13, 5, 26, 0.6);
}

.responsible-section p {
    text-align: center;
    font-size: 17px;
    max-width: 900px;
    margin: 0 auto 20px;
}

footer {
    background: rgba(13, 5, 26, 0.98);
    border-top: 2px solid #d4af37;
    padding: 50px 30px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-weight: 900;
    color: #d4af37;
}

.footer-brand p {
    color: #e8dcc4;
    font-style: italic;
}

footer h4 {
    font-family: 'Cinzel', serif;
    color: #d4af37;
    margin-bottom: 15px;
    font-size: 18px;
}

footer ul {
    list-style: none;
}

footer ul li {
    margin-bottom: 10px;
}

footer a {
    color: #e8dcc4;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #d4af37;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    color: #e8dcc4;
    font-size: 14px;
}

.play-page .play-header {
    background: rgba(45, 27, 78, 0.4);
    padding: 60px 30px;
}

.play-page .play-header h1 {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    color: #d4af37;
    text-align: center;
    margin-bottom: 20px;
}

.play-page .play-header p {
    text-align: center;
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
}

.full-game-section {
    padding: 0;
    background: #000;
}

.game-frame-container {
    position: relative;
    width: 100%;
    height: 800px;
    background: #000;
}

.game-frame-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.play-info {
    background: rgba(13, 5, 26, 0.6);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.info-item {
    background: rgba(45, 27, 78, 0.6);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 30px;
}

.info-item h3 {
    font-family: 'Cinzel', serif;
    color: #d4af37;
    font-size: 20px;
    margin-bottom: 15px;
}

.info-item p {
    font-size: 15px;
}

.legal-page {
    background: rgba(13, 5, 26, 0.8);
}

.legal-page h1 {
    font-family: 'Cinzel', serif;
    font-size: 52px;
    color: #d4af37;
    text-align: center;
    margin-bottom: 20px;
}

.last-updated {
    text-align: center;
    font-style: italic;
    color: #d4af37;
    margin-bottom: 50px;
}

.legal-section {
    margin-bottom: 50px;
}

.legal-section h2 {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    color: #d4af37;
    margin-bottom: 20px;
    text-align: left;
}

.legal-section p {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-section ul {
    margin: 20px 0 20px 30px;
}

.legal-section li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.highlight-section {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid #d4af37;
    border-radius: 15px;
    padding: 30px;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(13, 5, 26, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        display: none;
        border-top: 2px solid #d4af37;
    }

    nav.active {
        display: flex;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    h2 {
        font-size: 32px;
    }

    .game-frame-container {
        height: 500px;
    }

    .verify-buttons {
        flex-direction: column;
    }

    .verify-btn {
        width: 100%;
    }
}
