* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(135deg, #2d1b4e 0%, #1a0f2e 50%, #0d0520 100%);
    color: #e8e4f0;
    line-height: 1.7;
    min-height: 100vh;
}

.topnav {
    background: rgba(20, 10, 35, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #b794f6;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: #e8e4f0;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

.nav-links a:hover,
.nav-links a.link-active {
    color: #b794f6;
    background: rgba(183, 148, 246, 0.1);
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 5px;
}

.nav-hamburger span {
    width: 28px;
    height: 3px;
    background: #b794f6;
    border-radius: 3px;
    transition: 0.3s;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.hero-section {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(183, 148, 246, 0.15) 0%, rgba(109, 40, 217, 0.1) 100%);
    border-radius: 20px;
    margin-bottom: 4rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.hero-inner h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: #b794f6;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.4rem;
    color: #d0c5e0;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.info-card {
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-8px);
}

.info-card.purple {
    background: linear-gradient(135deg, #6d28d9 0%, #5b21b6 100%);
}

.info-card.indigo {
    background: linear-gradient(135deg, #4c1d95 0%, #3b0764 100%);
}

.info-card.violet {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.content-block {
    background: rgba(45, 27, 78, 0.4);
    padding: 3rem;
    border-radius: 15px;
    margin: 3rem 0;
    border-left: 5px solid #b794f6;
}

.content-block h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #b794f6;
    margin-bottom: 1.5rem;
}

.content-block p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.game-display {
    margin: 4rem 0;
}

.game-display h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #b794f6;
    text-align: center;
    margin-bottom: 2rem;
}

.game-wrapper {
    background: #0d0520;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.game-frame {
    width: 100%;
    height: 650px;
    border: none;
    border-radius: 10px;
}

.game-notice {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 1.1rem;
    color: #b794f6;
}

.highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.highlight-item {
    background: rgba(45, 27, 78, 0.3);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(183, 148, 246, 0.2);
}

.highlight-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #b794f6;
    margin-bottom: 1rem;
}

.responsibility {
    background: linear-gradient(135deg, rgba(109, 40, 217, 0.15) 0%, rgba(91, 33, 182, 0.1) 100%);
}

.play-header {
    text-align: center;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
}

.play-header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #b794f6;
    margin-bottom: 1rem;
}

.play-game-area {
    margin: 3rem 0;
}

.game-box {
    background: #0d0520;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.game-frame-full {
    width: 100%;
    height: 750px;
    border: none;
    border-radius: 10px;
}

.play-info-grid {
    margin: 4rem 0;
}

.play-info-grid h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #b794f6;
    text-align: center;
    margin-bottom: 2rem;
}

.play-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.play-card {
    background: rgba(45, 27, 78, 0.4);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #b794f6;
}

.play-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #b794f6;
    margin-bottom: 1rem;
}

.tips-section {
    background: rgba(45, 27, 78, 0.4);
    padding: 3rem;
    border-radius: 15px;
    margin: 3rem 0;
}

.tips-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #b794f6;
    margin-bottom: 2rem;
}

.tips-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tips-list li {
    padding: 1rem;
    background: rgba(183, 148, 246, 0.1);
    border-radius: 8px;
    font-size: 1.1rem;
}

.legal-doc {
    background: rgba(45, 27, 78, 0.4);
    padding: 3rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.legal-doc h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #b794f6;
    margin-bottom: 1rem;
}

.legal-doc h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #b794f6;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-doc p {
    margin-bottom: 1.2rem;
    line-height: 1.9;
}

.legal-doc ul {
    margin: 1rem 0 1rem 2.5rem;
    line-height: 1.9;
}

.doc-updated {
    font-style: italic;
    color: #d0c5e0;
    margin-bottom: 2rem;
}

.site-footer {
    margin-top: 5rem;
    padding: 3rem 2rem 1rem;
    background: rgba(20, 10, 35, 0.8);
    border-top: 3px solid #b794f6;
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-block h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #b794f6;
    margin-bottom: 1rem;
}

.footer-block ul {
    list-style: none;
}

.footer-block li {
    margin: 0.5rem 0;
}

.footer-block a {
    color: #e8e4f0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-block a:hover {
    color: #b794f6;
}

.footer-bar {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(183, 148, 246, 0.3);
    color: #d0c5e0;
}

.verify-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    backdrop-filter: blur(15px);
}

.verify-overlay.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.verify-box {
    background: linear-gradient(135deg, #2d1b4e 0%, #1a0f2e 100%);
    border: 3px solid #b794f6;
    border-radius: 20px;
    padding: 3rem;
    max-width: 500px;
    box-shadow: 0 25px 70px rgba(183, 148, 246, 0.3);
}

.verify-header {
    text-align: center;
    margin-bottom: 2rem;
}

.verify-emoji {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

.verify-box h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #b794f6;
    text-align: center;
}

.verify-box p {
    text-align: center;
    margin: 1rem 0;
    font-size: 1.1rem;
}

.verify-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.verify-buttons button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.btn-confirm {
    background: #b794f6;
    color: #0d0520;
}

.btn-confirm:hover {
    background: #9f7ae8;
    transform: scale(1.05);
}

.btn-deny {
    background: rgba(183, 148, 246, 0.2);
    color: #e8e4f0;
    border: 2px solid rgba(183, 148, 246, 0.5);
}

.btn-deny:hover {
    background: rgba(183, 148, 246, 0.3);
}

@media (max-width: 768px) {
    .nav-hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(20, 10, 35, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        padding: 2rem 0;
        gap: 0.5rem;
    }

    .nav-links.active {
        left: 0;
    }

    .hero-inner h1 {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .game-frame {
        height: 500px;
    }

    .game-frame-full {
        height: 550px;
    }

    .verify-box {
        margin: 1rem;
        padding: 2rem;
    }

    .verify-buttons {
        flex-direction: column;
    }

    .container {
        padding: 2rem 1rem;
    }

    .content-block {
        padding: 1.5rem;
    }

    .legal-doc {
        padding: 1.5rem;
    }
}
