* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background: #f9fafb;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Age Gate */
.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s, visibility 0.3s;
}

.age-gate.hidden {
    opacity: 0;
    visibility: hidden;
}

.age-gate-content {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.age-gate-icon {
    font-size: 80px;
    margin-bottom: 20px;
}

.age-gate-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #7C3AED;
}

.age-gate-content p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #6b7280;
}

.age-gate-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.age-btn {
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Outfit', sans-serif;
}

.age-yes {
    background: #7C3AED;
    color: white;
}

.age-yes:hover {
    background: #6D28D9;
    transform: translateY(-2px);
}

.age-no {
    background: #e5e7eb;
    color: #374151;
}

.age-no:hover {
    background: #d1d5db;
}

/* Header */
header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: #7C3AED;
    text-decoration: none;
}

nav {
    display: flex;
    gap: 35px;
}

nav a {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 16px;
}

nav a:hover {
    color: #7C3AED;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #7C3AED;
    border-radius: 3px;
    transition: all 0.3s;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #7C3AED 0%, #5B21B6 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: white;
    color: #7C3AED;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #7C3AED;
}

/* Info Cards */
.info-cards {
    padding: 80px 0;
}

.info-cards .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.15);
}

.card-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #7C3AED;
}

.card p {
    color: #6b7280;
    line-height: 1.7;
}

/* Notice Section */
.notice-section {
    padding: 60px 0;
    background: #f3f4f6;
}

.notice-box {
    background: white;
    padding: 40px;
    border-radius: 15px;
    border-left: 5px solid #7C3AED;
}

.notice-box h2 {
    color: #7C3AED;
    margin-bottom: 20px;
    font-size: 28px;
}

.notice-box ul {
    list-style: none;
    padding-left: 0;
}

.notice-box li {
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
    color: #374151;
}

.notice-box li:last-child {
    border-bottom: none;
}

/* Game Section */
.game-section {
    padding: 80px 0;
}

.game-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 15px;
    color: #1f2937;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 50px;
}

.game-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.game-frame {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 10px;
}

.game-note {
    text-align: center;
    margin-top: 25px;
    padding: 20px;
    background: #FEF3C7;
    border-radius: 10px;
    color: #92400E;
}

/* Features */
.features {
    padding: 80px 0;
    background: #f9fafb;
}

.features h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
    color: #1f2937;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.feature-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #7C3AED;
}

.feature-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* About Section */
.about-section {
    padding: 80px 0;
}

.about-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1f2937;
}

.about-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
}

/* Play Page */
.play-hero {
    background: linear-gradient(135deg, #7C3AED 0%, #5B21B6 100%);
    color: white;
    padding: 70px 0;
    text-align: center;
}

.play-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.play-hero p {
    font-size: 18px;
    opacity: 0.95;
}

.game-play-section {
    padding: 60px 0;
}

.game-info-box {
    background: white;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.game-info-box h2 {
    color: #7C3AED;
    margin-bottom: 30px;
    font-size: 28px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.info-item strong {
    display: block;
    color: #1f2937;
    margin-bottom: 8px;
    font-size: 18px;
}

.info-item p {
    color: #6b7280;
    line-height: 1.6;
}

.game-container-full {
    max-width: 1200px;
    margin: 0 auto 40px;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.game-frame-full {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 10px;
}

.play-notice {
    text-align: center;
    padding: 25px;
    background: #EDE9FE;
    border-radius: 10px;
    color: #5B21B6;
    font-size: 16px;
}

/* Tips Section */
.tips-section {
    padding: 60px 0;
    background: #f9fafb;
}

.tips-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #1f2937;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.tip-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.tip-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #7C3AED;
}

.tip-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Legal Pages */
.legal-header {
    background: linear-gradient(135deg, #7C3AED 0%, #5B21B6 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.legal-header h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.legal-updated {
    font-size: 16px;
    opacity: 0.9;
}

.legal-content {
    padding: 60px 0;
}

.legal-text {
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    max-width: 1000px;
    margin: 0 auto;
}

.legal-text h2 {
    color: #7C3AED;
    font-size: 26px;
    margin-top: 35px;
    margin-bottom: 15px;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text p {
    margin-bottom: 15px;
    color: #4b5563;
    line-height: 1.8;
}

.legal-text ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-text li {
    margin-bottom: 10px;
    color: #4b5563;
    line-height: 1.7;
}

.legal-notice-box {
    background: #EDE9FE;
    padding: 30px;
    border-radius: 10px;
    margin-top: 40px;
    border-left: 4px solid #7C3AED;
}

.legal-notice-box h3 {
    color: #5B21B6;
    margin-bottom: 15px;
    font-size: 22px;
}

.legal-notice-box p {
    color: #5B21B6;
    font-weight: 500;
}

.legal-notice-box ul {
    margin-top: 15px;
}

/* Footer */
footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: #7C3AED;
    font-size: 18px;
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #7C3AED;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 30px;
    text-align: center;
    color: #9ca3af;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transform: translateX(-100%);
        transition: transform 0.3s;
        gap: 0;
    }
    
    nav.active {
        transform: translateX(0);
    }
    
    nav a {
        padding: 15px 0;
        border-bottom: 1px solid #e5e7eb;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .game-frame {
        height: 450px;
    }
    
    .game-frame-full {
        height: 500px;
    }
    
    .legal-text {
        padding: 30px 20px;
    }
    
    .age-gate-content {
        margin: 20px;
        padding: 30px 20px;
    }
    
    .age-gate-buttons {
        flex-direction: column;
    }
    
    .age-btn {
        width: 100%;
    }
}
