* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Exo 2', sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
}

.header-container {
    max-width: 100%;
    padding: 1.5rem 2rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #ff6b35;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff6b35;
    letter-spacing: 2px;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ff6b35;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

nav {
    display: flex;
    gap: 2rem;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s, transform 0.3s;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6b35;
    transition: width 0.3s;
}

nav a:hover {
    color: #ff6b35;
    transform: translateY(-2px);
}

nav a:hover::after {
    width: 100%;
}

main {
    width: 100%;
    max-width: 100%;
}

.hero {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
    text-align: center;
    border-bottom: 3px solid #ff6b35;
}

.hero-content h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ff6b35;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 107, 53, 0.3);
    transition: transform 0.3s, border-color 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #ff6b35;
}

.feature-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #ff6b35;
}

.important-notices {
    padding: 3rem 2rem;
    background: rgba(0, 0, 0, 0.2);
}

.notice-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
}

.notice-item {
    padding: 2rem;
    border-radius: 10px;
    border-left: 5px solid;
}

.notice-item.alert {
    background: rgba(231, 76, 60, 0.1);
    border-left-color: #e74c3c;
}

.notice-item.info {
    background: rgba(52, 152, 219, 0.1);
    border-left-color: #3498db;
}

.notice-item.warning {
    background: rgba(241, 196, 15, 0.1);
    border-left-color: #f1c40f;
}

.notice-item strong {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-family: 'Rajdhani', sans-serif;
}

.game-section {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 0.5rem;
}

.game-container {
    max-width: 1400px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #ff6b35;
}

.game-frame {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 10px;
}

.game-info {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.2rem;
    color: #ff6b35;
}

.about-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-content h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 1.5rem;
    text-align: center;
}

.about-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-box {
    background: rgba(255, 107, 53, 0.1);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #ff6b35;
}

.stat-number {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #ff6b35;
}

.stat-label {
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.how-it-works {
    padding: 4rem 2rem;
    background: rgba(0, 0, 0, 0.3);
}

.how-it-works h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    color: #ff6b35;
    text-align: center;
    margin-bottom: 3rem;
}

.steps-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.step {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 107, 53, 0.3);
    text-align: center;
}

.step-number {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ff6b35;
}

footer {
    background: rgba(0, 0, 0, 0.5);
    border-top: 3px solid #ff6b35;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-family: 'Rajdhani', sans-serif;
    color: #ff6b35;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ff6b35;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 107, 53, 0.3);
    color: rgba(255, 255, 255, 0.7);
}

.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.age-modal.hidden {
    display: none;
}

.age-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    border: 3px solid #ff6b35;
    box-shadow: 0 0 50px rgba(255, 107, 53, 0.5);
}

.age-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.age-content h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.age-content p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.age-disclaimer {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.age-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-yes,
.age-no {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.age-yes {
    background: #ff6b35;
    color: #ffffff;
}

.age-yes:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.8);
}

.age-no {
    background: #555;
    color: #ffffff;
}

.age-no:hover {
    transform: scale(1.05);
    background: #666;
}

.play-header {
    padding: 3rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
    border-bottom: 3px solid #ff6b35;
}

.play-header h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 0.5rem;
}

.play-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
}

.game-play-section {
    padding: 3rem 2rem;
}

.game-controls-info {
    max-width: 1400px;
    margin: 2rem auto 0;
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 107, 53, 0.3);
}

.game-controls-info h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem;
    color: #ff6b35;
    margin-bottom: 1.5rem;
    text-align: center;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.info-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
}

.info-item strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #ff6b35;
}

.play-reminders {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.reminder-box {
    background: rgba(255, 107, 53, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #ff6b35;
}

.reminder-box h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.8rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.reminder-box ul {
    list-style-position: inside;
    font-size: 1.1rem;
    line-height: 2;
}

.legal-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.legal-content h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 1rem;
    text-align: center;
}

.legal-date {
    text-align: center;
    font-style: italic;
    opacity: 0.7;
    margin-bottom: 3rem;
}

.legal-section {
    margin-bottom: 2.5rem;
    background: rgba(0, 0, 0, 0.2);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #ff6b35;
}

.legal-section h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.8rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.legal-section h3 {
    font-size: 1.3rem;
    color: #ff6b35;
    margin: 1.5rem 0 0.8rem;
}

.legal-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-section ul {
    margin: 1rem 0 1rem 2rem;
    line-height: 1.8;
}

.disclaimer-highlight {
    background: rgba(255, 107, 53, 0.1);
    border: 3px solid #ff6b35;
}

.large-text {
    font-size: 1.2rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s;
        gap: 1rem;
    }

    nav.active {
        left: 0;
    }

    nav a {
        font-size: 1.3rem;
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 107, 53, 0.3);
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

    .game-frame {
        height: 500px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .about-content h2 {
        font-size: 2rem;
    }

    .age-content {
        margin: 1rem;
        padding: 2rem;
    }

    .age-content h2 {
        font-size: 2rem;
    }

    .age-buttons {
        flex-direction: column;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}
