/* Base Styles */
:root {
    --color-lime-custom: #c5ff00;
    --color-lime-light: #deff80;
    --color-lime-dark: #a3d600;
    --color-yellow-custom: #ffde00;
    --color-yellow-light: #ffea80;
    --color-yellow-dark: #d6ba00;
    --color-gray-100: #f8f9fa;
    --color-gray-200: #e9ecef;
    --color-gray-300: #dee2e6;
    --color-gray-400: #ced4da;
    --color-gray-500: #adb5bd;
    --color-gray-600: #6c757d;
    --color-gray-700: #495057;
    --color-gray-800: #343a40;
    --color-gray-900: #212529;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-gray-800);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

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

.section-title {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 800;
}

.hidden {
    display: none;
}

/* Header Styles */
.header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.75rem;
    background: linear-gradient(45deg, var(--color-lime-custom), var(--color-yellow-custom));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.main-nav {
    display: none;
}

.nav-list {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-link {
    font-weight: 600;
    transition: color 0.3s;
    color: var(--color-gray-700);
    position: relative;
}

.nav-link:hover {
    color: var(--color-lime-dark);
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-lime-custom);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.download-button {
    background-color: var(--color-yellow-custom);
    color: var(--color-gray-900) !important;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 700;
    transition: background-color 0.3s;
}

.download-button:hover {
    background-color: var(--color-yellow-dark);
}

.mobile-menu-button {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-button span {
    width: 100%;
    height: 2px;
    background-color: var(--color-gray-800);
    transition: transform 0.3s;
}

.mobile-menu-button.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-button.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    transition: transform 0.3s;
    z-index: 99;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-nav-list {
    padding: 1rem;
}

.mobile-nav-link {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-gray-200);
    font-weight: 600;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
    background-size: 200% 200%;
    animation: gradient 15s ease infinite;
    color: white;
    padding: 5rem 0;
    text-align: center;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-button {
    display: inline-block;
    background-color: var(--color-lime-custom);
    color: var(--color-gray-900);
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 700;
    transition: background-color 0.3s;
    font-size: 1.125rem;
}

.hero-button:hover {
    background-color: var(--color-lime-dark);
}

/* Download Section */
.download-section {
    padding: 5rem 0;
    background-color: white;
}

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

.section-description {
    font-size: 1.125rem;
    color: var(--color-gray-700);
    margin-bottom: 2rem;
}

.form-container {
    background-color: var(--color-gray-100);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.form-input-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-input {
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-gray-300);
    border-radius: 0.5rem;
    font-size: 1rem;
    width: 100%;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-lime-custom);
    box-shadow: 0 0 0 2px rgba(197, 255, 0, 0.2);
}

.form-button {
    background-color: var(--color-yellow-custom);
    color: var(--color-gray-900);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 1rem;
}

.form-button:hover {
    background-color: var(--color-yellow-dark);
}

.form-disclaimer {
    font-size: 0.875rem;
    color: var(--color-gray-500);
}

.success-message {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: rgba(72, 187, 120, 0.1);
    color: #2f855a;
    border-radius: 0.5rem;
}

.app-preview {
    margin-top: 4rem;
}

.app-preview-image {
    height: 500px;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background-color: var(--color-gray-100);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.feature-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.feature-image {
    width: 6rem;
    height: 6rem;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-description {
    color: var(--color-gray-700);
}

/* How to Play Section */
.how-to-play-section {
    padding: 5rem 0;
    background-color: white;
}

.steps-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 4rem;
}

.step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-number {
    width: 5rem;
    height: 5rem;
    background-color: var(--color-lime-custom);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.step-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.step-description {
    color: var(--color-gray-700);
}

.screenshots-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.screenshot {
    height: 400px;
    border-radius: 1rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* Points System Section */
.points-system-section {
    padding: 5rem 0;
    background-color: var(--color-gray-100);
}

.points-table-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 2rem;
}

.points-column {
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.points-category {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.points-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.points-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--color-gray-200);
}

.action {
    color: var(--color-gray-700);
}

.points {
    font-weight: 700;
}

.deductions-section {
    background-color: var(--color-gray-200);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    max-width: 1000px;
    margin: 0 auto 2rem;
}

.deductions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.view-more-button {
    display: block;
    background-color: var(--color-lime-custom);
    color: var(--color-gray-900);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 700;
    transition: background-color 0.3s;
    margin: 0 auto;
    text-align: center;
    max-width: 300px;
}

.view-more-button:hover {
    background-color: var(--color-lime-dark);
}

/* About Us Section */
.about-section {
    padding: 5rem 0;
    background-color: white;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    background-color: var(--color-gray-100);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.about-text {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    color: var(--color-gray-700);
}

.team-image-container {
    text-align: center;
    margin-top: 2rem;
}

.team-image {
    border-radius: 1rem;
    max-width: 100%;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background-color: var(--color-gray-100);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.faq-toggle {
    width: 24px;
    height: 24px;
    position: relative;
}

.faq-toggle::before,
.faq-toggle::after {
    content: "";
    position: absolute;
    background-color: var(--color-gray-700);
    transition: transform 0.3s;
}

.faq-toggle::before {
    top: 11px;
    left: 0;
    width: 24px;
    height: 2px;
}

.faq-toggle::after {
    top: 0;
    left: 11px;
    width: 2px;
    height: 24px;
}

.faq-item.active .faq-toggle::after {
    transform: rotate(90deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Age Disclaimer */
.age-disclaimer {
    padding: 2.5rem 0;
    background-color: var(--color-gray-800);
    color: white;
    text-align: center;
}

.age-disclaimer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.age-badge {
    width: 3rem;
    height: 3rem;
    background-color: #e53e3e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.age-title {
    font-size: 1.5rem;
}

.age-description {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
}

/* Footer */
.footer {
    background-color: var(--color-gray-900);
    color: white;
    padding-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.footer-logo {
    text-align: center;
}

.copyright {
    margin-top: 1rem;
    color: var(--color-gray-500);
    font-size: 0.875rem;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.footer-heading {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--color-gray-300);
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-list a {
    color: var(--color-gray-400);
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    margin-top: 3rem;
    text-align: center;
}

.age-warning {
    color: var(--color-gray-400);
    font-size: 0.875rem;
}

/* Media Queries */
@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .main-nav {
        display: block;
    }
    
    .mobile-menu-button {
        display: none;
    }
    
    .form-input-group {
        flex-direction: row;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-container {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .points-table-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .deductions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 2fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}