@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('fonts/Inter.woff2') format('woff2');
}

:root {
    --bg-color: #000000;
    --text-color: #ffffff;
    --accent-color: #ffffff;
    --grid-color: #333333;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-family);
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 50px 50px;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
    z-index: -1;
    pointer-events: none;
}

.glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

.container {
    text-align: center;
    z-index: 1;
    padding: 2rem;
    max-width: 800px;
}

h1 {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    margin-bottom: 0.5rem;
    background: linear-gradient(to bottom right, #fff 30%, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

p.subtitle {
    font-size: 1.25rem;
    color: #888;
    margin-bottom: 3rem;
    font-weight: 400;
    letter-spacing: -0.02em;
}

p.minitext {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 3rem;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-color);
    color: var(--bg-color);
    font-size: 1rem;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.download-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.download-btn:active {
    transform: scale(0.98);
}

.download-btn svg {
    margin-right: 8px;
    width: 20px;
    height: 20px;
}

.version-tag {
    margin-top: 1.5rem;
    display: inline-block;
    font-size: 0.875rem;
    color: #444;
    border: 1px solid #222;
    padding: 4px 12px;
    border-radius: 12px;
    transition: color 0.2s;
}

.version-tag:hover {
    color: #666;
    border-color: #333;
}

footer {
    position: absolute;
    bottom: 2rem;
    font-size: 0.75rem;
    color: #333;
}
