*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.9)), url('../img/background.avif') center/cover no-repeat;
    color: #fff;
}

main {
    display: grid;
    place-items: center;
    min-height: 100vh;
    padding: 1.5rem;
}

.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    text-align: center;
    max-width: 480px;
    width: 100%;
}

.brand_logo {
    width: 100%;
    max-width: 240px;
    height: auto;
}

.main-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #60a5fa;
    background: rgba(96, 165, 250, 0.1);
    padding: 4px 12px;
    border-radius: 999px;
    border: 1px solid rgba(96, 165, 250, 0.2);
}

.description {
    margin: 0;
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.6;
}

.credits {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #64748b;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.25rem;
    width: 100%;
    justify-content: center;
}

.credits a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

.credits a:hover {
    text-decoration: underline;
}