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

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

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

/* Header Styles */
header {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.8rem;
    font-weight: 700;
    color: #6B46C1;
    text-decoration: none;
}

nav {
    display: flex;
    gap: 2rem;
}

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

nav a:hover {
    color: #6B46C1;
}

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

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

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #6B46C1;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: white;
    padding: 4rem 0;
    text-align: center;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: 3rem;
    color: #6B46C1;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Notice Cards */
.notice-cards {
    padding: 3rem 0;
}

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

.notice-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.notice-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.notice-card .icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.notice-card h3 {
    color: #6B46C1;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

/* About Section */
.about {
    background: white;
    padding: 4rem 0;
    margin: 2rem 0;
}

.about h2 {
    color: #6B46C1;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.about p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

/* Game Section */
.game-section {
    padding: 3rem 0;
    margin: 2rem 0;
}

.game-section h2 {
    color: white;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.game-intro {
    text-align: center;
    color: white;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.game-container {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

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

/* Features Section */
.features {
    background: white;
    padding: 4rem 0;
    margin: 2rem 0;
}

.features h2 {
    color: #6B46C1;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

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

.feature-item {
    text-align: center;
    padding: 2rem;
}

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

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

/* Responsible Gaming Section */
.responsible-gaming {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem 0;
    margin: 2rem 0;
    border-radius: 15px;
}

.responsible-gaming h2 {
    color: #6B46C1;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.responsible-gaming p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #555;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Play Page Styles */
.play-header {
    background: white;
    padding: 3rem 0;
    text-align: center;
}

.play-header h1 {
    color: #6B46C1;
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.game-play-section {
    padding: 3rem 0;
}

.game-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.game-info h2 {
    color: #6B46C1;
    margin-bottom: 1rem;
}

.game-info ul {
    list-style: none;
    padding: 0;
}

.game-info li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
}

.game-container-large {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    margin-bottom: 2rem;
}

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

.game-notice {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.game-notice strong {
    color: #6B46C1;
}

/* Legal Pages */
.legal-content {
    background: white;
    padding: 4rem 0;
    margin: 2rem 0;
    border-radius: 15px;
}

.legal-content h1 {
    color: #6B46C1;
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.legal-content h2 {
    color: #6B46C1;
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content p, .legal-content li {
    color: #555;
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.last-updated {
    color: #888;
    font-style: italic;
    margin-bottom: 2rem;
}

.disclaimer-highlight {
    background: #f8f4ff;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    border-left: 5px solid #6B46C1;
}

.disclaimer-highlight h2 {
    margin-top: 0;
}

/* Footer */
footer {
    background: rgba(255, 255, 255, 0.98);
    color: #333;
    padding: 3rem 0 1rem;
    margin-top: 3rem;
}

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

.footer-section h4 {
    color: #6B46C1;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
    color: #777;
}

/* Age Gate */
.age-gate {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-gate.active {
    display: flex;
}

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

.age-gate-content h2 {
    color: #6B46C1;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.age-gate-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #555;
}

.age-gate-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-primary, .btn-secondary {
    flex: 1;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
    background: #6B46C1;
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(107, 70, 193, 0.4);
}

.btn-secondary {
    background: #e0e0e0;
    color: #333;
}

.btn-secondary:hover {
    background: #d0d0d0;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 70%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        gap: 0;
    }

    nav.active {
        right: 0;
    }

    nav a {
        padding: 1rem 0;
        border-bottom: 1px solid #eee;
        width: 100%;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .game-container iframe,
    .game-container-large iframe {
        height: 400px;
    }

    .age-gate-content {
        margin: 1rem;
        padding: 2rem;
    }

    .age-gate-buttons {
        flex-direction: column;
    }
}
