* {
    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;
    line-height: 1.5;
}

.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: 120px;
    height: 120px;
    margin-bottom: 16px;
    border-radius: 24px;
    box-shadow: 0 2px 12px rgba(44, 62, 80, 0.10);
}

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

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;
}

/* Card internal spacing (prevents elements from looking “stuck together”) */
.card > input,
.card > button,
.card > a.button,
.card > a.btn {
    margin-top: 12px;
}

.card > p + p {
    margin-top: 10px;
}

.card ul li + li {
    margin-top: 6px;
}

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;
}

.actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 12px;
}

/* Extra spacing after the header navigation buttons */
.container > .actions {
    margin-bottom: 26px;
}

/* Prevent first card from visually touching the header area */
.container > .card:first-of-type {
    margin-top: 10px;
}

.muted {
    color: #666;
    margin-top: 8px;
    margin-bottom: 8px;
}

label {
    display: block;
}

label input {
    margin-top: 6px;
}

form label + label {
    margin-top: 12px;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="file"],
input[readonly] {
    width: 100%;
    font-size: 16px;
    padding: 12px;
    border-radius: 12px;
    box-sizing: border-box;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #fff;
}

input[readonly] {
    background: rgba(255, 255, 255, 0.75);
}

.btn {
    appearance: none;
    border: 0;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 10px;
    background: #e0eafc;
    color: #125ea2;
    box-shadow: 0 2px 10px rgba(44, 62, 80, 0.08);
}

.btn.primary {
    background: #1e88e5;
    color: #fff;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.status {
    padding: 10px;
    background: #f3f3f3;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 12px;
}

.progress {
    height: 14px;
    background: #eee;
    border-radius: 7px;
    overflow: hidden;
}

.bar {
    height: 100%;
    width: 0%;
    background: #1e88e5;
}

.pct {
    text-align: center;
    font-size: 13px;
    margin-top: 6px;
    color: #444;
}

.button {
    display: inline-block;
    text-decoration: none;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 10px;
    border: 1px solid rgba(25, 118, 210, 0.25);
    background: #fff;
    color: #1976d2;
    box-shadow: 0 2px 10px rgba(44, 62, 80, 0.08);
}

.button:hover {
    background: #f4f8ff;
    color: #125ea2;
}

.button.primary {
    background: linear-gradient(90deg, #e3ffe6 0%, #e0eafc 100%);
}

/* === 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;
    }
}


