@font-face {
    font-family: 'Bitcount';
    src: url('assets/fonts/Bitcount.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

html {
    overscroll-behavior: none;
}

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

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 0px rgba(255, 255, 255, 0.1);
}

h1 {
    font-size: 2.4rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: #ff5c5c;
    text-shadow: 0 4px 20px rgba(255, 92, 92, 0.25);
}

p {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 25px;
    letter-spacing: 0.3px;
}

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);
}

.back-btn {
    display: inline-block;
    margin-top: 35px;
    color: #ffffff;
    text-decoration: none !important;
    font-size: 1.15rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25) !important;
    padding-bottom: 4px;
    transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.back-btn:hover {
    color: #ff5c5c;
    border-color: #ff5c5c !important;
}

@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;
    }
}