* {
    box-sizing: border-box;
    transition: background 0.3s, box-shadow 0.3s, color 0.2s;
}

body {
    margin: 0;
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(135deg, #e0eafc 0%, #cfdef3 100%);
    color: #222;
}

.container {
    max-width: 720px;
    margin: 0 auto;
    padding: 32px 20px 48px;
    text-align: center;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.08);
    background: rgba(255,255,255,0.85);
}

.logo {
    width: 50%;
    height: 50%;
    margin-bottom: 16px;
    border-radius: 24px;
    box-shadow: 0 2px 12px rgba(44, 62, 80, 0.10);
}

.logo.small {
    width: 140px;
    height: 140px;
}

h1 {
    margin: 8px 0;
    font-size: 2.2rem;
}

.subtitle {
    color: #666;
    margin-bottom: 24px;
}

.card {
    background: #fff;
    border-radius: 18px;
    padding: 24px 24px 20px 24px;
    margin-bottom: 20px;
    box-shadow: 0 6px 24px rgba(44, 62, 80, 0.08);
    text-align: left;
    transition: box-shadow 0.3s, transform 0.3s;
}

.card:hover {
    box-shadow: 0 12px 32px rgba(44, 62, 80, 0.16);
    transform: translateY(-2px) scale(1.01);
}

.card h2 {
    margin-top: 0;
}

ul {
    padding-left: 20px;
}

.link {
    display: inline-block;
    margin-top: 8px;
    color: #1976d2;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 8px;
    background: linear-gradient(90deg, #e3ffe6 0%, #e0eafc 100%);
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.06);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.link:hover {
    background: linear-gradient(90deg, #d0eaff 0%, #e3ffe6 100%);
    color: #125ea2;
    text-decoration: underline;
    box-shadow: 0 4px 16px rgba(44, 62, 80, 0.10);
}

footer {
    margin-top: 32px;
    font-size: 0.98rem;
    color: #555;
    background: none;
    border-radius: 0 0 18px 18px;
    padding-bottom: 12px;
}

footer a {
    color: #1976d2;
    text-decoration: none;
    font-weight: 500;
    margin: 0 4px;
    padding: 2px 8px;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}
footer a:hover {
    background: #e0eafc;
    color: #125ea2;
}
/* === GOOGLE PLAY BUTTON – FINAL === */

.playstore-link {
    display: block;
    text-align: center;
    margin: 24px 0;
}

.playstore-badge {
    width: 180px;
    height: auto;
    max-width: 100%;
}

/* Desktop */
@media (min-width: 768px) {
    .playstore-badge {
        width: 200px;
    }
}


