* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #f5f3ff;
    color: #333;
    line-height: 1.7;
}

.wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 25px;
}

.header-bar {
    background: linear-gradient(135deg, #9c27b0 0%, #7b1fa2 100%);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 997;
    box-shadow: 0 4px 15px rgba(156, 39, 176, 0.25);
}

.header-bar .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
    font-size: 2rem;
    font-weight: 900;
}

.logo-glyph {
    font-size: 2.2rem;
}

.logo-text {
    letter-spacing: 0.5px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle .line {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.menu-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 0.5rem 0;
    transition: opacity 0.3s;
    opacity: 0.9;
}

.menu-link:hover,
.menu-link.active-link {
    opacity: 1;
}

.hero-area {
    background: linear-gradient(135deg, #9c27b0 0%, #7b1fa2 100%);
    padding: 7rem 0;
    color: white;
}

.hero-box {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-box h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.hero-desc {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.hero-action {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: white;
    color: #9c27b0;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.hero-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.alerts-section {
    padding: 5rem 0;
    background: white;
}

.area-title {
    font-size: 2.8rem;
    font-weight: 900;
    text-align: center;
    color: #9c27b0;
    margin-bottom: 3rem;
}

.alerts-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.alert-card {
    background: linear-gradient(to bottom, #f5f3ff, #ffffff);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #9c27b0;
    transition: transform 0.3s;
}

.alert-card:hover {
    transform: translateY(-8px);
}

.alert-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.alert-card h3 {
    color: #9c27b0;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.alert-card p {
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-platform {
    padding: 5rem 0;
    background: #f5f3ff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text-column h2 {
    font-size: 2.8rem;
    font-weight: 900;
    color: #9c27b0;
    margin-bottom: 2rem;
}

.about-text-column p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border-left: 5px solid #9c27b0;
    box-shadow: 0 3px 15px rgba(156, 39, 176, 0.1);
}

.highlight-symbol {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.highlight-item h4 {
    color: #9c27b0;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.highlight-item p {
    font-size: 1.05rem;
    color: #666;
}

.game-feature {
    padding: 5rem 0;
    background: white;
}

.area-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.game-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #f5f3ff;
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid #9c27b0;
    box-shadow: 0 10px 40px rgba(156, 39, 176, 0.2);
}

.game-frame {
    width: 100%;
    height: 750px;
    border: none;
    display: block;
}

.game-disclaimer {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.15rem;
    color: #666;
    font-weight: 500;
}

.advantages-area {
    padding: 5rem 0;
    background: #f5f3ff;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.advantage-item {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(156, 39, 176, 0.1);
    transition: transform 0.3s;
}

.advantage-item:hover {
    transform: translateY(-8px);
}

.advantage-icon {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 1.5rem;
}

.advantage-item h3 {
    color: #9c27b0;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.advantage-item p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #666;
}

.metrics-display {
    padding: 5rem 0;
    background: linear-gradient(135deg, #9c27b0 0%, #7b1fa2 100%);
    color: white;
}

.metrics-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 3rem;
}

.metric-block {
    text-align: center;
}

.metric-number {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 1.3rem;
    font-weight: 500;
    opacity: 0.95;
}

.final-call {
    padding: 5rem 0;
    background: white;
}

.call-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.call-content h2 {
    font-size: 2.8rem;
    font-weight: 900;
    color: #9c27b0;
    margin-bottom: 1.5rem;
}

.call-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: #666;
}

.call-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #9c27b0 0%, #7b1fa2 100%);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(156, 39, 176, 0.3);
}

.call-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(156, 39, 176, 0.5);
}

.play-main {
    padding: 4rem 0;
    background: white;
    min-height: calc(100vh - 500px);
}

.play-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.play-intro h1 {
    font-size: 3rem;
    font-weight: 900;
    color: #9c27b0;
    margin-bottom: 1rem;
}

.play-text {
    font-size: 1.2rem;
    color: #666;
}

.info-panel {
    background: #f5f3ff;
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    border: 2px solid #9c27b0;
}

.info-panel h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #9c27b0;
    margin-bottom: 2rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.info-emoji {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.info-details h3 {
    color: #9c27b0;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.info-details p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #666;
}

.play-note {
    background: #f5f3ff;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
    border-left: 5px solid #9c27b0;
    font-size: 1.1rem;
}

.legal-main {
    padding: 4rem 0;
    background: white;
    min-height: calc(100vh - 500px);
}

.legal-main h1 {
    font-size: 3rem;
    font-weight: 900;
    color: #9c27b0;
    margin-bottom: 1rem;
}

.date-stamp {
    color: #999;
    font-size: 0.95rem;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-main h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #9c27b0;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.legal-main h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #7b1fa2;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-main p,
.legal-main ul {
    font-size: 1.08rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.legal-main ul {
    padding-left: 2.5rem;
}

.legal-box,
.disclaimer-summary {
    background: #f5f3ff;
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 5px solid #9c27b0;
    margin-top: 3rem;
}

.disclaimer-summary ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.disclaimer-summary ul li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
}

.site-footer {
    background: linear-gradient(135deg, #9c27b0 0%, #7b1fa2 100%);
    color: white;
    padding: 4rem 0 1.5rem;
}

.footer-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0.95;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
    font-size: 1.05rem;
    opacity: 0.9;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.9;
}

.verify-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(156, 39, 176, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9998;
}

.verify-modal.hide {
    display: none;
}

.verify-content {
    background: white;
    padding: 3.5rem;
    border-radius: 20px;
    text-align: center;
    max-width: 550px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 3px solid #9c27b0;
}

.verify-header {
    margin-bottom: 2rem;
}

.verify-emoji {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

.verify-header h2 {
    font-size: 2.3rem;
    font-weight: 900;
    color: #9c27b0;
}

.verify-text {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.verify-prompt {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #9c27b0;
}

.verify-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn-approve,
.btn-decline {
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    border: none;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Roboto', sans-serif;
}

.btn-approve {
    background: linear-gradient(135deg, #9c27b0 0%, #7b1fa2 100%);
    color: white;
}

.btn-approve:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(156, 39, 176, 0.4);
}

.btn-decline {
    background: #f5f5f5;
    color: #333;
}

.btn-decline:hover {
    background: #e0e0e0;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        background: linear-gradient(135deg, #9c27b0 0%, #7b1fa2 100%);
        flex-direction: column;
        padding: 2.5rem;
        gap: 0;
        transition: left 0.3s;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.open {
        left: 0;
    }

    .menu-link {
        padding: 1.2rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .hero-box h1 {
        font-size: 2.5rem;
    }

    .hero-desc {
        font-size: 1.15rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .game-frame {
        height: 500px;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .metrics-row {
        flex-direction: column;
        gap: 2.5rem;
    }

    .verify-content {
        margin: 1.5rem;
        padding: 2.5rem;
    }

    .verify-buttons {
        flex-direction: column;
    }

    .btn-approve,
    .btn-decline {
        width: 100%;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .legal-main h1 {
        font-size: 2.3rem;
    }

    .legal-main h2 {
        font-size: 1.7rem;
    }

    .alerts-container {
        grid-template-columns: 1fr;
    }
}
