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

:root {
    --primary-orange: #f97316;
    --dark-orange: #ea580c;
    --light-orange: #fb923c;
    --bg-dark: #18181b;
    --bg-medium: #27272a;
    --bg-light: #3f3f46;
    --text-white: #fafafa;
    --text-gray: #d4d4d8;
    --text-muted: #a1a1aa;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

.verification-overlay.active {
    display: flex;
}

.verification-panel {
    background: var(--bg-medium);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    max-width: 520px;
    width: 90%;
    text-align: center;
    box-shadow: 0 30px 60px rgba(249, 115, 22, 0.3);
    border: 3px solid var(--primary-orange);
}

.verification-badge {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
}

.verification-title {
    font-family: 'Racing Sans One', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.verification-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.verification-text {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.verification-buttons {
    display: flex;
    gap: 1rem;
}

.verify-btn {
    flex: 1;
    padding: 1.1rem 1.8rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.verify-yes {
    background: var(--primary-orange);
    color: white;
}

.verify-yes:hover {
    background: var(--dark-orange);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(249, 115, 22, 0.4);
}

.verify-no {
    background: var(--bg-light);
    color: var(--text-white);
}

.verify-no:hover {
    background: #52525b;
}

.site-header {
    background: var(--bg-medium);
    border-bottom: 3px solid var(--primary-orange);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-svg {
    flex-shrink: 0;
}

.site-logo {
    font-family: 'Racing Sans One', sans-serif;
    font-size: 2rem;
    color: var(--primary-orange);
    letter-spacing: 2px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 30px;
    height: 3px;
    background: var(--primary-orange);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.primary-nav {
    display: flex;
    gap: 1rem;
}

.nav-link {
    padding: 0.8rem 1.8rem;
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: rgba(249, 115, 22, 0.1);
    color: var(--primary-orange);
}

.nav-link.active {
    background: var(--primary-orange);
    color: white;
}

.page-content {
    flex: 1;
}

.content-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-zone {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.12) 0%, rgba(234, 88, 12, 0.08) 100%);
}

.hero-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-label {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(249, 115, 22, 0.15);
    border: 2px solid var(--primary-orange);
    border-radius: 20px;
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.hero-heading {
    font-family: 'Racing Sans One', sans-serif;
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--primary-orange);
    letter-spacing: 1px;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.action-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--primary-orange);
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 12px 32px rgba(249, 115, 22, 0.35);
}

.action-button:hover {
    background: var(--dark-orange);
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(249, 115, 22, 0.5);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.stat-icon {
    font-size: 2rem;
}

.stat-text {
    font-weight: 600;
    color: var(--text-gray);
}

.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-ring {
    position: absolute;
    border: 3px solid var(--primary-orange);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.ring-1 {
    width: 300px;
    height: 300px;
    opacity: 0.3;
}

.ring-2 {
    width: 250px;
    height: 250px;
    opacity: 0.5;
    animation-duration: 15s;
    animation-direction: reverse;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.visual-center {
    position: relative;
    width: 200px;
    height: 200px;
    background: var(--bg-medium);
    border: 4px solid var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(249, 115, 22, 0.4);
}

.center-icon {
    font-size: 5rem;
}

.intro-zone, .features-zone, .alerts-zone, .gameplay-zone, .advantages-zone {
    padding: 5rem 0;
}

.intro-header, .section-header-centered {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-family: 'Racing Sans One', sans-serif;
    font-size: 3rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: var(--primary-orange);
    margin: 0 auto;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

.intro-text-block {
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
}

.intro-text-block p {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.features-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.feature-box {
    background: var(--bg-medium);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-box:hover {
    border-color: var(--primary-orange);
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(249, 115, 22, 0.25);
}

.feature-icon-circle {
    width: 80px;
    height: 80px;
    background: rgba(249, 115, 22, 0.15);
    border: 3px solid var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.feature-box h3 {
    font-family: 'Racing Sans One', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-orange);
}

.feature-box p {
    color: var(--text-gray);
}

.alerts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.alert-card {
    background: var(--bg-medium);
    padding: 2.5rem;
    border-radius: 20px;
    border-left: 5px solid;
}

.alert-danger {
    border-left-color: #ef4444;
}

.alert-info {
    border-left-color: #3b82f6;
}

.alert-warning {
    border-left-color: #eab308;
}

.alert-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.alert-card h3 {
    font-family: 'Racing Sans One', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.alert-card p {
    color: var(--text-gray);
}

.gameplay-container {
    max-width: 1100px;
    margin: 0 auto;
}

.game-info-card {
    background: var(--bg-medium);
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 2.5rem;
    border: 3px solid var(--primary-orange);
}

.game-info-card h3 {
    font-family: 'Racing Sans One', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-orange);
}

.game-info-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.game-highlights {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
}

.game-highlights li {
    color: var(--text-gray);
    font-weight: 600;
}

.game-display {
    background: var(--bg-medium);
    padding: 1rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.game-display iframe {
    width: 100%;
    height: 650px;
    border: none;
    border-radius: 15px;
}

.game-notice-box {
    background: rgba(249, 115, 22, 0.12);
    padding: 1.8rem;
    border-radius: 15px;
    border: 2px solid var(--primary-orange);
    text-align: center;
    color: var(--text-gray);
}

.advantages-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.advantage-row {
    background: var(--bg-medium);
    padding: 2.5rem;
    border-radius: 20px;
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.advantage-row:hover {
    transform: translateX(12px);
    box-shadow: 0 18px 40px rgba(249, 115, 22, 0.25);
}

.advantage-num {
    font-family: 'Racing Sans One', sans-serif;
    font-size: 3.5rem;
    color: var(--primary-orange);
    min-width: 80px;
}

.advantage-content h3 {
    font-family: 'Racing Sans One', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: var(--primary-orange);
}

.advantage-content p {
    color: var(--text-gray);
}

.site-footer {
    background: var(--bg-medium);
    padding: 3rem 0 1.5rem;
    border-top: 3px solid var(--primary-orange);
    margin-top: auto;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    font-family: 'Racing Sans One', sans-serif;
    color: var(--primary-orange);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-column p {
    color: var(--text-muted);
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 0.6rem;
}

.footer-menu a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: var(--primary-orange);
}

.footer-base {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(249, 115, 22, 0.2);
    color: var(--text-muted);
}

.play-page-content {
    padding: 2rem 0;
}

.play-header-zone {
    padding: 3rem 0 2rem;
    text-align: center;
}

.play-page-title {
    font-family: 'Racing Sans One', sans-serif;
    font-size: 3.2rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.play-page-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
}

.play-game-zone {
    padding: 2rem 0;
}

.play-game-window {
    background: var(--bg-medium);
    padding: 1rem;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.play-game-window iframe {
    width: 100%;
    height: 750px;
    border: none;
    border-radius: 15px;
}

.play-info-zone {
    padding: 3rem 0;
}

.play-info-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.play-info-card {
    background: var(--bg-medium);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.play-info-card:hover {
    border-color: var(--primary-orange);
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.2);
}

.play-info-card h3 {
    font-family: 'Racing Sans One', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-orange);
}

.play-info-card p {
    color: var(--text-gray);
}

.play-alert-zone {
    padding: 3rem 0;
}

.play-alert-banner {
    background: rgba(249, 115, 22, 0.12);
    padding: 2.5rem;
    border-radius: 20px;
    border: 3px solid var(--primary-orange);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.play-alert-banner h3 {
    font-family: 'Racing Sans One', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-orange);
}

.play-alert-banner p {
    color: var(--text-gray);
}

.legal-page-content {
    padding: 3rem 0;
}

.legal-doc {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-medium);
    padding: 3rem;
    border-radius: 20px;
}

.legal-doc h1 {
    font-family: 'Racing Sans One', sans-serif;
    font-size: 3rem;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.doc-updated {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-size: 0.9rem;
}

.legal-article {
    margin-bottom: 2.5rem;
}

.legal-article h2 {
    font-family: 'Racing Sans One', sans-serif;
    font-size: 1.8rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.legal-article p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-article ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-article li {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.legal-article a {
    color: var(--primary-orange);
    text-decoration: none;
}

.legal-article a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .primary-nav {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: calc(100vh - 80px);
        background: var(--bg-medium);
        flex-direction: column;
        padding: 2rem;
        transition: right 0.3s ease;
        box-shadow: -8px 0 25px rgba(0, 0, 0, 0.5);
    }

    .primary-nav.open {
        right: 0;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(9px, 9px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    .hero-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-heading {
        font-size: 2.5rem;
    }

    .hero-visual {
        height: 300px;
    }

    .ring-1 {
        width: 200px;
        height: 200px;
    }

    .ring-2 {
        width: 160px;
        height: 160px;
    }

    .visual-center {
        width: 120px;
        height: 120px;
    }

    .center-icon {
        font-size: 3rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .play-page-title {
        font-size: 2.2rem;
    }

    .game-display iframe {
        height: 450px;
    }

    .play-game-window iframe {
        height: 550px;
    }

    .game-highlights {
        grid-template-columns: 1fr;
    }

    .advantage-row {
        flex-direction: column;
        text-align: center;
    }

    .legal-doc {
        padding: 2rem 1.5rem;
    }

    .verification-buttons {
        flex-direction: column;
    }
}
