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

html, body {
    height: 100%;
}

body {
    font-family: 'Segoe UI', 'Arial Rounded', system-ui, sans-serif;
    background: #FFFFFF;
    color: #333333;
    line-height: 1.6;
    overflow-x: hidden;
}

.wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.container {
    width: 100%;
    max-width: 500px;
    padding: 40px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    flex: 1;
    justify-content: center;
}

.app-icon {
    width: 300px;
    height: 300px;
    object-fit: contain;
}

h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333333;
    letter-spacing: -0.5px;
}

.tagline {
    font-size: 1.1rem;
    color: #666666;
}

.store-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.store-btn img {
    height: 44px;
    width: auto;
    display: block;
    transition: opacity 0.2s ease;
}

.store-btn img:hover {
    opacity: 0.8;
}

footer {
    width: 100%;
    max-width: 500px;
    padding: 20px 20px 30px;
    text-align: center;
    border-top: 1px solid #E0E0E0;
    position: relative;
    z-index: 1;
    background: #FFFFFF;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.footer-links a {
    color: #333333;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-links a:hover {
    color: #666666;
}

.copyright {
    font-size: 0.8rem;
    color: #999999;
}

.policy-container {
    width: 100%;
    max-width: 700px;
    padding: 40px 24px 60px;
    text-align: left;
    background: #FFFFFF;
    border-radius: 12px;
    position: relative;
    z-index: 1;
}

.policy-container h1 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.policy-container h2 {
    font-size: 1.2rem;
    margin-top: 24px;
    margin-bottom: 10px;
    color: #555555;
}

.policy-container p {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #444444;
}

.policy-container ul {
    margin-bottom: 16px;
    padding-left: 20px;
}

.policy-container li {
    margin-bottom: 6px;
    font-size: 0.95rem;
    color: #444444;
}

.policy-container a {
    color: #333333;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.policy-container a:hover {
    color: #666666;
}

.back-link {
    display: inline-block;
    margin-top: 30px;
    font-weight: 600;
    font-size: 0.95rem;
}

.petals-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.petal {
    position: absolute;
    top: -60px;
    opacity: 0.8;
    pointer-events: none;
    animation: fall linear forwards;
}

@keyframes fall {
    0% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.9;
    }
    80% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(110vh) rotate(720deg) scale(0.3);
        opacity: 0;
    }
}
