:root {
    color-scheme: dark;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px;
    /* background: radial-gradient(circle at top, #1f2937 0%, #101010 60%); */
    background-color: #101010;
    color: #f5f7fa;
    font-family: Inter, "Segoe UI", Roboto, sans-serif;
}

.hero {
    width: min(100%, 760px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 32px 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
}

h1 {

}

img {
    max-width: min(100%, 460px);
    height: auto;
    border-radius: 16px;
}

.actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.download-btn {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
    padding: 12px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    text-align: center;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.22);
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.3);
}

h1 {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
}

p {
    margin: 0;
    max-width: 520px;
    line-height: 1.6;
    color: #d1d5db;
    text-align: center;
}