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

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #e8e0f0;
    background: #0a0418;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.stars-bg {
    position: fixed;
    inset: 0;
    background: url('images/stars.png') center/cover no-repeat;
    opacity: 0.4;
    z-index: -2;
}

/* Floating orbs */
.orbs-floating {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    opacity: 0.25;
}

.orb-1 { width: 60px; top: 10%; left: 5%; animation-delay: 0s; animation-duration: 9s; }
.orb-2 { width: 45px; top: 25%; right: 8%; animation-delay: 1.5s; animation-duration: 7s; }
.orb-3 { width: 50px; top: 55%; left: 10%; animation-delay: 3s; animation-duration: 10s; }
.orb-4 { width: 40px; top: 70%; right: 15%; animation-delay: 2s; animation-duration: 8s; }
.orb-5 { width: 55px; top: 85%; left: 20%; animation-delay: 4s; animation-duration: 11s; }
.orb-6 { width: 35px; top: 40%; right: 25%; animation-delay: 0.5s; animation-duration: 6s; }

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

/* Main content */
main {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 24px 40px;
    text-align: center;
}

/* Hero */
.hero {
    padding: 40px 0 60px;
}

.app-icon {
    width: 180px;
    height: 180px;
    border-radius: 36px;
    box-shadow: 0 8px 40px rgba(100, 60, 200, 0.5);
    margin-bottom: 24px;
}

h1 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #a78bfa, #f472b6, #facc15);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.tagline {
    font-size: 1.3rem;
    color: #c4b5fd;
    font-weight: 600;
    margin-bottom: 16px;
}

.description {
    font-size: 1.05rem;
    color: #a8a0b8;
    max-width: 500px;
    margin: 0 auto 36px;
    line-height: 1.6;
}

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

.store-btn {
    transition: transform 0.2s, opacity 0.2s;
    display: inline-block;
}

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

.store-btn svg rect {
    stroke: #555;
    stroke-width: 0.7;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    padding: 40px 0;
}

.feature {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px 24px;
    backdrop-filter: blur(8px);
    transition: transform 0.2s;
}

.feature:hover {
    transform: translateY(-4px);
}

.feature-icon {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 16px;
}

.feature h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: #d4bfff;
}

.feature p {
    font-size: 0.95rem;
    color: #9890a8;
    line-height: 1.5;
}

/* Footer */
footer {
    text-align: center;
    padding: 32px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

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

.footer-links a {
    color: #a78bfa;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    text-decoration: underline;
}

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