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

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    background: #f5f7f9;
    color: #2c2e2f;
    min-height: 100vh;
    padding: 32px 16px 48px;
}

.page {
    max-width: 720px;
    margin: 0 auto;
}

.logo-slot {
    width: 140px;
    height: 40px;
    margin-bottom: 24px;
  
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.logo-slot span {
    font-size: 11px;
    color: #9da3a6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.logo-slot img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.card {
    background: #fff;
    border: 1px solid #cbd2d6;
    border-radius: 8px;
    overflow: hidden;
}

.alert-banner {
    background: #d93025;
    color: #fff;
    text-align: center;
    padding: 28px 20px 24px;
    border-radius: 8px 8px 0 0;
}

.alert-icon {
    margin-bottom: 12px;
}

.alert-icon svg {
    width: 36px;
    height: 36px;
}

.alert-title {
    font-size: clamp(18px, 4vw, 22px);
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.alert-subtitle {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.card-body {
    padding: clamp(24px, 5vw, 36px) clamp(20px, 5vw, 40px) clamp(28px, 5vw, 40px);
}

.heading {
    font-size: clamp(20px, 4.5vw, 26px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
    line-height: 1.3;
}

.message {
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 32px;
}

.message strong {
    font-weight: 700;
}

.download-box {
    background: #f5f7fa;
    border: 1px solid #cbd2d6;
    border-radius: 8px;
    padding: 24px 20px 18px;
}

.download-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    margin-bottom: 16px;
}

.download-icon svg {
    width: 72px;
    height: 72px;
}

.download-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.download-meta {
    font-size: 13px;
    color: #687173;
    margin-bottom: 16px;
}

.download-btn {
    display: inline-block;
    background: #0070ba;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 24px;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.download-btn:hover {
    background: #005ea6;
}

.badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.badges img {
    height: 34px;
    width: auto;
    max-width: 110px;
    object-fit: contain;
}

.download-warning {
    text-align: center;
    font-size: 12px;
    font-style: italic;
    color: #687173;
}

.footer {
    margin-top: 36px;
    text-align: center;
}

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

.footer-links a {
    color: #0070ba;
    text-decoration: none;
    font-size: 13px;
}

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

.copyright {
    font-size: 11px;
    color: #687173;
}

@media (max-width: 640px) {
    .download-inner {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }

    .badges {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
}
