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

body {
    font-family: 'Lato', sans-serif;
    background: linear-gradient(to bottom right, #f3f4f6 0%, #e5e7eb 100%);
    color: #1f2937;
    line-height: 1.6;
}

h1, h2, h3, h4, h5 {
    font-family: 'Merriweather', serif;
}

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

.container.narrow {
    max-width: 900px;
}

/* Navigation */
.top-nav {
    background: linear-gradient(135deg, #5B21B6 0%, #7C3AED 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(91, 33, 182, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-name {
    font-family: 'Merriweather', serif;
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

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

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
}

.nav-toggle span {
    width: 30px;
    height: 3px;
    background: white;
    transition: 0.3s;
}

/* Hero */
.hero {
    position: relative;
    background: linear-gradient(135deg, #5B21B6 0%, #7C3AED 50%, #A78BFA 100%);
    color: white;
    padding: 6rem 2rem;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-text {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-btn {
    display: inline-block;
    background: #FCD34D;
    color: #1f2937;
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(252, 211, 77, 0.4);
}

.hero-btn:hover {
    background: #FDE68A;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(252, 211, 77, 0.6);
}

/* Content Wrapper */
.content-wrapper {
    padding: 3rem 0;
}

/* Intro Block */
.intro-block {
    padding: 3rem 0;
}

.intro-block h2 {
    font-size: 2.5rem;
    color: #5B21B6;
    text-align: center;
    margin-bottom: 2rem;
}

.lead {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #4B5563;
}

.intro-block p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #6B7280;
    line-height: 1.8;
}

/* Key Points */
.key-points {
    padding: 4rem 0;
    background: white;
}

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

.point-card {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.point-card:hover {
    transform: translateY(-5px);
}

.point-card.purple {
    border-left: 5px solid #5B21B6;
}

.point-card.blue {
    border-left: 5px solid #3B82F6;
}

.point-card.gold {
    border-left: 5px solid #F59E0B;
}

.point-number {
    font-family: 'Merriweather', serif;
    font-size: 3rem;
    font-weight: 900;
    color: #E5E7EB;
    margin-bottom: 1rem;
}

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

.point-card p {
    color: #6B7280;
    line-height: 1.7;
}

/* Game Showcase */
.game-showcase {
    padding: 4rem 0;
}

.showcase-header {
    text-align: center;
    margin-bottom: 3rem;
}

.showcase-header h2 {
    font-size: 2.5rem;
    color: #5B21B6;
    margin-bottom: 1rem;
}

.showcase-header p {
    font-size: 1.1rem;
    color: #6B7280;
    max-width: 800px;
    margin: 0 auto;
}

.game-wrapper {
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(91, 33, 182, 0.2);
    border: 3px solid #7C3AED;
}

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

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

.highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 1.2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.highlight-icon {
    font-size: 2rem;
}

/* Benefits Section */
.benefits-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #F9FAFB 0%, #F3F4F6 100%);
}

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

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

.benefit {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s;
}

.benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(91, 33, 182, 0.15);
}

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

.benefit h4 {
    font-size: 1.3rem;
    color: #1f2937;
    margin-bottom: 0.8rem;
}

.benefit p {
    color: #6B7280;
    font-size: 0.95rem;
}

/* Philosophy Section */
.philosophy {
    padding: 4rem 0;
}

.philosophy-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.philosophy h2 {
    font-size: 2.5rem;
    color: #5B21B6;
    margin-bottom: 2rem;
}

.philosophy p {
    font-size: 1.05rem;
    color: #6B7280;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Responsible Gaming */
.responsible-gaming {
    background: linear-gradient(135deg, #5B21B6 0%, #7C3AED 100%);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 3rem;
}

.responsible-gaming h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: white;
}

.responsible-gaming p {
    font-size: 1.05rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Play Page */
.play-page {
    background: white;
    min-height: 80vh;
}

.page-header {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #F9FAFB 0%, #F3F4F6 100%);
    border-radius: 15px;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 3rem;
    color: #5B21B6;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.1rem;
    color: #6B7280;
}

.play-game-container {
    margin: 2rem 0;
}

.game-frame-wrapper {
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(91, 33, 182, 0.2);
    border: 3px solid #7C3AED;
}

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

.game-info-section {
    margin: 3rem 0;
}

.game-info-section h2 {
    font-size: 2rem;
    color: #5B21B6;
    text-align: center;
    margin-bottom: 2rem;
}

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

.info-block {
    background: #F9FAFB;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #7C3AED;
}

.info-block h3 {
    color: #1f2937;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.info-block p {
    color: #6B7280;
    line-height: 1.7;
}

.play-notices {
    margin: 3rem 0;
}

.play-notices h2 {
    font-size: 2rem;
    color: #5B21B6;
    text-align: center;
    margin-bottom: 2rem;
}

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

.notice-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.notice-emoji {
    font-size: 2rem;
}

/* Legal Pages */
.legal-page {
    background: white;
    padding: 3rem 0;
}

.legal-page h1 {
    color: #5B21B6;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.date-updated {
    text-align: center;
    color: #9CA3AF;
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-article {
    background: #F9FAFB;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.legal-article section {
    margin: 2.5rem 0;
}

.legal-article h2 {
    color: #5B21B6;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.legal-article p {
    color: #4B5563;
    margin: 1rem 0;
    line-height: 1.8;
}

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

.legal-article li {
    margin: 0.5rem 0;
    color: #4B5563;
}

.disclaimer-warning {
    background: #FEF3C7;
    border: 2px solid #F59E0B;
    border-radius: 12px;
    padding: 2rem;
}

.disclaimer-warning h2 {
    color: #D97706;
}

/* Footer */
.site-footer {
    background: #1f2937;
    color: #D1D5DB;
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
}

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

.footer-col h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

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

.footer-col a {
    color: #D1D5DB;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #A78BFA;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    font-size: 0.9rem;
}

/* Age Gate Modal */
.age-gate {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(8px);
}

.age-gate.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.age-gate-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    max-width: 500px;
    margin: 1rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(91, 33, 182, 0.5);
    border-top: 5px solid #7C3AED;
}

.age-gate-icon {
    margin-bottom: 1.5rem;
}

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

.age-gate-content p {
    color: #6B7280;
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.age-gate-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Lato', sans-serif;
}

.btn-primary {
    background: #5B21B6;
    color: white;
}

.btn-primary:hover {
    background: #6D28D9;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(91, 33, 182, 0.4);
}

.btn-secondary {
    background: #6B7280;
    color: white;
}

.btn-secondary:hover {
    background: #4B5563;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        background: #5B21B6;
        flex-direction: column;
        padding: 2rem;
        width: 250px;
        height: calc(100vh - 70px);
        transition: right 0.3s;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    }

    .nav-links.active {
        right: 0;
    }

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

    .game-iframe {
        height: 400px;
    }

    .game-iframe-full {
        height: 500px;
    }

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

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

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

    .game-iframe {
        height: 300px;
    }

    .game-iframe-full {
        height: 400px;
    }

    .legal-article {
        padding: 1.5rem;
    }
}
