body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #F97794, #F85D6A);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

.container {
    padding: 2rem;
    max-width: 600px;
    width: 100%;
    box-sizing: border-box;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.logo img {
    width: 320px !important;
    height: 320px !important;
    max-width: 85vw;
    max-height: 85vw;
    animation: logo-zoom-in-up 1s cubic-bezier(0.23, 1, 0.32, 1) both;
}

@keyframes logo-zoom-in-up {
    0% {
        opacity: 0;
        transform: scale(0.7) translateY(40px);
    }
    60% {
        opacity: 1;
        transform: scale(1.08) translateY(-8px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.logo h1 {
    font-size: 4rem;
    margin: 0;
    font-weight: 700;
}

.subtitle {
    font-size: 1.25rem;
    max-width: 400px;
    margin: 0 auto 2.5rem auto;
    opacity: 0.9;
}

.store-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.store-button img {
    height: 60px;
    width: auto;
    transition: transform 0.2s ease-in-out;
}

.store-button:hover img {
    transform: scale(1.05);
}

footer {
    position: absolute;
    bottom: 20px;
    font-size: 0.9rem;
}

footer a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
}

footer a:hover {
    opacity: 1;
}

footer span {
    margin: 0 0.5rem;
    opacity: 0.8;
}

/* Styles for Legal Pages */
.legal-page {
    background: #f4f4f4;
    color: #333;
    justify-content: flex-start;
}

.legal-container {
    background: white;
    padding: 2rem 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 3rem auto;
    text-align: left;
}

.legal-container h1 {
    margin-top: 0;
}

.back-link {
    display: inline-block;
    margin-top: 2rem;
    color: #F85D6A;
    text-decoration: none;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 900px) {
    .container {
        max-width: 95vw;
        padding: 1rem;
    }
    .logo img {
        width: 280px !important;
        height: 280px !important;
        max-width: 80vw;
        max-height: 80vw;
    }
    .subtitle {
        font-size: 1rem;
    }
    .store-button img {
        height: 50px;
    }
    .legal-container {
        margin: 1rem;
        padding: 1.5rem;
    }
}

@media (max-width: 500px) {
    .container {
        padding: 0.5rem;
    }
    .logo img {
        width: 240px !important;
        height: 240px !important;
        max-width: 85vw;
        max-height: 85vw;
    }
    .subtitle {
        font-size: 0.95rem;
    }
}