* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --white: #ffffff;

    --text:
        #f4f5f7;

    --muted:
        rgba(
            255,
            255,
            255,
            0.65
        );

    --red:
        #ffabb0;

    --red-border:
        rgba(
            255,
            109,
            117,
            0.45
        );

    --red-background:
        rgba(
            150,
            55,
            61,
            0.16
        );
}

html {
    min-height: 100%;

    scroll-behavior: smooth;
}

body {
    min-height: 100vh;

    font-family:
        "Manrope",
        sans-serif;

    color:
        var(--text);

    background:
        radial-gradient(
            circle at 50% -10%,
            rgba(255, 109, 117, 0.055),
            transparent 42%
        ),
        linear-gradient(
            180deg,
            #1a1d21 0%,
            #14171a 55%,
            #101215 100%
        );

    overflow-x: hidden;
}

body::before {
    content: "";

    position: fixed;

    inset: 0;

    z-index: 0;

    pointer-events: none;

    opacity: 0.23;

    background-image:
        radial-gradient(
            circle,
            rgba(255, 255, 255, 0.52) 1px,
            transparent 1.15px
        );

    background-size:
        18px
        18px;
}

.header {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 110px;

    z-index: 20;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:
        rgba(17, 19, 22, 0.74);

    backdrop-filter:
        blur(24px);

    -webkit-backdrop-filter:
        blur(24px);

    border-bottom:
        1px
        solid
        rgba(255, 255, 255, 0.23);

    box-shadow:
        0
        12px
        35px
        rgba(0, 0, 0, 0.18);
}

.header::after {
    content: "";

    position: absolute;

    bottom: 0;
    left: 0;

    width: 100%;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.38),
            transparent
        );
}

.header-dots {
    position: absolute;

    inset: 0;

    opacity: 0.2;

    pointer-events: none;

    background-image:
        radial-gradient(
            circle,
            rgba(255, 255, 255, 0.75) 1px,
            transparent 1.2px
        );

    background-size:
        18px
        18px;
}

.header-content {
    position: relative;

    z-index: 2;

    width: 100%;

    padding:
        0
        55px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.site-name {
    color: white;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 24px;
    font-weight: 700;

    letter-spacing: -0.035em;

    text-decoration: none;

    text-shadow:
        0
        3px
        16px
        rgba(0, 0, 0, 0.25);
}

.back-button {
    min-width: 145px;

    padding:
        14px
        21px;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px
        solid
        var(--red-border);

    border-radius: 12px;

    color:
        var(--red);

    background:
        var(--red-background);

    backdrop-filter:
        blur(12px);

    -webkit-backdrop-filter:
        blur(12px);

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition:
        transform 0.18s ease,
        background 0.18s ease,
        border-color 0.18s ease;
}

.back-button:hover {
    transform:
        translateY(-2px);

    background:
        rgba(150, 55, 61, 0.25);

    border-color:
        rgba(255, 109, 117, 0.68);
}

.page {
    position: relative;

    z-index: 1;

    width:
        min(
            1200px,
            calc(100% - 70px)
        );

    min-height: 100vh;

    margin:
        0
        auto;

    padding:
        175px
        0
        110px;
}

.page-heading {
    max-width: 850px;

    margin:
        0
        auto
        70px;

    text-align: center;
}

.small-title {
    margin-bottom: 13px;

    color:
        rgba(
            255,
            255,
            255,
            0.48
        );

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.25em;
}

h1 {
    color: white;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(
            70px,
            8vw,
            110px
        );

    font-weight: 700;

    line-height: 0.94;

    letter-spacing: -0.065em;

    text-shadow:
        0
        5px
        30px
        rgba(0, 0, 0, 0.28);
}

.description {
    max-width: 650px;

    margin:
        24px
        auto
        0;

    color:
        var(--muted);

    font-size: 16px;
    font-weight: 500;

    line-height: 1.75;
}

.empty-state {
    position: relative;

    width: 100%;
    max-width: 900px;

    min-height: 380px;

    margin:
        0
        auto;

    display: flex;

    align-items: center;
    justify-content: center;

    overflow: hidden;

    border:
        1px
        solid
        rgba(255, 255, 255, 0.15);

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(22, 24, 28, 0.6),
            rgba(12, 14, 17, 0.48)
        );

    backdrop-filter:
        blur(20px);

    -webkit-backdrop-filter:
        blur(20px);

    box-shadow:
        0
        25px
        60px
        rgba(0, 0, 0, 0.2);
}

.empty-state::after {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 109, 117, 0.72),
            transparent
        );
}

.empty-dots {
    position: absolute;

    inset: 0;

    opacity: 0.14;

    pointer-events: none;

    background-image:
        radial-gradient(
            circle,
            rgba(255, 255, 255, 0.7) 1px,
            transparent 1.2px
        );

    background-size:
        17px
        17px;
}

.empty-content {
    position: relative;

    z-index: 2;

    max-width: 600px;

    padding:
        50px;

    text-align: center;
}

.empty-icon {
    width: 72px;
    height: 72px;

    margin:
        0
        auto
        22px;

    display: grid;

    place-items: center;

    border:
        1px
        solid
        rgba(255, 109, 117, 0.34);

    border-radius: 18px;

    color:
        rgba(255, 171, 176, 0.7);

    background:
        rgba(150, 55, 61, 0.11);

    font-size: 24px;

    opacity: 0.75;
}

.empty-content h2 {
    color:
        rgba(
            255,
            255,
            255,
            0.88
        );

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 32px;
    font-weight: 600;

    letter-spacing: -0.04em;
}

.empty-content p {
    max-width: 450px;

    margin:
        14px
        auto
        0;

    color:
        rgba(
            255,
            255,
            255,
            0.42
        );

    font-size: 15px;
    font-weight: 500;

    line-height: 1.7;
}

@media (max-width: 850px) {

    .header {
        height: 95px;
    }

    .header-content {
        padding:
            0
            28px;
    }

    .site-name {
        font-size: 19px;
    }

    .back-button {
        min-width: auto;

        padding:
            11px
            15px;

        font-size: 12px;
    }

    .page {
        width:
            calc(
                100% - 32px
            );

        padding-top: 140px;
    }

    .empty-state {
        min-height: 330px;
    }

}

@media (max-width: 520px) {

    .header-content {
        padding:
            0
            18px;
    }

    .site-name {
        font-size: 15px;
    }

    .back-button {
        padding:
            9px
            12px;

        font-size: 11px;
    }

    .page {
        width:
            calc(
                100% - 22px
            );

        padding-top: 125px;
    }

    h1 {
        font-size: 54px;
    }

    .description {
        font-size: 14px;
    }

    .empty-state {
        min-height: 300px;

        border-radius: 18px;
    }

    .empty-content {
        padding:
            35px
            22px;
    }

    .empty-icon {
        width: 60px;
        height: 60px;

        border-radius: 15px;

        font-size: 20px;
    }

    .empty-content h2 {
        font-size: 26px;
    }

    .empty-content p {
        font-size: 13px;
    }

}