:root {
    --bg-color: #ffffff;
    --text-color: #000000;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --container-padding: 2rem;
}

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

body {
    font-family: var(--font-family);
    background: linear-gradient(to bottom, #ffffff 50%, #67FF4E 100%);
    background-attachment: fixed;
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    line-height: 1.4;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 0 var(--container-padding);
}

header {
    width: 100%;
    padding: 2rem 0;
    display: flex;
    justify-content: flex-start;
}

header .container {
    display: flex;
}

.logo {
    height: 32px;
    width: auto;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 4rem;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    max-width: 800px;
}

.mascot {
    width: 280px;
    height: auto;
    display: block;
}

.quote {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    padding: 0 1rem;
    letter-spacing: -0.02em;
}

.app-store-button {
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.app-store-button:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.app-store-button img {
    height: 48px;
    width: auto;
}

footer {
    width: 100%;
    padding: 2rem 0;
    color: #549C5A;
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .quote {
        font-size: 1.8rem;
    }

    .mascot {
        width: 200px;
    }

    header {
        justify-content: center;
        padding: 1.5rem 0;
    }

    header .container {
        justify-content: center;
    }
}