/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.nav-brand .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d5a27;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #2d5a27;
}

.btn-play {
    background: linear-gradient(135deg, #4CAF50, #2d5a27);
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: transform 0.3s ease;
}

.btn-play:hover {
    transform: translateY(-2px);
    color: white !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section - Exact Replica */
.hero {
    min-height: 100vh;
    background: #f0f4f0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.game-container {
    text-align: center;
    max-width: 800px;
    width: 100%;
    position: relative;
    z-index: 10;
}

/* Game Title */
.game-title h1 {
    font-size: 2.8rem;
    font-weight: 600;
    color: #4a5c4a;
    margin-bottom: 2rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Game Stats */
.game-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
}

.stat-box {
    text-align: center;
}

.stat-label {
    font-size: 1rem;
    color: #888;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: bold;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.clicks-value {
    color: #4CAF50;
}

.cps-value {
    color: #FF9800;
}

/* Lizard Container */
.lizard-container {
    margin: 3rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Lizard Character */
.lizard-character {
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    transition: transform 0.1s ease;
    touch-action: manipulation;
    padding: 0;
}

.lizard-character:hover {
    transform: scale(1.05);
}

.lizard-character:active {
    transform: scale(0.95);
}

.lizard-image {
    width: 300px;
    height: auto;
    max-width: 100%;
    border-radius: 20px;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.2),
        0 10px 20px rgba(0, 0, 0, 0.1);
    animation: lizard-breathe 3s ease-in-out infinite;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
}

/* Game Info */
.game-info {
    margin-top: 2rem;
    text-align: center;
}

.game-info p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.cps-info {
    font-size: 0.9rem;
    color: #888;
}

/* Control Buttons */
.control-buttons {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 100;
}

.control-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.control-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.control-btn:active {
    transform: translateY(0);
}

.control-btn:focus {
    outline: 2px solid #4CAF50;
    outline-offset: 2px;
}

/* Focus states for all interactive elements */
button:focus,
a:focus,
.hamburger:focus {
    outline: 2px solid #4CAF50;
    outline-offset: 2px;
}

.lizard-character:focus {
    outline: 3px solid #4CAF50;
    outline-offset: 3px;
    border-radius: 20px;
}

/* Flying Lizards */
.flying-lizards {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.flying-lizard {
    position: absolute;
    font-size: 2rem;
    opacity: 0;
    user-select: none;
    pointer-events: none;
}

.flying-lizard.animate {
    animation: flyAway 2s ease-out forwards;
}

/* Click effect */
.click-effect {
    position: absolute;
    color: #4CAF50;
    font-weight: bold;
    font-size: 1.5rem;
    pointer-events: none;
    user-select: none;
    z-index: 100;
}

.click-effect.animate {
    animation: clickPop 1s ease-out forwards;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: #f8f9fa;
}

.features h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #2d5a27;
    font-weight: 700;
}

.features-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.6;
}

.features-content {
    max-width: 1200px;
    margin: 0 auto;
}

.feature-category {
    margin-bottom: 4rem;
}

.feature-category h3 {
    font-size: 2.2rem;
    color: #2d5a27;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

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

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: left;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #4CAF50;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2d5a27;
    font-weight: 600;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* What Is Section */
.what-is {
    padding: 5rem 0;
}

.what-is-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.what-is h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2d5a27;
}

.what-is p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #666;
}

.what-is ul {
    list-style: none;
}

.what-is li {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.game-preview {
    background: #333;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.screen {
    background: #000;
    border-radius: 10px;
    padding: 2rem;
    position: relative;
}

.lizard-demo {
    font-size: 4rem;
    animation: pulse 1.5s infinite;
}

.score {
    color: #4CAF50;
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 1rem;
}

/* How to Play Section */
.how-to-play {
    padding: 5rem 0;
    background: #f8f9fa;
}

.how-to-play h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2d5a27;
}

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

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4CAF50, #2d5a27);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d5a27;
}

/* Why Play Section */
.why-play {
    padding: 5rem 0;
}

.why-play h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2d5a27;
}

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

.benefit {
    text-align: center;
    padding: 2rem;
}

.benefit h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2d5a27;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background: #f8f9fa;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2d5a27;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    color: #2d5a27;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #4CAF50;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 1.5rem;
    max-height: 200px;
}

/* Footer */
.footer {
    background: #2d5a27;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

.footer-column h4 {
    margin-bottom: 1rem;
    color: #4CAF50;
}

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

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #4CAF50;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4a6b47;
    color: #ccc;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes subtle-bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

@keyframes lizard-breathe {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

@keyframes flyAway {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1) rotate(0deg);
    }

    100% {
        opacity: 0;
        transform: translateY(-100px) scale(0.5) rotate(360deg);
    }
}

@keyframes clickPop {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translateY(-50px) scale(1.5);
    }
}

@keyframes clickShake {
    0% {
        transform: translate(0);
    }

    5% {
        transform: translate(-8px, -4px) rotate(-3deg) scale(0.9);
    }

    10% {
        transform: translate(8px, 4px) rotate(3deg) scale(1.1);
    }

    15% {
        transform: translate(-6px, 8px) rotate(-2deg) scale(0.95);
    }

    20% {
        transform: translate(6px, -6px) rotate(2deg) scale(1.05);
    }

    25% {
        transform: translate(-4px, 4px) rotate(-1deg) scale(0.98);
    }

    30% {
        transform: translate(4px, -8px) rotate(1deg) scale(1.02);
    }

    35% {
        transform: translate(-8px, 6px) rotate(-3deg) scale(0.92);
    }

    40% {
        transform: translate(8px, -4px) rotate(3deg) scale(1.08);
    }

    45% {
        transform: translate(-6px, -6px) rotate(-2deg) scale(0.96);
    }

    50% {
        transform: translate(6px, 8px) rotate(2deg) scale(1.04);
    }

    55% {
        transform: translate(-4px, -8px) rotate(-1deg) scale(0.99);
    }

    60% {
        transform: translate(4px, 6px) rotate(1deg) scale(1.01);
    }

    65% {
        transform: translate(-8px, -4px) rotate(-3deg) scale(0.93);
    }

    70% {
        transform: translate(8px, 4px) rotate(3deg) scale(1.07);
    }

    75% {
        transform: translate(-6px, -6px) rotate(-2deg) scale(0.97);
    }

    80% {
        transform: translate(6px, 8px) rotate(2deg) scale(1.03);
    }

    85% {
        transform: translate(-4px, -4px) rotate(-1deg) scale(0.995);
    }

    90% {
        transform: translate(4px, 4px) rotate(1deg) scale(1.005);
    }

    95% {
        transform: translate(-2px, -2px) rotate(-0.5deg) scale(0.999);
    }

    100% {
        transform: translate(0) rotate(0deg) scale(1);
    }
}

.click-shake {
    animation: clickShake 0.2s ease-out;
}

/* Add intense visual effects */
.lizard-image {
    transition: all 0.1s ease;
}

.lizard-image.intense-click {
    filter: brightness(1.5) saturate(2) contrast(1.3) drop-shadow(0 0 20px #4CAF50);
    animation: intenseGlow 0.2s ease-out;
}

@keyframes intenseGlow {
    0% {
        filter: brightness(1) saturate(1) contrast(1) drop-shadow(0 0 0px transparent);
        transform: scale(1);
    }

    50% {
        filter: brightness(2) saturate(3) contrast(1.5) drop-shadow(0 0 30px #4CAF50);
        transform: scale(0.9) rotate(-5deg);
    }

    100% {
        filter: brightness(1) saturate(1) contrast(1) drop-shadow(0 0 0px transparent);
        transform: scale(1) rotate(0deg);
    }
}

/* Removed clickShake {
    0% { transform: translate(0); }
    10% { transform: translate(-2px, -1px) rotate(-1deg); }
    20% { transform: translate(2px, 1px) rotate(1deg); }
    30% { transform: translate(-1px, 2px) rotate(0deg); }
    40% { transform: translate(1px, -1px) rotate(1deg); }
    50% { transform: translate(-1px, 1px) rotate(-1deg); }

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        padding: 1rem;
    }

    .game-header h2 {
        font-size: 2rem;
    }

    .stats-container {
        gap: 2rem;
        margin-bottom: 1.5rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .lizard-img {
        width: 200px;
    }

    .control-buttons {
        bottom: 10px;
        right: 10px;
    }

    .control-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .feature-category h3 {
        font-size: 1.8rem;
    }

    .features h2 {
        font-size: 2.2rem;
    }

    .features-intro {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .feature-card {
        padding: 2rem;
        text-align: center;
    }

    .feature-card h4 {
        font-size: 1.2rem;
    }

    .what-is-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .features-grid,
    .steps,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

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

    .nav {
        padding: 1rem;
    }

    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .game-title h1 {
        font-size: 1.8rem;
    }

    .game-stats {
        gap: 1.5rem;
    }

    .stat-value {
        font-size: 1.8rem;
    }

    .lizard-image {
        width: 180px;
    }

    .main-text {
        font-size: 1rem;
    }

    .sub-text {
        font-size: 0.9rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .features h2,
    .what-is h2,
    .how-to-play h2,
    .why-play h2,
    .faq h2 {
        font-size: 2rem;
    }
}

/ * Features Section */ .features {
    padding: 5rem 0;
    background: #f8f9fa;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2d5a27;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

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

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d5a27;
}

/* What Is Section */
.what-is {
    padding: 5rem 0;
}

.what-is-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.what-is h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2d5a27;
}

.what-is p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #666;
}

.what-is ul {
    list-style: none;
}

.what-is li {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.game-preview {
    background: #333;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.screen {
    background: #000;
    border-radius: 10px;
    padding: 2rem;
    position: relative;
}

.lizard-demo {
    font-size: 4rem;
    animation: pulse 1.5s infinite;
}

.score {
    color: #4CAF50;
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 1rem;
}

/* How to Play Section */
.how-to-play {
    padding: 5rem 0;
    background: #f8f9fa;
}

.how-to-play h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2d5a27;
}

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

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4CAF50, #2d5a27);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d5a27;
}

/* Why Play Section */
.why-play {
    padding: 5rem 0;
}

.why-play h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2d5a27;
}

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

.benefit {
    text-align: center;
    padding: 2rem;
}

.benefit h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2d5a27;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background: #f8f9fa;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2d5a27;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    color: #2d5a27;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #4CAF50;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 1.5rem;
    max-height: 200px;
}

/* Footer */
.footer {
    background: #2d5a27;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

.footer-column h4 {
    margin-bottom: 1rem;
    color: #4CAF50;
}

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

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #4CAF50;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4a6b47;
    color: #ccc;
}

/* Additional Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* Additional Mobile Responsive */
@media (max-width: 768px) {
    .what-is-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .features-grid,
    .steps,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

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

    .nav {
        padding: 1rem;
    }

    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {

    .features h2,
    .what-is h2,
    .how-to-play h2,
    .why-play h2,
    .faq h2 {
        font-size: 2rem;
    }
}

/* 
Enhanced Section Styles */
.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* Enhanced What Is Styles */
.what-is h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #2d5a27;
    font-weight: 700;
}

.what-is-text h3 {
    font-size: 2rem;
    color: #2d5a27;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.what-is-text h4 {
    font-size: 1.4rem;
    color: #4CAF50;
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.features-list {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.features-list h4 {
    color: #2d5a27;
    margin-bottom: 1rem;
}

.features-list ul {
    list-style: none;
    padding: 0;
}

.features-list li {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: #555;
    padding-left: 0.5rem;
}

.cps {
    color: #FF9800;
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 0.5rem;
}

/* Enhanced How To Play Styles */
.how-to-play h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #2d5a27;
    font-weight: 700;
}

.how-to-content h3 {
    font-size: 2rem;
    color: #2d5a27;
    margin: 3rem 0 2rem 0;
    font-weight: 600;
}

.step h4 {
    font-size: 1.4rem;
    color: #4CAF50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.strategies {
    margin-top: 2rem;
}

.strategies h4 {
    font-size: 1.4rem;
    color: #4CAF50;
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

/* Enhanced Why Play Styles */
.why-play h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #2d5a27;
    font-weight: 700;
}

.benefits-content h3 {
    font-size: 2rem;
    color: #2d5a27;
    margin: 3rem 0 2rem 0;
    font-weight: 600;
    text-align: center;
}

.benefit h4 {
    font-size: 1.4rem;
    color: #4CAF50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

/* Enhan
ced FAQ Styles */
.faq h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #2d5a27;
    font-weight: 700;
}

.faq-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    max-width: 900px;
    margin: 0 auto 4rem;
    line-height: 1.6;
}

.faq-content {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 4rem;
}

.faq-category h3 {
    font-size: 2.2rem;
    color: #2d5a27;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

.faq-item.expanded {
    background: white;
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: visible;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #4CAF50;
}

.faq-item.expanded h4 {
    padding: 2rem;
    margin: 0;
    font-size: 1.4rem;
    color: #2d5a27;
    font-weight: 600;
    background: #f8f9fa;
    border-radius: 12px 12px 0 0;
}

.faq-item.expanded .faq-answer {
    padding: 2rem;
    max-height: none;
    overflow: visible;
    background: white;
    border-radius: 0 0 12px 12px;
}

.faq-item.expanded .faq-answer p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

.faq-item.expanded .faq-answer p:last-child {
    margin-bottom: 0;
}

/* Mobile FAQ Styles */
@media (max-width: 768px) {
    .faq h2 {
        font-size: 2.2rem;
    }

    .faq-category h3 {
        font-size: 1.8rem;
    }

    .faq-item.expanded h4 {
        font-size: 1.2rem;
        padding: 1.5rem;
    }

    .faq-item.expanded .faq-answer {
        padding: 1.5rem;
    }

    .faq-intro {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
}