* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background: linear-gradient(to bottom, #f5f1e8 0%, #e8dcc4 100%);
    color: #2c2416;
    line-height: 1.8;
    min-height: 100vh;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #2c2416 0%, #4a3c28 100%);
    color: #f5f1e8;
    position: sticky;
    top: 0;
    z-index: 900;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.header-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.2rem 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.site-title {
    font-size: 2rem;
    color: #d4af37;
    font-weight: 900;
}

nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

nav a {
    color: #f5f1e8;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s;
}

nav a:hover {
    color: #d4af37;
}

nav a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: #d4af37;
    transition: 0.3s;
}

/* Welcome Banner */
.welcome-banner {
    background: linear-gradient(rgba(44, 36, 22, 0.7), rgba(44, 36, 22, 0.7)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%234a3c28" width="1200" height="400"/><circle cx="200" cy="100" r="80" fill="%23d4af37" opacity="0.1"/><circle cx="900" cy="300" r="120" fill="%23d4af37" opacity="0.1"/></svg>');
    background-size: cover;
    background-position: center;
    padding: 5rem 0;
    text-align: center;
    color: #f5f1e8;
}

.banner-overlay h2 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    color: #d4af37;
}

.banner-overlay p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Content Sections */
.content-section {
    padding: 4rem 0;
}

.intro-text h3 {
    font-size: 2.2rem;
    color: #2c2416;
    margin-bottom: 1.5rem;
    text-align: center;
}

.intro-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Key Principles */
.key-principles {
    padding: 4rem 0;
    background: rgba(212, 175, 55, 0.08);
}

.section-heading {
    font-size: 2.2rem;
    text-align: center;
    color: #2c2416;
    margin-bottom: 2.5rem;
}

.principles-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.principle-box {
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    border-top: 4px solid #d4af37;
    text-align: center;
}

.principle-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.principle-box h4 {
    font-size: 1.4rem;
    color: #2c2416;
    margin-bottom: 1rem;
}

.principle-box p {
    font-size: 1rem;
    line-height: 1.7;
}

/* Featured Experience */
.featured-experience {
    padding: 4rem 0;
}

.centered-text {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.game-embed {
    max-width: 950px;
    margin: 0 auto;
    background: #2c2416;
    border: 5px solid #d4af37;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.game-embed iframe {
    width: 100%;
    height: 650px;
    display: block;
    border: none;
}

/* About Platform */
.about-platform {
    padding: 4rem 0;
    background: rgba(212, 175, 55, 0.08);
}

.features-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-item {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-item h5 {
    font-size: 1.3rem;
    color: #d4af37;
    margin-bottom: 0.8rem;
}

.feature-item p {
    font-size: 1rem;
}

/* Responsible Entertainment */
.responsible-entertainment {
    padding: 4rem 0;
}

.responsible-entertainment h3 {
    font-size: 2.2rem;
    color: #2c2416;
    margin-bottom: 1.5rem;
    text-align: center;
}

.responsible-entertainment p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #2c2416 0%, #4a3c28 100%);
    color: #f5f1e8;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-column h4 {
    color: #d4af37;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column a {
    color: #f5f1e8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #d4af37;
}

.footer-note {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Age Verification Modal */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.age-modal.hidden {
    display: none;
}

.modal-content {
    background: linear-gradient(135deg, #f5f1e8 0%, #e8dcc4 100%);
    border: 5px solid #d4af37;
    border-radius: 12px;
    padding: 3rem;
    max-width: 550px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-content h2 {
    font-size: 2rem;
    color: #2c2416;
    margin-bottom: 1rem;
}

.modal-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #2c2416;
}

.small-text {
    font-size: 0.95rem;
    opacity: 0.8;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.modal-buttons button {
    padding: 1rem 2.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.1rem;
    border: 3px solid #d4af37;
    background: #d4af37;
    color: #2c2416;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s;
}

.modal-buttons button:hover {
    background: #2c2416;
    color: #d4af37;
}

.btn-decline {
    background: transparent !important;
    color: #8b0000 !important;
    border-color: #8b0000 !important;
}

.btn-decline:hover {
    background: #8b0000 !important;
    color: #fff !important;
}

/* Play Page Styles */
.play-intro {
    padding: 3.5rem 0;
    background: rgba(212, 175, 55, 0.08);
    text-align: center;
}

.play-intro h2 {
    font-size: 2.5rem;
    color: #2c2416;
    margin-bottom: 1rem;
}

.play-intro p {
    font-size: 1.2rem;
}

.gameplay-section {
    padding: 4rem 0;
}

.game-instructions {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #d4af37;
}

.game-instructions h3 {
    color: #2c2416;
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.game-instructions p {
    margin-bottom: 1rem;
}

.game-display {
    max-width: 950px;
    margin: 0 auto;
    background: #2c2416;
    border: 5px solid #d4af37;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.game-display iframe {
    width: 100%;
    height: 650px;
    display: block;
    border: none;
}

.play-notice {
    padding: 3rem 0;
}

.notice-card {
    background: #fff9e6;
    border: 3px solid #d4af37;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.notice-card h4 {
    color: #2c2416;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Legal Pages */
.legal-document {
    padding: 4rem 0;
}

.legal-document h2 {
    font-size: 2.8rem;
    text-align: center;
    color: #2c2416;
    margin-bottom: 1rem;
}

.last-updated {
    text-align: center;
    font-style: italic;
    margin-bottom: 3rem;
    opacity: 0.7;
}

.legal-section {
    margin-bottom: 2.5rem;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.legal-section h3 {
    color: #d4af37;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.legal-section p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-section li {
    margin-bottom: 0.7rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #2c2416;
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.5rem;
        display: none;
        border-top: 3px solid #d4af37;
    }

    nav.active {
        display: flex;
    }

    nav a::after {
        display: none;
    }

    .site-title {
        font-size: 1.5rem;
    }

    .banner-overlay h2 {
        font-size: 2rem;
    }

    .banner-overlay p {
        font-size: 1.1rem;
    }

    .section-heading {
        font-size: 1.8rem;
    }

    .principles-layout {
        grid-template-columns: 1fr;
    }

    .features-layout {
        grid-template-columns: 1fr;
    }

    .game-embed iframe,
    .game-display iframe {
        height: 450px;
    }

    .modal-content {
        padding: 2rem;
        margin: 1rem;
    }

    .modal-buttons {
        flex-direction: column;
    }

    .footer-columns {
        grid-template-columns: 1fr;
    }
}
