body {
    font-family: "Bitcount", system-ui, sans-serif;
    min-height: 100vh;
    background: radial-gradient(ellipse at bottom right, #400202 0%, #050000 50%, #000000 100%);
    background-attachment: fixed;
    background-size: cover;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
    overscroll-behavior: none;
}

.license-card {
    max-width: 720px;
    width: 100%;
    background: rgba(18, 3, 3, 0.45);
    backdrop-filter: blur(40px) saturate(130%);
    -webkit-backdrop-filter: blur(40px) saturate(130%);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 24px;
    padding: 45px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

pre {
    background: rgba(0, 0, 0, 0.45);
    padding: 24px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #b8b8b8;
    overflow-x: auto;
    white-space: pre-wrap;
    box-shadow: inset 0 4px 20px rgba(0, 0, 0, 0.5);
}

img {
    width: 20px;
    vertical-align: middle;
}

.break {
    flex-direction: column;
}

@media (max-width: 600px) {
    .license-card {
        padding: 25px;
        border-radius: 16px;
    }

    h1 {
        font-size: 1.8rem;
    }

    p {
        font-size: 1.1rem;
    }

    pre {
        padding: 16px;
        font-size: 0.85rem;
    }
}