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

@font-face {
    font-family: 'Scope';
    src: url('scope-variable.ttf');
    font-display: swap;
}

body {
    font-family: 'Scope', sans-serif;
    font-variation-settings: "wght" 100, "wdth" 600;
    text-transform: uppercase;
    background-color: #000;
    font-size: clamp(16px, 6vw, 36px);
    line-height: 1.2;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding: 20px;
}

.container {
    width: 90%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    margin: 0.5em 0;
    color: #ffffff;
    font-size: clamp(32px, 12vw, 72px);
}

.redirect-text {
    font-size: clamp(24px, 6vw, 36px);
    margin-top: 1.5em;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 0.8em;
}

.redirect-text p {
    margin: 0;
}

.redirect-url {
    color: #029aff;
    text-decoration: none;
    word-break: keep-all;
    font-size: clamp(26px, 7vw, 40px);
    font-weight: bold;
}

.redirect-url:hover {
    color: #46eb21;
    text-decoration: underline;
}

.actions {
    display: flex;
    justify-content: center;
    margin-top: 2em;
    width: 100%;
    gap: 2em;
    flex-wrap: wrap;
}

.action-button a {
    color: #029aff;
    text-decoration: none;
    font-size: clamp(16px, 4vw, 24px);
    display: inline-block;
    padding: 0.4em 0.8em;
    border: 1px solid #029aff;
    min-width: 120px;
    text-align: center;
    transition: all 0.3s ease;
}

.action-button a:hover {
    color: #46eb21;
    border-color: #46eb21;
}

.go-back a::before {
    content: "←";
    margin-right: 0.5em;
}

.go-forward a::after {
    content: "→";
    margin-left: 0.5em;
}

::selection {
    color: #fff;
    background: #3502ff;
}

.footer p {
    color: #ffffff;
    font-size: clamp(14px, 3vw, 20px);
    margin-top: 1em;
    font-family: poppins, sans-serif;
}

.footer-link a {
    color: #029aff;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
}

.footer-link a:hover {
    color: #46eb21;
    text-decoration: underline;
}