* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #1a0033 0%, #330066 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 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;
}

.age-gate.hidden {
    display: none;
}

.age-gate-content {
    background: linear-gradient(135deg, #8B008B 0%, #4B0082 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 10px 50px rgba(255, 215, 0, 0.3);
    border: 3px solid #FFD700;
}

.age-gate-content h2 {
    color: #FFD700;
    font-size: 2em;
    margin-bottom: 20px;
}

.age-gate-content p {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.age-gate-buttons {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: #FFD700;
    color: #8B008B;
}

.btn-primary:hover {
    background: #FFA500;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background: #666;
    color: #fff;
}

.btn-secondary:hover {
    background: #555;
}

/* Header & Navigation */
header {
    background: rgba(139, 0, 139, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.navbar {
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-name {
    font-size: 1.8em;
    font-weight: 700;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #FFD700;
    background: rgba(255, 215, 0, 0.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #FFD700;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(139, 0, 139, 0.9), rgba(75, 0, 130, 0.9));
    padding: 80px 20px;
    text-align: center;
    border-bottom: 4px solid #FFD700;
}

.hero h1 {
    font-size: 3em;
    color: #FFD700;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.4em;
    color: #fff;
    margin-bottom: 30px;
}

.hero-badges {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    border: 2px solid #FFD700;
}

/* About Section */
.about {
    background: #fff;
    padding: 80px 20px;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.about h2 {
    font-size: 2.5em;
    color: #8B008B;
    margin-bottom: 25px;
}

.about p {
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #555;
}

.info-boxes {
    display: grid;
    gap: 20px;
    margin-top: 40px;
}

.info-box {
    background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid #8B008B;
}

.info-box h3 {
    color: #8B008B;
    margin-bottom: 10px;
    font-size: 1.3em;
}

.about-image {
    background: linear-gradient(135deg, #8B008B, #4B0082);
    padding: 30px;
    border-radius: 20px;
    color: #fff;
    text-align: center;
}

.game-preview {
    background: rgba(255, 215, 0, 0.1);
    padding: 40px 20px;
    border-radius: 15px;
    border: 3px dashed #FFD700;
}

.game-preview h3 {
    font-size: 2em;
    margin-bottom: 15px;
}

/* Game Section */
.game-section {
    background: linear-gradient(135deg, #f9f9f9, #fff);
    padding: 80px 20px;
}

.game-section h2 {
    text-align: center;
    font-size: 2.5em;
    color: #8B008B;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2em;
    color: #666;
    margin-bottom: 40px;
}

.game-container {
    max-width: 900px;
    margin: 0 auto 30px;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.game-frame {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

.game-info {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    color: #666;
}

/* Features Section */
.features {
    background: linear-gradient(135deg, #8B008B, #4B0082);
    padding: 80px 20px;
    color: #fff;
}

.features h2 {
    text-align: center;
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #FFD700;
}

.feature-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.feature-card h3 {
    color: #FFD700;
    margin-bottom: 15px;
    font-size: 1.5em;
}

/* Responsibility Section */
.responsibility {
    background: #fff;
    padding: 80px 20px;
}

.responsibility-content {
    max-width: 900px;
    margin: 0 auto;
}

.responsibility h2 {
    color: #8B008B;
    font-size: 2.3em;
    margin-bottom: 25px;
}

.responsibility p {
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #555;
}

.responsibility-list {
    list-style: none;
    margin: 30px 0;
}

.responsibility-list li {
    padding: 15px 20px;
    margin-bottom: 10px;
    background: #f5f5f5;
    border-left: 4px solid #8B008B;
    border-radius: 5px;
}

.responsibility-list li::before {
    content: "✓ ";
    color: #8B008B;
    font-weight: bold;
    margin-right: 10px;
}

/* Footer */
footer {
    background: #1a0033;
    color: #fff;
    padding: 60px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #FFD700;
    margin-bottom: 20px;
    font-size: 1.3em;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FFD700;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
    color: #ccc;
}

/* Play Page */
.play-hero {
    background: linear-gradient(135deg, #8B008B, #4B0082);
    padding: 60px 20px;
    text-align: center;
    color: #fff;
}

.play-hero h1 {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.game-play-section {
    background: #fff;
    padding: 60px 20px;
}

.game-wrapper {
    max-width: 1000px;
    margin: 0 auto 50px;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.game-frame-full {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

.game-instructions {
    max-width: 1000px;
    margin: 0 auto;
}

.game-instructions h2 {
    color: #8B008B;
    font-size: 2.2em;
    margin-bottom: 30px;
    text-align: center;
}

.instruction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.instruction-item {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
}

.instruction-item h3 {
    color: #8B008B;
    margin-bottom: 12px;
    font-size: 1.2em;
}

.play-reminder {
    background: linear-gradient(135deg, #8B008B, #4B0082);
    color: #fff;
    padding: 35px;
    border-radius: 15px;
    margin-top: 40px;
}

.play-reminder h3 {
    color: #FFD700;
    margin-bottom: 20px;
    font-size: 1.5em;
}

.play-reminder ul {
    list-style: none;
}

.play-reminder li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.play-reminder li::before {
    content: "⚠️";
    position: absolute;
    left: 0;
}

/* Content Pages */
.page-header {
    background: linear-gradient(135deg, #8B008B, #4B0082);
    padding: 60px 20px;
    text-align: center;
    color: #fff;
}

.page-header h1 {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-header p {
    color: #FFD700;
    font-size: 1.1em;
}

.content-section {
    background: #fff;
    padding: 60px 20px;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h2 {
    color: #8B008B;
    font-size: 2em;
    margin-top: 40px;
    margin-bottom: 20px;
}

.content-wrapper h3 {
    color: #4B0082;
    font-size: 1.5em;
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-wrapper p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.content-wrapper ul {
    margin-bottom: 20px;
    margin-left: 30px;
}

.content-wrapper li {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.8;
}

.terms-notice,
.privacy-summary,
.disclaimer-summary {
    background: linear-gradient(135deg, #f0f0f0, #e8e8e8);
    padding: 30px;
    border-radius: 15px;
    margin-top: 50px;
    border-left: 5px solid #8B008B;
}

.terms-notice h3,
.privacy-summary h3,
.disclaimer-summary h3 {
    color: #8B008B;
    margin-bottom: 15px;
    font-size: 1.5em;
}

.disclaimer-alert {
    background: linear-gradient(135deg, #8B008B, #4B0082);
    color: #fff;
    padding: 35px;
    border-radius: 15px;
    margin-bottom: 40px;
    border: 3px solid #FFD700;
}

.disclaimer-alert h2 {
    color: #FFD700 !important;
    margin-top: 0 !important;
}

.disclaimer-alert p {
    color: #fff !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(139, 0, 139, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 400px;
    }

    .hero h1 {
        font-size: 2em;
    }

    .hero-subtitle {
        font-size: 1.1em;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .game-frame {
        height: 400px;
    }

    .game-frame-full {
        height: 500px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .age-gate-content {
        padding: 25px;
        margin: 20px;
    }

    .age-gate-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.6em;
    }

    .brand-name {
        font-size: 1.4em;
    }

    .game-frame {
        height: 300px;
    }

    .game-frame-full {
        height: 400px;
    }
}
