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

:root {
    --primary-button: #5C8E8A;
    --primary-button-hover: #4A7370;
    --accent-green: #A7D8D8;
    --accent-coral: #A7D8D8;
    --accent-coral-hover: #8FC5C5;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-white: #FFFFFF;
    --bg-light-gray: #F5F5F5;
    --bg-soft-beige: #F5F5F5;
    --bg-light-beige: #FAFAFA;
    --white: #FFFFFF;
    --black: #000000;
    --shadow-sm: 0 2px 8px rgba(92, 142, 138, 0.1);
    --shadow-md: 0 4px 16px rgba(92, 142, 138, 0.15);
    --shadow-lg: 0 8px 32px rgba(92, 142, 138, 0.2);
    --font-primary: 'Montserrat', 'Roboto', Arial, sans-serif;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 18px;
    overflow-x: hidden;
    background: var(--bg-soft-beige);
}

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

/* Header */
.header {
    background: var(--bg-light-beige);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.logo h1 {
    color: var(--primary-button);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    font-size: 18px;
    position: relative;
    padding: 8px 16px;
}

.nav a:hover {
    color: var(--primary-button);
    background: rgba(92, 142, 138, 0.05);
    border-radius: 5px;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    width: 0;
    height: 3px;
    background: var(--primary-button);
    transition: width 0.3s;
}

.nav a:hover::after {
    width: calc(100% - 32px);
}

.nav .btn-primary {
    color: var(--white) !important;
    background: var(--primary-button);
}

.nav .btn-primary:hover {
    color: var(--white) !important;
    background: var(--primary-button-hover);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 4px;
    background: var(--text-dark);
    transition: all 0.3s;
}

/* Buttons */
.btn-primary, .btn-hero, .btn-trust {
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: var(--primary-button);
    color: var(--white);
    box-shadow: var(--shadow-md);
    font-weight: 700;
    font-size: 18px;
    padding: 16px 40px;
    min-height: 56px;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-button-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-hero {
    background: var(--primary-button);
    color: var(--white);
    font-size: 22px;
    padding: 20px 50px;
    margin-top: 30px;
    box-shadow: var(--shadow-lg);
    font-weight: 700;
    min-height: 64px;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background: var(--primary-button-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(92, 142, 138, 0.4);
}

.btn-trust {
    background: var(--primary-button);
    color: var(--white);
    border: none;
    box-shadow: var(--shadow-md);
    font-weight: 700;
    font-size: 18px;
    padding: 16px 40px;
    min-height: 56px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-trust:hover {
    background: var(--primary-button-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Hero Section */
.hero {
    background: var(--bg-white);
    color: var(--text-dark);
    padding: 80px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}


.hero-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: 0.5px;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: var(--text-dark);
    font-weight: 400;
}

.hero-media {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-container {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    width: fit-content;
    max-width: 100%;
    height: fit-content;
    background: var(--bg-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-video, .hero-image {
    max-width: 100%;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
    pointer-events: none;
    overflow: hidden;
}

.hero-video {
    background: var(--bg-white);
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    width: 1px;
    height: 1px;
    transition: opacity 0.3s ease;
}

.hero-video.playing {
    opacity: 1;
    visibility: visible;
    position: relative;
    width: auto;
    height: auto;
    max-width: 100%;
}

.video-placeholder {
    max-width: 100%;
    width: auto;
    height: auto;
    display: block;
    border-radius: 32px;
    pointer-events: none;
    user-select: none;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 1;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button.hidden {
    opacity: 0;
    pointer-events: none;
}

.video-container.playing .video-placeholder {
    display: none;
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 15px;
    text-align: center;
    font-weight: 600;
    z-index: 10;
    pointer-events: none;
}

/* Trust Bar */
.trust-bar {
    background: var(--bg-light-gray);
    padding: 35px 0;
    box-shadow: var(--shadow-sm);
}

.trust-content {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.trust-profiles {
    display: flex;
    gap: -10px;
}

.profile-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid var(--white);
    margin-left: -15px;
    object-fit: cover;
}

.profile-circle:first-child {
    margin-left: 0;
}

.trust-text {
    flex: 1;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
}

/* Section Titles */
.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.section-title .highlight {
    color: var(--primary-button);
    font-weight: 700;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: var(--bg-light-gray);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step-card {
    text-align: center;
    padding: 50px 30px;
    background: var(--bg-white);
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--bg-light-gray);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-green);
}

.step-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
}

.step-card:hover .step-icon {
    transform: scale(1.05);
}

.step-icon svg {
    width: 40px;
    height: 40px;
}

.step-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-button);
    font-weight: 700;
}

.step-card p {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.8;
}

/* Welcome Section */
.welcome {
    padding: 100px 0;
    background: var(--bg-white);
}

.welcome-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.welcome-text .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.welcome-text p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 35px;
    color: var(--text-dark);
}

.section-image {
    width: 100%;
    height: 400px;
    object-fit: fill;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
}

.section-image:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 40px rgba(92, 142, 138, 0.25);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--bg-soft-beige);
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.features-text .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.features-text p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 35px;
    color: var(--text-dark);
}

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 15px;
}

.checkmark {
    width: 32px;
    height: 32px;
    background: var(--accent-coral);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
    font-size: 18px;
    transition: all 0.3s;
}

.checkmark:hover {
    background: var(--accent-coral-hover);
}

/* Real People Section */
.real-people {
    padding: 100px 0;
    background: var(--bg-white);
}

.real-people-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.real-people-text .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.real-people-text p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 35px;
    color: var(--text-dark);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: var(--bg-light-gray);
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto 40px;
    min-height: 300px;
}

.testimonial-card {
    display: none;
    padding: 40px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(26, 77, 62, 0.1);
}

.testimonial-card.active {
    display: block;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-text {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-dark);
    font-style: italic;
    font-weight: 400;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 4px solid var(--accent-green);
    box-shadow: var(--shadow-sm);
}

.author-info h4 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--primary-button);
    font-weight: 700;
}

.author-info p {
    font-size: 16px;
    color: var(--text-light);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.carousel-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--accent-green);
    background: var(--white);
    color: var(--accent-green);
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}

.carousel-btn:hover {
    background: var(--accent-green);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-light);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--accent-green);
    width: 35px;
    border-radius: 6px;
    box-shadow: var(--shadow-sm);
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: var(--bg-white);
}

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

.faq-item {
    margin-bottom: 20px;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(26, 77, 62, 0.1);
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: 30px;
    background: var(--bg-white);
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-button);
    transition: all 0.3s;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-icon {
    font-size: 28px;
    color: var(--accent-coral);
    transition: transform 0.3s;
    font-weight: 700;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    transition: max-height 0.5s ease-in;
}

.faq-answer p {
    padding: 0 30px 30px;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
}

/* Games Section */
.games-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.games-intro {
    text-align: center;
    font-size: 20px;
    color: var(--text-dark);
    max-width: 900px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.game-card {
    background: var(--white);
    padding: 0;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(26, 77, 62, 0.1);
    overflow: hidden;
    position: relative;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--accent-green);
    transform: scaleX(0);
    transition: transform 0.4s;
    z-index: 1;
}

.game-card:hover::before {
    transform: scaleX(1);
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-green);
}

.game-image-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.game-image {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: transform 0.4s ease;
}

.game-card:hover .game-image {
    transform: scale(1.1);
}

.game-card h3 {
    padding: 20px 20px 10px;
    margin: 0;
}

.game-card p {
    padding: 0 20px 20px;
}

.game-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-button);
    font-weight: 700;
}

.game-card p {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.8;
}

/* Coming Soon Section */
.coming-soon {
    padding: 100px 0;
    background: var(--bg-light-gray);
}

.coming-soon-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.coming-soon-text {
    max-width: 100%;
}

.coming-soon-text .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.coming-soon-description {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 0;
}

.coming-soon-stores {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
}

.store-badge-link {
    display: block;
    transition: transform 0.3s;
    line-height: 0;
    width: 300px;
}

.store-badge-link:hover {
    transform: scale(1.05);
}

.store-badge {
    height: 60px;
    width: 300px;
    object-fit: contain;
    border-radius: 8px;
    display: block;
}

/* Ensure both badges are exactly the same size */
.store-badge-link img {
    width: 300px;
    height: 120px;
    object-fit: contain;
    display: block;
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: var(--bg-soft-beige);
    color: var(--text-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}


.final-cta .container {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.cta-subtitle {
    font-size: 20px;
    margin-bottom: 45px;
    color: var(--text-dark);
}

/* Footer */
.footer {
    background: var(--bg-light-gray);
    color: var(--text-dark);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--primary-button);
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 10px;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

.footer-section ul li a:hover {
    color: var(--primary-button);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.social-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

.social-links a:hover {
    color: var(--accent-green);
}

.footer-contact {
    font-size: 14px;
    color: var(--text-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-light);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content,
    .welcome-content,
    .features-content,
    .real-people-content,
    .coming-soon-content {
        grid-template-columns: 1fr;
    }

    .features-content {
        grid-template-columns: 1fr;
    }

    .features-image {
        order: -1;
    }

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

    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .video-container {
        min-height: 400px;
    }

    .section-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-light-beige);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: var(--shadow-md);
        border-top: 2px solid var(--primary-button);
    }

    .nav.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        padding: 60px 0;
        min-height: auto;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .trust-content {
        flex-direction: column;
        text-align: center;
    }

    .trust-profiles {
        justify-content: center;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .features-list {
        grid-template-columns: 1fr;
    }

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

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

    .cta-title {
        font-size: 32px;
    }

    .cta-subtitle {
        font-size: 18px;
    }

    .coming-soon-stores {
        margin-top: 40px;
        align-items: center;
    }

    .store-badge,
    .store-badge-link img {
        height: 50px;
        width: 150px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 24px;
    }

    .btn-hero {
        padding: 12px 30px;
        font-size: 16px;
    }

    .step-card {
        padding: 30px 15px;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

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

