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

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(to bottom, #ff9a76, #ff6b9d, #c06c84);
    color: #fff;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

header {
    padding: 2rem 0;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.site-logo {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 1.5rem;
}

.logo-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: #fff;
    font-size: 2.5rem;
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.logo-emoji {
    font-size: 3rem;
}

nav {
    position: relative;
}

.mobile-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

nav a {
    color: #fff;
    text-decoration: none;
    padding: 0.75rem 1.75rem;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.15);
    transition: all 0.3s;
    font-weight: 600;
    display: block;
}

nav a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

main {
    padding: 3rem 0;
}

.hero-section {
    text-align: center;
    padding: 4rem 0;
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.4);
    font-weight: 900;
}

.hero-section .subtitle {
    font-size: 1.4rem;
    opacity: 0.95;
    font-weight: 500;
}

.important-notice {
    background: rgba(255, 255, 255, 0.95);
    color: #c06c84;
    padding: 2.5rem;
    border-radius: 20px;
    margin: 3rem auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    max-width: 900px;
}

.important-notice h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #ff6b9d;
}

.important-notice ul {
    list-style: none;
    text-align: left;
}

.important-notice li {
    padding: 0.75rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(192, 108, 132, 0.2);
}

.important-notice li:last-child {
    border-bottom: none;
}

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

.benefit-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s;
}

.benefit-item:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.25);
}

.benefit-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.benefit-item p {
    line-height: 1.7;
    opacity: 0.95;
}

.game-area {
    background: rgba(255, 255, 255, 0.2);
    padding: 3rem;
    border-radius: 25px;
    margin: 4rem auto;
    text-align: center;
    max-width: 1000px;
    backdrop-filter: blur(10px);
}

.game-area h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
}

.game-area iframe {
    width: 100%;
    max-width: 850px;
    height: 600px;
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.text-content {
    background: rgba(255, 255, 255, 0.2);
    padding: 3rem;
    border-radius: 25px;
    margin: 3rem auto;
    max-width: 900px;
    backdrop-filter: blur(10px);
    line-height: 1.9;
}

.text-content h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
}

.text-content h2 {
    font-size: 2rem;
    margin: 2.5rem 0 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.text-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.text-content ul,
.text-content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.text-content li {
    margin-bottom: 0.75rem;
}

footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 3rem 0;
    margin-top: 4rem;
    text-align: center;
}

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

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.7;
}

footer p {
    opacity: 0.9;
    font-size: 0.95rem;
}

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

.modal-box {
    background: linear-gradient(135deg, #ff9a76, #ff6b9d);
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    max-width: 550px;
    margin: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-box h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
}

.modal-box p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.modal-actions button {
    padding: 1rem 2.5rem;
    font-size: 1.15rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.modal-actions button:hover {
    transform: scale(1.08);
}

.accept-btn {
    background: #4caf50;
    color: #fff;
}

.reject-btn {
    background: #f44336;
    color: #fff;
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    nav ul {
        display: none;
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    nav ul.show {
        display: flex;
    }

    .hero-section h1 {
        font-size: 2.3rem;
    }

    .hero-section .subtitle {
        font-size: 1.1rem;
    }

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

    .game-area iframe {
        height: 400px;
    }

    .text-content {
        padding: 2rem;
    }

    .text-content h1 {
        font-size: 2rem;
    }

    .modal-box {
        padding: 2rem;
    }
}
