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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #1A1A1A;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background-color: #1A1A1A;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid #FF6B35;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    color: #FF6B35;
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav a {
    color: #F5F5F5;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav a:hover,
.nav a.active {
    color: #FF6B35;
    border-bottom-color: #FF6B35;
}

.cta-button {
    background: linear-gradient(135deg, #FF6B35, #FF8A65);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.cta-button.active {
    background: #F5F5F5;
    color: #FF6B35;
    border-color: #FF6B35;
}

.hero {
    background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
    color: #F5F5F5;
    padding: 4rem 0;
    text-align: center;
}

.hero-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FF6B35;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.virtual-currency-notice {
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid #FF6B35;
    border-radius: 10px;
    padding: 1rem;
    margin: 2rem auto;
    max-width: 600px;
    color: #FF6B35;
    font-size: 1.1rem;
}

.hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B35, #FF8A65);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.welcome {
    background: #F5F5F5;
    padding: 4rem 0;
    text-align: center;
}

.welcome h2 {
    font-size: 2.5rem;
    color: #1A1A1A;
    margin-bottom: 2rem;
}

.welcome p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: #666;
}

.entertainment-notice {
    margin-top: 2rem;
}

.notice-badge {
    background: #FF6B35;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.loyalty-program {
    background: #1A1A1A;
    color: #F5F5F5;
    padding: 4rem 0;
}

.loyalty-program h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #FF6B35;
}

.loyalty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.loyalty-card {
    background: #2D2D2D;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.loyalty-card:hover {
    transform: translateY(-5px);
    border-color: #FF6B35;
}

.loyalty-card.featured {
    border-color: #FF6B35;
    background: linear-gradient(135deg, #2D2D2D, #3D3D3D);
}

.loyalty-card h3 {
    color: #FF6B35;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.loyalty-card ul {
    list-style: none;
    text-align: left;
}

.loyalty-card li {
    margin: 0.5rem 0;
    padding-left: 1rem;
    position: relative;
}

.loyalty-card li:before {
    content: "✓";
    color: #FF6B35;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.comparison {
    background: #F5F5F5;
    padding: 4rem 0;
}

.comparison h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1A1A1A;
    margin-bottom: 3rem;
}

.comparison-table {
    overflow-x: auto;
}

.comparison table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.comparison th,
.comparison td {
    padding: 1.5rem;
    text-align: left;
}

.comparison th {
    background: #1A1A1A;
    color: #F5F5F5;
    font-weight: 600;
    font-size: 1.1rem;
}

.comparison td {
    border-bottom: 1px solid #eee;
}

.comparison .check {
    color: #FF6B35;
    font-weight: 600;
}

.comparison .cross {
    color: #999;
}

.features {
    background: #1A1A1A;
    color: #F5F5F5;
    padding: 4rem 0;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #FF6B35;
}

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

.feature-item {
    background: #2D2D2D;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: #FF6B35;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.feature-item h3 {
    color: #FF6B35;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-item p {
    line-height: 1.6;
    color: #F5F5F5;
}

.benefits {
    background: #1A1A1A;
    color: #F5F5F5;
    padding: 4rem 0;
}

.benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #FF6B35;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: #2D2D2D;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: #FF6B35;
}

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

.benefit-card h3 {
    color: #FF6B35;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #CCC;
    line-height: 1.6;
}

.news {
    background: #F5F5F5;
    padding: 4rem 0;
}

.news h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1A1A1A;
    margin-bottom: 3rem;
}

.news-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
}

.news-item {
    display: none;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.news-item.active {
    display: block;
}

.news-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.news-content {
    padding: 2rem;
}

.news-content h3 {
    color: #1A1A1A;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.news-content p {
    color: #666;
    margin-bottom: 1rem;
}

.news-date {
    color: #FF6B35;
    font-weight: 600;
    font-size: 0.9rem;
}

.carousel-controls {
    text-align: center;
    margin-top: 2rem;
}

.carousel-btn {
    background: #FF6B35;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    margin: 0 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: #E55A2B;
    transform: scale(1.1);
}

.age-restriction {
    background: #1A1A1A;
    color: #F5F5F5;
    padding: 3rem 0;
}

.age-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid #FF6B35;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.age-icon {
    background: #FF6B35;
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.age-content h3 {
    color: #FF6B35;
    margin-bottom: 0.5rem;
}

.footer {
    background: #0D0D0D;
    color: #F5F5F5;
    padding: 3rem 0 1rem;
    border-top: 2px solid #FF6B35;
}

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

.footer-section h3,
.footer-section h4 {
    color: #FF6B35;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin: 0.5rem 0;
}

.footer-section a {
    color: #CCC;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #FF6B35;
}

.footer-disclaimer {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: #CCC;
}

.footer-disclaimer a {
    color: #FF6B35;
    text-decoration: none;
}

.legal-page {
    background: #F5F5F5;
    min-height: calc(100vh - 200px);
    padding: 4rem 0;
}

.legal-content {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    color: #1A1A1A;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.legal-content h2 {
    color: #FF6B35;
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

.legal-content h3 {
    color: #1A1A1A;
    margin: 1.5rem 0 0.5rem;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-content li {
    margin: 0.5rem 0;
}

.age-notice {
    background: #FF6B35;
    color: white;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 2rem;
}

.highlight-box {
    background: rgba(255, 107, 53, 0.1);
    border-left: 4px solid #FF6B35;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 5px;
}

.responsible-notice {
    background: #1A1A1A;
    color: #F5F5F5;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 3rem;
}

.responsible-notice a {
    color: #FF6B35;
    text-decoration: none;
}

.game-main {
    background: #F5F5F5;
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
}

.game-header {
    text-align: center;
    margin-bottom: 2rem;
}

.game-header h2 {
    color: #1A1A1A;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.game-disclaimer {
    background: #FF6B35;
    color: white;
    padding: 1rem;
    border-radius: 10px;
    display: inline-block;
}

.game-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: 600px;
}

#game-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .nav {
        order: 3;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .age-banner {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-content {
        margin: 0 20px;
        padding: 2rem;
    }
    
    .comparison table {
        font-size: 0.9rem;
    }
    
    .comparison th,
    .comparison td {
        padding: 1rem;
    }
    
    .game-container {
        height: 400px;
    }

    #game-iframe {
        min-height: 400px;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 1.7rem;
    }
    
    .welcome h2,
    .benefits h2,
    .news h2 {
        font-size: 2rem;
    }
    
    .legal-content {
        padding: 1.5rem;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }

    .game-container {
        height: 350px;
        margin: 1rem 0;
    }

    #game-iframe {
        min-height: 350px;
    }

    .game-header h2 {
        font-size: 1.5rem;
    }

    .game-disclaimer {
        padding: 1rem;
        font-size: 0.9rem;
    }
}