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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #1a1a2e;
    line-height: 1.6;
    min-height: 100vh;
}

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

/* Age Verification Modal */
.age-modal {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.age-modal.hidden {
    display: none;
}

.age-modal-content {
    background: white;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.age-modal-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #6366f1;
}

.age-modal-content p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #555;
}

.age-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.btn-agree, .btn-deny {
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.btn-agree {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
}

.btn-agree:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.4);
}

.btn-deny {
    background: #e5e7eb;
    color: #374151;
}

.btn-deny:hover {
    background: #d1d5db;
}

/* Header */
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 .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: #6366f1;
    text-decoration: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #6366f1;
    border-radius: 3px;
    transition: all 0.3s ease;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

nav a:hover {
    color: #6366f1;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #6366f1;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    backdrop-filter: blur(20px);
    margin: 40px 20px;
    border-radius: 30px;
}

.hero h1 {
    font-size: 48px;
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-badges {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    background: white;
    color: #6366f1;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
}

/* Game Section */
.game-section {
    padding: 60px 20px;
}

.game-section h2 {
    text-align: center;
    color: white;
    font-size: 36px;
    margin-bottom: 40px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.game-container {
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}

.game-container iframe {
    width: 100%;
    height: 600px;
    border-radius: 10px;
}

.game-note {
    text-align: center;
    color: white;
    font-size: 16px;
    margin-top: 20px;
}

/* Info Cards */
.info-cards {
    padding: 60px 20px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-10px);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.info-card h3 {
    color: #6366f1;
    font-size: 24px;
    margin-bottom: 15px;
}

.info-card p {
    color: #555;
    line-height: 1.8;
}

/* Notice Section */
.notice-section {
    padding: 60px 20px;
}

.notice-box {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.notice-box h2 {
    color: #6366f1;
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
}

.notice-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.notice-item strong {
    color: #6366f1;
    font-size: 18px;
    display: block;
    margin-bottom: 10px;
}

.notice-item p {
    color: #555;
    line-height: 1.8;
}

/* Features Section */
.features {
    padding: 60px 20px;
}

.features h2 {
    text-align: center;
    color: white;
    font-size: 36px;
    margin-bottom: 50px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-number {
    display: inline-block;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 14px;
}

.feature-item h3 {
    color: #6366f1;
    font-size: 22px;
    margin-bottom: 15px;
}

.feature-item p {
    color: #555;
    line-height: 1.8;
}

/* Play Page */
.play-hero {
    padding: 60px 20px;
    text-align: center;
}

.play-hero h1 {
    color: white;
    font-size: 42px;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.play-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.game-play-section {
    padding: 40px 20px 80px;
}

.game-container-full {
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    margin-bottom: 40px;
}

.game-container-full iframe {
    width: 100%;
    height: 700px;
    border-radius: 10px;
}

.game-info {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.game-info h3 {
    color: #6366f1;
    font-size: 22px;
    margin-bottom: 15px;
    margin-top: 25px;
}

.game-info h3:first-child {
    margin-top: 0;
}

.game-info p {
    color: #555;
    line-height: 1.8;
}

/* Legal Pages */
.legal-section {
    padding: 60px 20px;
}

.legal-section h1 {
    color: white;
    font-size: 42px;
    margin-bottom: 40px;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.legal-content {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.legal-intro {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.8;
    font-weight: 500;
}

.legal-content h2 {
    color: #6366f1;
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content p {
    color: #555;
    line-height: 1.9;
    margin-bottom: 20px;
}

.legal-updated {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #e5e7eb;
    color: #9ca3af;
    font-style: italic;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 50px 20px 30px;
    margin-top: 60px;
}

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

.footer-section h4 {
    color: white;
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #6366f1;
}

.footer-note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    text-align: center;
    margin-top: 20px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 80px 30px 30px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        gap: 20px;
    }
    
    nav.active {
        right: 0;
    }
    
    nav a {
        font-size: 18px;
        padding: 15px 0;
        border-bottom: 1px solid #e5e7eb;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .game-container iframe,
    .game-container-full iframe {
        height: 400px;
    }
    
    .notice-box,
    .legal-content {
        padding: 30px 20px;
    }
    
    .info-card,
    .feature-item {
        padding: 25px;
    }
    
    .card-grid,
    .feature-list {
        grid-template-columns: 1fr;
    }
}