* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #fafafa;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 20px;
}

.top-nav {
    background: linear-gradient(to right, #ff6b35, #f7931e);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
    font-size: 26px;
    color: #fff;
}

.logo-icon {
    font-size: 30px;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.menu-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.menu-link:hover,
.menu-link.active {
    background: rgba(255, 255, 255, 0.2);
}

.hamburger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.bar {
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hero-section {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    min-height: 450px;
    display: flex;
    align-items: center;
    position: relative;
    color: #fff;
}

.hero-overlay {
    width: 100%;
}

.hero-container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-description {
    font-size: 22px;
    max-width: 750px;
    margin: 0 auto 35px;
    line-height: 1.7;
    opacity: 0.95;
}

.hero-cta {
    display: inline-block;
    background: #fff;
    color: #ff6b35;
    padding: 16px 45px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.features-section {
    padding: 80px 0;
    background: #fff;
}

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
    color: #ff6b35;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 5px solid #ff6b35;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.feature-card.red-accent {
    border-top-color: #ff6b35;
}

.feature-card.orange-accent {
    border-top-color: #f7931e;
}

.feature-card.amber-accent {
    border-top-color: #ffa500;
}

.feature-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

.about-section {
    padding: 80px 0;
    background: #f7f7f7;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 40px;
    margin-bottom: 25px;
    font-weight: 700;
    color: #ff6b35;
}

.about-text p {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 20px;
    color: #555;
}

.about-image {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 15px;
    padding: 60px 40px;
    text-align: center;
    color: #fff;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.placeholder-icon {
    font-size: 80px;
    display: block;
    margin-bottom: 20px;
}

.about-image p {
    font-size: 20px;
    font-weight: 700;
}

.game-section {
    padding: 80px 0;
    background: #fff;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 45px;
}

.game-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.game-embed {
    aspect-ratio: 16/9;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 4px solid #ff6b35;
}

.game-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.game-embed.large {
    max-width: 100%;
}

.game-note {
    text-align: center;
    margin-top: 30px;
    font-style: italic;
    color: #666;
    font-size: 17px;
}

.benefits-section {
    padding: 80px 0;
    background: #f7f7f7;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: scale(1.03);
}

.benefit-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #fff;
    font-size: 24px;
    font-weight: 900;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    margin-bottom: 20px;
}

.benefit-card h4 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
    color: #333;
}

.benefit-card p {
    color: #666;
    line-height: 1.8;
}

.footer {
    background: #2c2c2c;
    color: #d0d0d0;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 700;
}

.footer-column p {
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 10px;
}

.footer-list a {
    color: #d0d0d0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: #ff6b35;
}

.footer-bar {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #999;
}

.age-verification {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.age-verification.hidden {
    display: none;
}

.verification-box {
    background: #fff;
    border-radius: 15px;
    padding: 50px;
    max-width: 550px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
}

.verification-icon {
    font-size: 70px;
    margin-bottom: 25px;
}

.verification-box h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #ff6b35;
    font-weight: 700;
}

.verification-box p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #555;
    font-size: 16px;
}

.verification-info {
    background: #fff3e0;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #ff6b35;
    margin-bottom: 25px;
}

.verification-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.verify-yes,
.verify-no {
    flex: 1;
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
}

.verify-yes {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #fff;
}

.verify-yes:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.verify-no {
    background: #e0e0e0;
    color: #555;
}

.verify-no:hover {
    background: #d0d0d0;
}

.page-header {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    padding: 60px 0;
    text-align: center;
    color: #fff;
}

.page-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 20px;
    opacity: 0.95;
}

.legal-content {
    padding: 80px 0;
    background: #f7f7f7;
}

.legal-box {
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.legal-box h2 {
    font-size: 30px;
    margin-top: 35px;
    margin-bottom: 18px;
    color: #ff6b35;
    font-weight: 700;
}

.legal-box h2:first-child {
    margin-top: 0;
}

.legal-box p {
    line-height: 1.9;
    margin-bottom: 18px;
    color: #555;
    font-size: 16px;
}

.gameplay-info {
    padding: 80px 0;
    background: #fff;
}

.info-card-large {
    background: #f7f7f7;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 50px;
}

.info-card-large h2 {
    font-size: 36px;
    margin-bottom: 35px;
    color: #ff6b35;
    font-weight: 700;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 35px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-number {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #fff;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    font-weight: 900;
    font-size: 20px;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #333;
    font-weight: 700;
}

.info-content p {
    color: #666;
    line-height: 1.7;
}

.info-warning {
    background: #fff3e0;
    padding: 20px;
    border-radius: 10px;
    border-left: 5px solid #ff6b35;
    color: #d84315;
    font-size: 16px;
}

.play-area {
    padding: 0 0 80px 0;
    background: #fff;
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 75%;
        height: 100vh;
        background: linear-gradient(to bottom, #ff6b35, #f7931e);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 0;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .menu-link {
        width: 100%;
        padding: 18px 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .hamburger-btn {
        display: flex;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 18px;
    }

    .features-container {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .verification-box {
        margin: 20px;
        padding: 35px 25px;
    }

    .verification-icon {
        font-size: 60px;
    }

    .verification-box h2 {
        font-size: 26px;
    }

    .verification-buttons {
        flex-direction: column;
    }

    .legal-box {
        padding: 35px 25px;
    }

    .info-card-large {
        padding: 35px 25px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}
