/* Base Variables */
:root {
    --primary: #FF4D4D;
    --primary-dark: #cc0000;
    --secondary: #1a1a1a;
    --accent: #ffd700;
    --text-light: #ffffff;
    --text-gray: #b3b3b3;
    --bg-dark: #0f0f0f;
    --bg-card: rgba(30, 30, 30, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
    --gradient-primary: linear-gradient(135deg, #FF4D4D 0%, #ff8000 100%);
    --gradient-dark: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 100%);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 8px 15px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 20px rgba(255, 77, 77, 0.3);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section__header {
    text-align: center;
    margin-bottom: 4rem;
}

.section__subtitle {
    display: block;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.section__title {
    font-size: 2.5rem;
    color: var(--text-light);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn--primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-glow);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 77, 77, 0.5);
}

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

.btn--outline:hover {
    background: rgba(255, 77, 77, 0.1);
    transform: translateY(-2px);
}

.btn--lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-light);
}

.logo-accent {
    color: var(--primary);
}

.nav__list {
    display: flex;
    gap: 2rem;
}

.nav__link {
    font-weight: 500;
    color: var(--text-gray);
    position: relative;
}

.nav__link:hover,
.nav__link.active {
    color: var(--text-light);
}

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

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

.nav__buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav__toggle,
.nav__close {
    display: none;
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 8rem;
    padding-bottom: 4rem;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, #2a1a1a 0%, #0f0f0f 100%);
    z-index: -1;
}

.hero__particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero__badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 77, 77, 0.1);
    border: 1px solid var(--primary);
    border-radius: 50px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.hero__title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero__description {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero__stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat__number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
}

.stat__label {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.hero__buttons {
    display: flex;
    gap: 1rem;
}

.hero__image {
    position: relative;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: #000;
    border-radius: 40px;
    border: 8px solid #333;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    z-index: 2;
    overflow: hidden;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--gradient-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-preview {
    text-align: center;
}

.game-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}



/* About Section */
.about {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about__text p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.about__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.about__feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
}

.feature-icon {
    font-size: 1.5rem;
}

.about__cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateX(10px);
    border-color: var(--primary);
}

.info-card__icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.info-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Features Grid */
.features {
    padding: 6rem 0;
    background: #111;
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    cursor: default;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary);
}

.feature-card__icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 77, 77, 0.1);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary);
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.feature-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Games Section */
.games {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.games__categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.game-category {
    background: linear-gradient(145deg, #1e1e1e, #141414);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.game-category:hover {
    transform: scale(1.05);
    border-color: var(--accent);
}

.game-category__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.games__popular {
    text-align: center;
}

.games__popular h3 {
    margin-bottom: 2rem;
    color: var(--accent);
}

.popular-games__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.popular-game {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.popular-game:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Payments Section */
.payments {
    padding: 6rem 0;
    background: #111;
}

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

.payment-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.payment-feature__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.payments__trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--glass-border);
}

/* Earning Guide */
.earn {
    padding: 6rem 0;
    background: var(--bg-dark);
}

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

.earn-step {
    position: relative;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    overflow: hidden;
}

.earn-step__number {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    z-index: 0;
}

.earn-step h3 {
    position: relative;
    z-index: 1;
    margin-bottom: 1rem;
    color: var(--primary);
}

.earn-step p {
    position: relative;
    z-index: 1;
    color: var(--text-gray);
}

/* Why Choose Section */
.why-choose {
    padding: 6rem 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://source.unsplash.com/random/1920x1080/?gaming') no-repeat center/cover;
    background-attachment: fixed;
}

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

.why-card {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--primary);
}

.why-card__icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.why-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Reviews */
.reviews {
    padding: 6rem 0;
    background: var(--bg-dark);
}

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

.review-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.review-card__stars {
    margin-bottom: 1rem;
    color: var(--accent);
}

.review-card__text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-gray);
}

.review-card__author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
}

.author-location {
    font-size: 0.8rem;
    color: var(--text-gray);
}

/* Pros and Cons */
.pros-cons {
    padding: 6rem 0;
    background: #111;
}

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

.pros-card,
.cons-card {
    padding: 2.5rem;
    border-radius: 20px;
    background: var(--bg-card);
}

.pros-card {
    border: 1px solid #4CAF50;
}

.cons-card {
    border: 1px solid #FF4D4D;
}

.pros-card h3,
.cons-card h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.pros-card ul li,
.cons-card ul li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-gray);
}

.pros-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.cons-card ul li::before {
    content: '⚠️';
    position: absolute;
    left: 0;
    font-size: 0.8rem;
    top: 3px;
}

/* Download Section */
.download {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1f1f 100%);
    overflow: hidden;
}

.download__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.download__text h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.download__text p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.download__features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.download__features span {
    font-weight: 500;
    color: var(--primary);
}

.download__visual {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-phone {
    width: 200px;
    height: 400px;
    background: #000;
    border-radius: 30px;
    border: 5px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 50px rgba(255, 77, 77, 0.2);
}

.phone-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.app-icon {
    font-size: 3rem;
}

.app-name {
    font-weight: 700;
    font-size: 1.2rem;
}

.app-size {
    font-size: 0.8rem;
    color: var(--text-gray);
}

/* FAQ */
.faq {
    padding: 6rem 0;
    background: var(--bg-dark);
}

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

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    background: var(--bg-card);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

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

.faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--text-gray);
}

/* Active FAQ state */
.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--primary);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* Contact */
.contact {
    padding: 6rem 0;
    background: #111;
}

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

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-label {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.contact-desc {
    color: var(--text-gray);
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer__brand p {
    color: var(--text-gray);
    margin-top: 1rem;
    max-width: 300px;
}

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

.footer__column h4 {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.footer__column ul li {
    margin-bottom: 0.8rem;
}

.footer__column ul li a {
    color: var(--text-gray);
}

.footer__column ul li a:hover {
    color: var(--primary);
}

.footer__bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__bottom p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer__disclaimer {
    font-size: 0.8rem !important;
    opacity: 0.7;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

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

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

@keyframes bounce {

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

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

/* Responsive Design */
@media (max-width: 968px) {
    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__description {
        margin: 0 auto 2rem;
    }

    .hero__buttons,
    .hero__stats {
        justify-content: center;
        flex-wrap: wrap;
        /* Ensure items wrap if space is tight */
    }

    .hero__buttons .btn {
        width: 100%;
        /* Full width buttons on mobile */
        justify-content: center;
        margin-bottom: 0.5rem;
    }

    .btn--lg {
        padding: 0.8rem 1.5rem;
        /* Smaller padding for mobile */
        font-size: 1rem;
    }

    .hero__image {
        margin-top: 4rem;
    }

    .about__content,
    .pros-cons__grid,
    .download__content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .download__content {
        text-align: center;
    }

    .download__visual {
        margin: 0 auto;
    }

    .download__features {
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Fixed Mobile Menu Logic */
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        /* Start off-screen to the right */
        left: auto;
        /* Reset left property */
        width: 80%;
        /* Cover most but not all of the screen */
        height: 100vh;
        background: rgba(15, 15, 15, 0.98);
        backdrop-filter: blur(20px);
        padding: 6rem 2rem;
        transition: right 0.4s ease-in-out;
        text-align: left;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
        display: flex;
        flex-direction: column;
        z-index: 1000;
    }

    .nav__menu.show-menu {
        right: 0;
        /* Slide in from right */
    }

    .nav__list {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }

    .nav__link {
        font-size: 1.2rem;
        display: block;
        width: 100%;
    }

    .nav__toggle {
        display: block;
        width: 25px;
        height: 20px;
        position: relative;
        cursor: pointer;
        z-index: 1001;
    }

    .nav__toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background: var(--text-light);
        margin-bottom: 5px;
        transition: 0.3s;
    }

    /* Close button styles */
    .nav__close {
        display: block;
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        font-size: 2.5rem;
        cursor: pointer;
        color: var(--primary);
    }

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

    /* Review Grid Fix */
    .reviews__grid {
        grid-template-columns: 1fr;
    }
}

/* Screenshots Carousel */
.screenshots {
    padding: 2rem 0;
    background: var(--bg-dark);
    overflow: hidden;
}

.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 450px;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
    height: 100%;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: white;
}

.slide-caption h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-caption p {
    font-size: 1rem;
    color: var(--text-light);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 1rem;
    cursor: pointer;
    transition: background 0.3s;
    z-index: 10;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.carousel-btn:hover {
    background: var(--primary);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .carousel-track {
        height: 300px;
    }

    .carousel-btn {
        padding: 0.5rem;
        font-size: 1.5rem;
        width: 40px;
        height: 40px;
    }
}

/* Hero Screen Image Update */
.hero-screen-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 32px;
    /* Matches phone border radius roughly */
}

/* Small Phone Frame Style for Carousel */
.phone-frame-small {
    width: 260px;
    /* Reduced width for multiple visible items */
    height: 520px;
    background: #000;
    border-radius: 30px;
    border: 6px solid #444;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    /* Center the image */
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-frame-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

/* Override caption for this layout */
.carousel-slide .slide-caption {
    position: relative;
    background: none;
    padding: 1rem 0;
    text-align: center;
    width: auto;
}

.carousel-slide .slide-caption h3 {
    text-shadow: none;
    font-size: 1.2rem;
}

/* Adjust carousel container to fit taller phone frames */
.carousel-container {
    max-width: 100%;
    /* Use full container width */
    height: 650px;
    /* Increase height for phone + caption */
    background: transparent;
    border: none;
    box-shadow: none;
}

.carousel-track {
    height: 100%;
    align-items: center;
}

/* Show multiple slides on desktop */
@media (min-width: 768px) {
    .carousel-slide {
        min-width: 33.333%;
        /* Show 3 slides at once */
    }
}

@media (max-width: 768px) {
    .carousel-slide {
        min-width: 100%;
        /* Show 1 slide on mobile */
    }

    .phone-frame-small {
        width: 220px;
        height: 440px;
    }
}

/* Enhanced Mobile Mockup Styles */
.phone-frame-small {
    /* Base Frame */
    width: 280px;
    height: 660px;
    /* Increased height */
    background-color: #000;
    border-radius: 30px;
    /* Slightly less rounded */
    border: 10px solid #1a1a1a;
    /* Bezel */
    position: relative;
    box-shadow:
        0 0 0 2px #333,
        /* Outer shiny rim */
        0 20px 50px rgba(0, 0, 0, 0.6);
    /* Drop shadow */
    overflow: hidden;
    margin: 0 auto;
    z-index: 1;
}

/* Screen area */
.phone-frame-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    opacity: 1;
    /* Full brightness */
    display: block;
}

/* Remove Notch */
.phone-frame-small::before,
.phone-frame-small::after {
    display: none;
}

/* Reflection / Gloss */
.phone-reflection {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.05) 0%,
            rgba(255, 255, 255, 0) 40%,
            rgba(255, 255, 255, 0) 60%,
            rgba(255, 255, 255, 0.02) 100%);
    pointer-events: none;
    z-index: 4;
    border-radius: 30px;
}

/* Adjust Carousel height to accommodate larger frames */
.carousel-track {
    height: 680px;
}

.carousel-container {
    height: 720px;
    max-width: 100% !important;
}

/* Reduce header margin specifically for screenshots section */
.screenshots .section__header {
    margin-bottom: 2rem;
}

/* Download Screen Image */
.download-screen-img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    border-radius: 25px;
    /* Fits inside the 30px border radius of parent */
}

/* SEO Content Section */
.seo-content {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #050505 100%);
    position: relative;
    overflow: hidden;
}

.seo-article {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    color: var(--text-gray);
    line-height: 1.8;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.seo-article h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    font-weight: 800;
}

.seo-article h3 {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.seo-article h3::before {
    content: '';
    display: block;
    width: 4px;
    height: 24px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.seo-article p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.seo-article strong {
    color: var(--text-light);
    font-weight: 600;
}

.seo-article em {
    color: var(--primary);
    font-style: normal;
    font-weight: 500;
}

.seo-article ul,
.seo-article ol {
    margin-bottom: 2rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    padding: 2rem 2rem 2rem 3rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.seo-article li {
    margin-bottom: 1rem;
    padding-left: 0.5rem;
}

.seo-article li:last-child {
    margin-bottom: 0;
}

/* Responsive adjustments for SEO section */
@media (max-width: 768px) {
    .seo-article {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .seo-article h2 {
        font-size: 1.8rem;
    }

    .seo-article h3 {
        font-size: 1.3rem;
    }
}