/* General Styles */
:root {
    --primary-color: #421c00;
    --secondary-color: #ff8c00;
    --accent-color: #ff4081;
    --text-color: #421c00;
    --light-text: #421c00;
    --bg-color: #fff;
    --light-bg: #e6f2ff;
    --border-radius: 8px;
    --card-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3 {
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 2rem 0;
    background-color: var(--light-bg);
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
}

/* Header Styles */
header {
    background-color: var(--bg-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.5rem 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-links a {
    font-weight: 600;
    position: relative;
}

.nav-links a.active,
.nav-links a:hover {
    color: var(--accent-color);
}

.nav-links a.active::after,
.nav-links a:hover::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
}

/* Hero Section */
.hero {
    padding: 3rem 0;
    background-color: var(--light-bg);
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hero-text {
    flex: 1;
}

.hero-image {
    flex: 1;
    text-align: right;
}

.hero h1 {
    margin-bottom: 1.5rem;
}

.tagline {
    font-weight: bold;
    margin: 1.5rem 0;
}

.play-btn {
    display: inline-block;
    transition: transform 0.3s ease;
    margin-top: 1rem;
}

.play-btn:hover {
    transform: scale(1.05);
}

.play-btn img {
    height: 60px;
}

/* Description Section */
.description {
    padding: 3rem 0;
}

.description h2 {
    margin-bottom: 1.5rem;
}

/* Features Section */
.features {
    padding: 3rem 0;
}

.features h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    height: 100%;
}

.feature-card.wide {
    grid-column: span 1.5;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    max-width: 100%;
    max-height: 100%;
}

/* Testimonials Section */
.testimonials {
    padding: 3rem 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.testimonial {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.rating {
    color: var(--secondary-color);
    margin: 1rem 0;
}

.star {
    font-size: 1.2rem;
}

.author {
    font-weight: bold;
    text-align: right;
}

/* Gallery Section */
.gallery {
    padding: 3rem 0;
}

.gallery h2 {
    text-align: center;
}

.gallery > p {
    text-align: center;
    margin-bottom: 2rem;
}

.screenshots {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.screenshot {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.screenshot:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.screenshot img {
    width: 100%;
    display: block;
}

.screenshot p {
    padding: 0.5rem;
    text-align: center;
    font-size: 0.8rem;
    font-weight: bold;
    margin: 0;
}

/* Facts Page */
.facts {
    padding: 3rem 0;
}

.facts h1 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.fact-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.fact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.fact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fact-card h3 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.fun-counter {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--card-shadow);
}

.fun-counter h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.counter {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

@media (max-width: 992px) {
    .facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .facts-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Section */
.contact {
    padding: 3rem 0;
}

.contact-wrapper {
    display: flex;
    gap: 2rem;
}

.contact-info {
    flex: 1;
}

.contact-form {
    flex: 1;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

input,
textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
}

.send-btn {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.send-btn:hover {
    background-color: #e03a73;
}

/* Thank You Page */
.thank-you {
    padding: 4rem 0;
    text-align: center;
}

.thank-you h1 {
    margin-bottom: 2rem;
}

.thank-you p {
    max-width: 600px;
    margin: 0 auto 1rem;
}

.thank-you ul {
    max-width: 600px;
    margin: 1.5rem auto;
    text-align: left;
    list-style-position: inside;
}

.thank-you li {
    margin-bottom: 0.5rem;
}

/* Legal Pages */
.legal {
    padding: 3rem 0;
}

.legal h1 {
    text-align: center;
    margin-bottom: 2rem;
}

.legal-content {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--card-shadow);
}

.legal-date {
    color: #666;
    margin-bottom: 1.5rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.5rem;
}

.legal-content ul {
    margin: 0.5rem 0 1rem 1.5rem;
}

.legal-content p {
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background-color: var(--light-bg);
    padding: 2rem 0 1rem;
    margin-top: 2rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-nav {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 1rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 0.5rem;
}

.copyright {
    font-size: 0.9rem;
    color: #666;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-card.wide {
        grid-column: span 1;
    }

    .screenshots {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
    }

    .hero-image {
        order: -1;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        flex-direction: column;
    }

    .footer-top {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .screenshots {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-color);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
    }

    header {
        position: relative;
    }
}