* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
    background: #080808;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
}

.background {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(255,255,255,0.08),
            transparent 40%
        );
    pointer-events: none;
}

.container,
.admin-container {
    width: min(720px, calc(100% - 32px));
    position: relative;
    z-index: 1;
    text-align: center;
}

.admin-container {
    max-width: 520px;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 4px;
    margin-bottom: 35px;
}

.badge {
    display: inline-block;
    padding: 7px 12px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 999px;
    color: #aaa;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
}

h1 {
    font-size: clamp(40px, 7vw, 68px);
    line-height: 1;
    letter-spacing: -3px;
    margin-bottom: 18px;
}

.description {
    color: #8d8d8d;
    font-size: 16px;
    margin-bottom: 35px;
}

.download-card {
    display: flex;
    align-items: center;
    gap: 18px;
    text-align: left;

    padding: 18px;

    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 18px;

    backdrop-filter: blur(15px);
}

.file-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 14px;

    background: #ffffff;
    color: #000000;

    font-size: 13px;
    font-weight: 900;
}

.file-info {
    flex: 1;
    min-width: 0;
}

.file-info div {
    font-size: 15px;
    font-weight: 700;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-info span {
    display: block;
    margin-top: 6px;

    color: #777;
    font-size: 12px;
}

.download-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;
    padding: 0 22px;

    border-radius: 12px;

    background: #ffffff;
    color: #000000;

    text-decoration: none;
    border: none;

    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;

    cursor: pointer;

    transition:
        transform .2s ease,
        opacity .2s ease;
}

.download-button:hover {
    transform: translateY(-2px);
    opacity: .9;
}

.updated {
    margin-top: 18px;
    color: #555;
    font-size: 12px;
}

footer {
    margin-top: 55px;
    color: #444;
    font-size: 12px;
}

form {
    text-align: left;
    padding: 25px;

    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.09);

    border-radius: 18px;
}

label {
    display: block;
    margin: 0 0 8px;

    color: #999;
    font-size: 12px;
    font-weight: 700;
}

input {
    width: 100%;
    height: 48px;

    margin-bottom: 20px;
    padding: 0 14px;

    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;

    outline: none;

    background: rgba(255,255,255,0.05);
    color: white;

    font-size: 14px;
}

input:focus {
    border-color: rgba(255,255,255,0.3);
}

input[type="file"] {
    padding-top: 14px;
}

.upload-button {
    width: 100%;
}

#status {
    margin-top: 18px;
    color: #aaa;
    font-size: 13px;
}

@media (max-width: 600px) {

    h1 {
        letter-spacing: -2px;
    }

    .download-card {
        flex-wrap: wrap;
    }

    .file-info {
        width: calc(100% - 80px);
    }

    .download-button {
        width: 100%;
    }

}