/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    background: linear-gradient(135deg, #FFF5E1 0%, #FFE4B5 50%, #FFDAB9 100%);
    color: #333;
    line-height: 1.7;
}

/* Age Verification Modal */
.age-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-modal.active {
    display: flex;
}

.age-modal-content {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    padding: 3rem 2.5rem;
    border-radius: 25px;
    text-align: center;
    max-width: 480px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
    animation: modalZoom 0.4s ease-out;
}

@keyframes modalZoom {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.age-icon {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
}

.age-modal-content h2 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.age-modal-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.age-disclaimer {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
}

.age-buttons {
    display: flex;
    gap: 1rem;
}

.btn-confirm, .btn-decline {
    flex: 1;
    padding: 1.1rem 1.5rem;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-confirm {
    background: white;
    color: #FF6B35;
}

.btn-confirm:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.btn-decline {
    background: rgba(0, 0, 0, 0.3);
    color: white;
}

.btn-decline:hover {
    background: rgba(0, 0, 0, 0.5);
}

/* Top Navigation */
.top-nav {
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo span {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.nav-links a {
    color: #555;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.nav-links a:hover {
    background: #FFF5E1;
    color: #FF6B35;
}

.nav-links a.active {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: white;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #FF6B35;
    margin: 4px 0;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    padding: 5rem 2rem;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-btn {
    display: inline-block;
    background: white;
    color: #FF6B35;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    padding: 4rem 2rem;
    text-align: center;
    color: white;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.8rem;
    color: #FF6B35;
    font-weight: 800;
    margin-bottom: 1rem;
}

.header-line {
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    margin: 0 auto;
    border-radius: 2px;
}

.section-description {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about-section {
    margin-bottom: 4rem;
}

.about-content {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.about-content p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

/* Key Points */
.key-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.point-card {
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    color: white;
}

.point-card:hover {
    transform: translateY(-8px);
}

.card-orange {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8B5A 100%);
}

.card-gold {
    background: linear-gradient(135deg, #F7931E 0%, #FFB347 100%);
}

.card-amber {
    background: linear-gradient(135deg, #FFA500 0%, #FFB84D 100%);
}

.point-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.point-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.point-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0.95;
}

/* Featured Game */
.featured-game {
    margin-bottom: 4rem;
}

.game-wrapper {
    background: white;
    padding: 2rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.game-wrapper iframe {
    width: 100%;
    height: 650px;
    border-radius: 15px;
}

.game-action {
    text-align: center;
}

.action-btn {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.action-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

/* Benefits Grid */
.benefits {
    margin-bottom: 4rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.benefit-emoji {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.benefit-item h4 {
    color: #FF6B35;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.benefit-item p {
    color: #666;
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    padding: 4rem;
    border-radius: 30px;
    text-align: center;
    color: white;
    box-shadow: 0 15px 50px rgba(255, 107, 53, 0.3);
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #FF6B35;
    padding: 1.3rem 3.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Game Info */
.game-info {
    margin-bottom: 3rem;
}

.info-box {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.info-box h2 {
    color: #FF6B35;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.info-box > p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.9;
}

.info-list {
    display: grid;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.info-emoji {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.info-item h4 {
    color: #FF6B35;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.info-item p {
    color: #666;
    line-height: 1.7;
}

/* Game Player */
.game-player {
    margin-bottom: 3rem;
}

/* Reminder Section */
.reminder-section {
    margin-top: 3rem;
}

.reminder-box {
    background: linear-gradient(135deg, #FFF5E1 0%, #FFE4B5 100%);
    border-left: 5px solid #FF6B35;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.reminder-box h3 {
    color: #FF6B35;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.reminder-box p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.9;
}

/* Legal Document */
.legal-document {
    background: white;
    padding: 3.5rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.legal-block {
    margin-bottom: 3rem;
}

.legal-block:last-child {
    margin-bottom: 0;
}

.legal-block h2 {
    color: #FF6B35;
    font-size: 2rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.legal-block p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1rem;
}

.legal-block ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-block li {
    color: #555;
    line-height: 1.9;
    margin-bottom: 0.5rem;
}

.important-block {
    background: linear-gradient(135deg, #FFF5E1 0%, #FFE4B5 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border-left: 6px solid #FF6B35;
}

.important-block h2 {
    color: #D84315;
}

/* Footer */
.footer {
    background: white;
    margin-top: 4rem;
    padding: 3rem 2rem 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: #FF6B35;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-col p {
    color: #666;
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-col a:hover {
    color: #FF6B35;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 2px solid #f5f5f5;
    text-align: center;
    color: #888;
    font-size: 0.95rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        padding: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .game-wrapper iframe {
        height: 450px;
    }

    .container {
        padding: 2rem 1.5rem;
    }

    .about-content,
    .info-box,
    .legal-document {
        padding: 2rem;
    }

    .key-points,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .age-buttons {
        flex-direction: column;
    }

    .cta-section {
        padding: 3rem 2rem;
    }

    .cta-section h2 {
        font-size: 2.2rem;
    }
}
