* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: #2d3748;
    line-height: 1.8;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: #1a202c;
}

.page-wrapper {
    min-height: 100vh;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.header {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 1.5rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-title {
    font-size: 2.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.navigation {
    display: flex;
    gap: 2rem;
}

.nav-item {
    color: #4a5568;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-item:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #ffffff;
}

.nav-item.active {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #ffffff;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 26px;
    height: 3px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.main {
    max-width: 100%;
}

.banner {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
    padding: 5rem 2.5rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.banner-text h2 {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 900;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.banner-text p {
    font-size: 1.4rem;
    color: #f7fafc;
    font-weight: 300;
    letter-spacing: 1px;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3.5rem 2.5rem;
}

.welcome {
    background: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    margin-bottom: 3rem;
}

.welcome h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.welcome-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.9;
    color: #4a5568;
}

.key-points {
    margin-bottom: 3rem;
}

.key-points h3 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    text-align: center;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.points-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.point-card {
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.point-card:hover {
    transform: translateY(-8px);
}

.purple {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #ffffff;
}

.teal {
    background: linear-gradient(135deg, #38b2ac, #319795);
    color: #ffffff;
}

.pink {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    color: #ffffff;
}

.point-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.point-card h4 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
    color: inherit;
}

.point-card p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.featured {
    margin-bottom: 3rem;
}

.featured h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.featured-description,
.featured-note {
    text-align: center;
    font-size: 1.1rem;
    color: #f7fafc;
    margin-bottom: 2rem;
}

.featured-note {
    font-style: italic;
    margin-top: 1.5rem;
}

.game-box {
    background: #000000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.game-display {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

.highlights {
    margin-bottom: 3rem;
}

.highlights h3 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    text-align: center;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.highlight {
    background: #ffffff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.highlight:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    transform: translateY(-5px);
}

.highlight-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.highlight h4 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight p {
    color: #4a5568;
    line-height: 1.7;
}

.mission {
    background: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.mission h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mission p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.9;
    color: #4a5568;
}

.footer {
    background: rgba(26, 32, 44, 0.9);
    padding: 3rem 2.5rem;
    margin-top: 3rem;
    backdrop-filter: blur(10px);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-message {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #e2e8f0;
}

.footer-resources {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-resources a {
    color: #f093fb;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: color 0.3s ease;
}

.footer-resources a:hover {
    color: #ffffff;
}

.dot {
    color: rgba(255, 255, 255, 0.4);
}

.footer-rights {
    font-size: 0.95rem;
    color: #a0aec0;
}

.age-check {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-check.active {
    display: flex;
}

.age-check-box {
    background: linear-gradient(135deg, #ffffff, #f7fafc);
    padding: 3.5rem;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    text-align: center;
    max-width: 550px;
    margin: 1.5rem;
    border: 4px solid transparent;
    border-image: linear-gradient(135deg, #667eea, #764ba2) 1;
}

.age-check-box h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.age-check-box p {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.age-query {
    font-weight: 700;
    font-size: 1.3rem;
    color: #1a202c;
    margin-top: 1.5rem;
}

.age-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.age-option {
    padding: 1.2rem 3rem;
    font-size: 1.15rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.age-option.yes {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #ffffff;
}

.age-option.yes:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.age-option.no {
    background: #e2e8f0;
    color: #2d3748;
}

.age-option.no:hover {
    background: #cbd5e0;
    transform: scale(1.05);
}

.page-intro {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.page-intro h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-intro p {
    font-size: 1.15rem;
    color: #4a5568;
}

.instructions {
    background: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    margin-bottom: 3rem;
}

.instructions h3 {
    font-size: 2.3rem;
    margin-bottom: 2.5rem;
    text-align: center;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.instruction-flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.instruction-step {
    text-align: center;
}

.step-marker {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.instruction-step h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #1a202c;
}

.instruction-step p {
    color: #4a5568;
    line-height: 1.6;
}

.gaming-tips {
    background: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    margin-top: 3rem;
}

.gaming-tips h3 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tips-content h4 {
    font-size: 1.6rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.tips-content ul {
    list-style: none;
    padding: 0;
}

.tips-content li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #4a5568;
    line-height: 1.7;
}

.tips-content li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: #764ba2;
    font-size: 1.2rem;
}

.legal-content .legal-sections {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.legal-item {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.legal-item h3 {
    font-size: 1.9rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-item p {
    margin-bottom: 1.2rem;
    line-height: 1.9;
    color: #4a5568;
}

.legal-item.emphasis {
    border: 3px solid transparent;
    border-image: linear-gradient(135deg, #667eea, #764ba2) 1;
    background: linear-gradient(to right, #faf5ff, #ffffff);
}

@media (max-width: 768px) {
    .navigation {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        padding: 2rem;
        gap: 0;
        transition: left 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(10px);
    }
    
    .navigation.active {
        left: 0;
    }
    
    .nav-item {
        width: 100%;
        padding: 1.2rem;
        text-align: center;
        margin: 0.5rem 0;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .banner-text h2 {
        font-size: 2.2rem;
    }
    
    .banner-text p {
        font-size: 1.1rem;
    }
    
    .points-container,
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .game-display {
        height: 400px;
    }
    
    .age-buttons {
        flex-direction: column;
    }
    
    .age-option {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .game-display {
        height: 300px;
    }
    
    .welcome,
    .mission,
    .instructions,
    .gaming-tips,
    .legal-item {
        padding: 1.5rem;
    }
}
