body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #1e88e5, #26c6da);
    color: white;
    text-align: center;
    overflow-x: hidden;
    animation: fadeIn 1.4s ease-out;
}

/* Fade-in animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Container */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* OW icon */
.ow-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 600;
    color: white;
    backdrop-filter: blur(5px);
}

h1 {
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: 600;
}

p.subtitle {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
}

/* App cards */
.card {
    background: rgba(255,255,255,0.15);
    border-radius: 18px;
    padding: 25px 20px;
    margin-bottom: 35px;
    backdrop-filter: blur(6px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    animation: fadeIn 1.2s ease-out;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.22);
}

.card-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.card-text {
    font-size: 15px;
    opacity: 0.85;
    margin-bottom: 8px;
}

.card-status {
    font-size: 14px;
    opacity: 0.9;
}

/* CTA button */
.cta-btn {
    margin-top: 40px;
    display: inline-block;
    padding: 14px 26px;
    font-size: 18px;
    background: white;
    color: #0077cc;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    transition: 0.25s;
}

.cta-btn:hover {
    background: #f2f2f2;
    transform: translateY(-3px);
}

/* iPhone 14 optimization */
@media (max-width: 430px) {
    h1 { font-size: 30px; }
    p.subtitle { font-size: 16px; }
    .card { padding: 20px; }
    .card-title { font-size: 20px; }
}
