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

:root {
    --primary: #1D3557;
    /* Navy blue */
    --secondary: #E9C46A;
    /* Gold */
    --accent: #2A9D8F;
    /* Teal */
    --paper: #F1FAEE;
    /* Light cream */
    --paper-border: #A8DADC;
    /* Light teal border */
    --ink: #264653;
    /* Dark blue-gray ink */
    --highlight: #F4A261;
    /* Light orange */
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #E9F1F7;
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="%23EDE7DC"/><path d="M0 0 L100 100 M100 0 L0 100" stroke="%23DCD6CC" stroke-width="0.5"/></svg>');
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--ink);
}

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

/* Header Styles */
header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(248, 243, 233, 0.95);
    backdrop-filter: blur(5px);
    border-bottom: 1px solid var(--paper-border);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 28px;
    font-weight: 700;
    color: var(--ink);
    text-decoration: none;
}

.logo i {
    color: var(--accent);
    background: var(--paper);
    padding: 8px;
    border-radius: 50%;
    border: 1px solid var(--paper-border);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo:hover i {
    transform: rotate(360deg);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

nav a {
    color: var(--ink);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s;
}

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

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}

nav a:hover::after {
    width: 100%;
}

.cta-button {
    background: var(--accent);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    background: #249085;
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
}

.mobile-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--ink);
}

/* Paper effect */
.paper-card {
    background: var(--paper);
    border: 1px solid var(--paper-border);
    border-radius: 4px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.paper-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 0%, transparent 100%);
}

/* Hero Section - Fixed for mobile */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 650px;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: textPopIn 1s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.hero h1 span {
    color: var(--accent);
    display: block;
    font-style: italic;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    color: #5a4a39;
    animation: fadeInUp 1s ease-out 0.3s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    animation: fadeInUp 1s ease-out 0.6s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.secondary-button {
    background: transparent;
    color: var(--ink);
    border: 2px solid var(--paper-border);
    padding: 12px 28px;
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.secondary-button:hover {
    background: rgba(74, 124, 89, 0.05);
    border-color: var(--accent);
    color: var(--accent);
}

.hero-image {
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    max-width: 600px;
    z-index: 1;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.1));
    animation: float 6s ease-in-out infinite;
}

/* Features Section */
.features {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--accent);
}

.section-title p {
    max-width: 700px;
    margin: 20px auto 0;
    color: #5a4a39;
    font-size: 1.1rem;
}

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

.feature-card {
    background: var(--paper);
    border: 1px solid var(--paper-border);
    border-radius: 4px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.feature-icon {
    font-size: 50px;
    margin-bottom: 20px;
    color: var(--accent);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* How to Play */
.how-to-play {
    padding: 100px 0;
    background: #f0eade;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    counter-reset: step-counter;
}

.step-card {
    background: var(--paper);
    border: 1px solid var(--paper-border);
    border-radius: 4px;
    padding: 30px;
    text-align: center;
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: transform 0.5s ease;
    opacity: 0;
    transform: translateY(30px);
}

.step-card.animate {
    animation: fadeInUp 0.8s ease-out forwards;
}

.step-card:hover {
    transform: translateY(-10px) rotateZ(1deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.step-card:before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    top: -8px;
    left: -8px;
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: bold;
    z-index: 1;
    animation: pulse 2s infinite;
}

.step-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--accent);
}

/* Game Preview */
.game-preview {
    padding: 100px 0;
}

.preview-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.preview-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--accent);
}

.preview-content ul {
    list-style: none;
    margin: 25px 0;
}

.preview-content ul li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    border-bottom: 1px dashed var(--paper-border);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-20px);
}

.preview-content ul li.animate {
    animation: slideIn 0.5s ease-out forwards;
}

.preview-content ul li:hover {
    transform: translateX(5px);
    color: var(--accent);
}

.preview-content ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 1.2rem;
}

.bingo-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--paper-border);
    position: relative;
    max-width: 500px;
    margin: 0 auto;
    animation: cardFlip 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    transform-style: preserve-3d;
    transform-origin: center;
}

.card-header {
    background: var(--accent);
    color: white;
    padding: 18px;
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    letter-spacing: 1px;
    animation: slideDown 0.8s ease-out;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
    padding: 18px;
    background: #e8e0d0;
}

.card-cell {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid #d9c8a9;
    font-weight: bold;
    font-size: 2rem;
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease;
    transform: rotateY(0deg);
    transform-style: preserve-3d;
}

.card-cell.free {
    background: var(--highlight);
    color: var(--ink);
    font-weight: bold;
}

.card-cell.marked:after {
    content: '✕';
    position: absolute;
    font-size: 2rem;
    color: var(--accent);
    z-index: 2;
    animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-cell.marked {
    background: rgba(74, 124, 89, 0.1);
}

.card-cell:hover {
    transform: scale(1.05);
    z-index: 1;
    box-shadow: 0 0 15px rgba(42, 157, 143, 0.3);
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: #f0eade;
}

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

.testimonial-card {
    background: var(--paper);
    border: 1px solid var(--paper-border);
    border-radius: 4px;
    padding: 30px;
    position: relative;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.testimonial-card.animate {
    animation: fadeInUp 0.8s ease-out forwards;
}

.testimonial-card:hover {
    transform: translateY(-10px) rotate(0.5deg);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-card:before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    font-family: 'Playfair Display', serif;
    color: rgba(74, 124, 89, 0.1);
    line-height: 1;
}

.testimonial-content {
    margin-top: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    margin-right: 15px;
    transition: transform 0.3s ease;
}

.testimonial-card:hover .author-avatar {
    transform: scale(1.1);
}

/* Download Section */
.download {
    padding: 100px 0;
    text-align: center;
    background: var(--accent);
    color: white;
    position: relative;
    overflow: hidden;
}

.download::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    animation: pulseBg 3s infinite alternate;
}

.download-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.download-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: white;
    animation: textPopIn 1s ease-out;
}

.download-content p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 1s ease-out 0.3s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.app-stores {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.store-button {
    background: white;
    border-radius: 8px;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--ink);
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.store-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
}

.store-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.store-button:hover::before {
    animation: shine 1.5s ease;
}

.store-button i {
    font-size: 2rem;
    color: var(--accent);
}

.coming-soon {
    background: rgba(255, 255, 255, 0.2);
    border: 2px dashed rgba(255, 255, 255, 0.4);
    color: white;
    cursor: not-allowed;
    animation: pulseSoft 2s infinite;
}

.coming-soon i {
    color: rgba(255, 255, 255, 0.7);
}

.coming-soon div {
    color: white;
}

.coming-soon:hover {
    transform: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background: var(--ink);
    padding: 60px 0 30px;
    color: #d9c8a9;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.footer-logo span {
    color: var(--highlight);
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

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

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent);
    transform: translateY(-3px) rotate(10deg);
}

.footer-heading {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--highlight);
    transform: translateX(5px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

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

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

    100% {
        transform: translateY(-50%) translateX(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(42, 157, 143, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(42, 157, 143, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(42, 157, 143, 0);
    }
}

@keyframes pulseSoft {
    0% {
        opacity: 0.8;
        transform: scale(1);
    }

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

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

@keyframes pulseBg {
    0% {
        background-size: 150% 150%;
        background-position: 0% 0%;
    }

    100% {
        background-size: 200% 200%;
        background-position: 100% 100%;
    }
}

@keyframes textPopIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

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

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideDown {
    0% {
        transform: translateY(-20px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes bounce {

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

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

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

@keyframes popIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    70% {
        transform: scale(1.2);
        opacity: 1;
    }

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

@keyframes cardAppear {
    0% {
        opacity: 0;
        transform: translateY(30px) rotateX(5deg);
    }

    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

@keyframes cardFlip {
    0% {
        opacity: 0;
        transform: rotateY(90deg) scale(0.8);
    }

    70% {
        transform: rotateY(-10deg) scale(1.05);
    }

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

@keyframes shine {
    to {
        transform: translateX(100%);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* New Chatbot Styles */
.chatbot-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10000;
    font-family: 'Open Sans', sans-serif;
}

.chatbot-button {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.chatbot-button:hover {
    transform: scale(1.05);
    background-color: #249085;
    animation: none;
}

.chatbot-button i {
    font-size: 28px;
}

.chat-window {
    width: 350px;
    height: 450px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
    opacity: 0;
    position: absolute;
    bottom: 85px;
    right: 0;
}

.chatbot-container.open .chat-window {
    transform: scale(1);
    opacity: 1;
}

.chat-header {
    background-color: var(--accent);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-title {
    font-weight: 600;
    font-size: 18px;
}

.close-chat {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 20px;
    padding: 5px;
}

.chat-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    background-color: var(--paper);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.message {
    max-width: 80%;
    padding: 10px 15px;
    border-radius: 18px;
    position: relative;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.user-message {
    background-color: var(--accent);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 5px;
}

.bot-message {
    background-color: white;
    border: 1px solid var(--paper-border);
    align-self: flex-start;
    border-bottom-left-radius: 5px;
}

.chat-input-area {
    padding: 15px;
    display: flex;
    border-top: 1px solid var(--paper-border);
    background-color: white;
}

.chat-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid var(--paper-border);
    border-radius: 25px;
    outline: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
}

.send-button {
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    margin-left: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.send-button:hover {
    background: #249085;
}

.typing-indicator {
    display: none;
    background-color: white;
    border: 1px solid var(--paper-border);
    padding: 8px 15px;
    border-radius: 18px;
    align-self: flex-start;
    font-size: 13px;
    color: #777;
}

.typing-indicator span {
    animation: blink 1.4s infinite;
    animation-fill-mode: both;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes blink {
    0% {
        opacity: 0.2;
    }

    20% {
        opacity: 1;
    }

    100% {
        opacity: 0.2;
    }
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero-image {
        width: 40%;
        right: -80px;
    }

    .preview-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .mobile-menu {
        display: block;
    }

    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--paper);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        border-top: 1px solid var(--paper-border);
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
        align-items: flex-start;
    }

    nav.active ul {
        display: flex;
    }

    .hero {
        text-align: center;
        padding-top: 150px;
        /* Adjust min-height for mobile */
        min-height: auto;
        padding-bottom: 50px;
        display: block;
    }

    .hero-content {
        margin: 0 auto;
        padding-bottom: 30px;
    }

    .hero-image {
        position: relative;
        width: 90%;
        max-width: 400px;
        margin: 0 auto;
        /* Reset margin */
        right: auto;
        top: auto;
        transform: none;
        animation: fadeInUpMobile 1s ease-out 0.8s forwards;
        opacity: 0;
    }

    .hero-buttons {
        justify-content: center;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding-top: 120px;
    }

    .hero h1 {
        font-size: 2.3rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .app-stores {
        flex-direction: column;
        align-items: center;
    }

    .hero-image {
        max-width: 320px;
    }
}

@keyframes fadeInUpMobile {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}