/* Flower-Themed Color Palette */
:root {
    --primary-color: #E91E63;      /* Pink/Magenta */
    --secondary-color: #9C27B0;    /* Purple */
    --accent-color: #FF9800;       /* Orange */
    --success-color: #4CAF50;      /* Green */
    --text-dark: #1A1A2E;
    --text-light: #F8F9FA;
    --bg-light: #FFF5F8;
    --bg-white: #FFFFFF;
    --nav-bg: #FFFFFF;
    --footer-bg: #1A1A2E;
    --border-light: #F3E5F0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, sans-serif;
}

body {
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.7;
}

/* Navigation Bar */
/* Hamburger styles */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
}
.hamburger span {
    display: block;
    width: 28px;
    height: 4px;
    margin: 4px 0;
    background: var(--primary-color);
    border-radius: 2px;
    transition: 0.3s;
}

.nav-menu {
    transition: max-height 0.3s, opacity 0.3s;
}
.nav-menu {
    max-height: 1000px;
    opacity: 1;
}
.nav-menu:not(.show) {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--nav-bg);
    padding: 1.2rem 0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    z-index: 1000;
}

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

.brand-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

/* Hero Section */
/* Hero Section */
.hero-section {
    padding: 10rem 2rem 5rem;
    background:
        linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
        url('heropic.jpg') center/cover no-repeat;
    text-align: center;
    color: #fff;
}

.hero-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.hero-section h1 {
    font-size: 3.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-section p {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 2rem;
}

/* Hero image space: smaller and centered */
.hero-img-space {
    width: 320px;
    height: 220px;
    margin: 2rem auto;
    background: none;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 16px rgba(0,0,0,0.15);
}

/* Hero image: fit and center */
.hero-img-space img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    display: block;
    margin: 0 auto;
}


/* Button Styles */
.action-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

/* Disclaimer Warning */
.warning-notice {
    background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
    padding: 2.5rem;
    margin: 3rem auto;
    max-width: 950px;
    border-radius: 15px;
    border-left: 5px solid var(--accent-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.warning-notice h2 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

/* Game Display Section */
.game-display {
    padding: 5rem 2rem;
    text-align: center;
    background-color: var(--bg-white);
}

.game-display.page-top {
    margin-top: 8rem;
}

.game-display h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.game-wrapper {
    max-width: 900px;
    margin: 0 auto;
    aspect-ratio: 16/9;
}

.game-iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* About Section */
/* About Section */
.about-section {
    padding: 5rem 2rem;
    background:
        linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
        url('heropic.jpg') center/cover no-repeat;
    color: #fff;
}


.about-wrapper {
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
}

/* About Section Heading */
.about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
    text-align: center;
}

/* About Section Paragraph */
.about-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #fff;
    text-align: center;
}

/* Reviews Section */
.reviews-section {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

.reviews-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1300px;
    margin: 0 auto;
}

.review-box {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-top: 4px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.review-box:hover {
    transform: translateY(-5px);
}

.review-box p {
    font-style: italic;
    color: #555;
    margin-bottom: 1rem;
}

.reviewer-name {
    font-weight: 600;
    color: var(--secondary-color);
    font-style: normal;
}

/* Features Section */
.features-section {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.features-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1300px;
    margin: 0 auto;
}

.feature-item {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(233, 30, 99, 0.15);
}

.feature-item h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

/* Footer */
.site-footer {
    background-color: var(--footer-bg);
    color: var(--text-light);
    padding: 4rem 2rem 1.5rem;
}

.footer-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

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

.footer-list li {
    margin-bottom: 0.8rem;
}

.footer-list a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: var(--primary-color);
}

.footer-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin: 2rem 0;
}

.footer-credits {
    text-align: center;
    color: #999;
    font-size: 0.95rem;
}

/* Age Verification Modal */
.modal-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    z-index: 2000;
    backdrop-filter: blur(5px);
}

.modal-box {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 20px;
    max-width: 550px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 50px rgba(0,0,0,0.3);
}

.modal-box h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.modal-box p {
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 2.5rem;
    right: 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
}

/* Contact Page */
.contact-page {
    margin-top: 7rem;
    padding: 3rem 2rem;
}

.contact-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.contact-wrapper h1 {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.contact-wrapper > p {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
}

.input-group {
    margin-bottom: 2rem;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-light);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Legal Pages */
.legal-page {
    max-width: 900px;
    margin: 9rem auto 4rem;
    padding: 0 2rem;
}

.legal-page h1 {
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.legal-block {
    margin: 2.5rem 0;
}

.legal-block h2 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.legal-block p {
    color: #555;
    line-height: 1.8;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-wrapper {
        flex-direction: column;
        gap: 1.5rem;
        position: relative;
    }
    .hamburger {
        display: flex;
        position: absolute;
        right: 0;
        top: 10px;
    }
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        background: var(--nav-bg);
        position: absolute;
        top: 60px;
        left: 0;
        box-shadow: 0 3px 10px rgba(0,0,0,0.08);
        border-radius: 0 0 15px 15px;
        z-index: 1001;
    }

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

    .hero-section p {
        font-size: 1.1rem;
    }

    .hero-img-space {
        height: 250px;
    }

    .game-wrapper {
        padding: 0 1rem;
    }

    .reviews-container,
    .features-container {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}