body {
    background: #f7f7f9;
}

/* Reuse hero section style from landing */
.hero {
    background: linear-gradient(135deg, #2c2f33, #1e2124);
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.hero-logo {
    width: 70px;
    opacity: 0.9;
    margin-bottom: 15px;
}

.content-center {
    display: flex;
    justify-content: center;
    margin: 60px 20px;
}

/* Download card */
.download-card {
    background: white;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    max-width: 400px;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    will-change: transform, box-shadow;
    margin: 20px auto;

    display: flex;
    flex-direction: column;
    align-items: center;  /* centers the button horizontally */
    gap: 14px;            /* spacing between label + button */
}

.download-card img {
    height: 60px;
    display: block; /* removes stray inline spacing */
}

.download-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.version-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.file-name {
    font-size: 12px;
    opacity: 0.8;
}

.note {
    font-size: 14px;
    color: #555;
    margin-top: 10px;
}

/* Button */
.btn-primary {
    display: inline-block;
    background: #007AFF;
    color: white;
    padding: 12px 22px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    line-height: 1.3;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 122, 255, 0.3);
}
