* {
    box-sizing: border-box;
}


/* =========================================
   BASE
========================================= */

html {
    scroll-behavior: smooth;
    background: #050505;
}


html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
}


body {
    background:
        radial-gradient(
            circle at 50% 18%,
            rgba(255, 255, 255, 0.025),
            transparent 34%
        ),
        #050505;

    color: #f2f2f2;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    overflow-x: hidden;
}


body::before {
    content: "";

    position: fixed;

    inset: 0;

    pointer-events: none;

    z-index: 999;

    opacity: 0.025;

    background-image:
        repeating-linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.8) 0px,
            rgba(255, 255, 255, 0.8) 1px,
            transparent 1px,
            transparent 4px
        );

    mix-blend-mode: screen;
}


a {
    color: inherit;
    text-decoration: none;
}


button {
    font-family: inherit;
}


/* =========================================
   HEADER
========================================= */

.site-header {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 70px;

    padding: 18px 24px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    z-index: 100;

    pointer-events: none;
}


.brand,
.wallet-button {
    pointer-events: auto;
}


.brand {
    position: relative;

    font-size: 11px;

    letter-spacing: 0.22em;

    font-weight: 700;

    transition:
        opacity 0.25s ease,
        letter-spacing 0.25s ease;
}


.brand:hover {
    opacity: 0.6;

    letter-spacing: 0.28em;
}


.wallet-button {
    position: relative;

    border: 1px solid rgba(255, 255, 255, 0.75);

    background: rgba(5, 5, 5, 0.78);

    color: #f2f2f2;

    padding: 11px 18px;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 0.16em;

    cursor: pointer;

    backdrop-filter: blur(10px);

    -webkit-backdrop-filter: blur(10px);

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.2s ease;
}


.wallet-button:hover {
    background: #f2f2f2;

    color: #050505;

    border-color: #f2f2f2;

    transform: translateY(-1px);
}


.wallet-button:active {
    transform: translateY(0);
}


.wallet-button.wallet-connected {
    border-color: rgba(255, 255, 255, 0.25);

    background: rgba(255, 255, 255, 0.06);

    color: #f2f2f2;
}


.wallet-button.wallet-connected:hover {
    background: rgba(255, 255, 255, 0.12);

    color: #fff;
}


/* =========================================
   HERO
========================================= */

.hellbox {
    position: relative;

    min-height: 100vh;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding: 100px 40px 60px;

    overflow: hidden;
}


.hellbox::before {
    content: "";

    position: absolute;

    width: min(700px, 80vw);

    height: min(700px, 80vw);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.012) 35%,
            transparent 70%
        );

    filter: blur(2px);

    pointer-events: none;
}


.hellbox::after {
    content: "";

    position: absolute;

    left: 50%;

    bottom: 0;

    width: 1px;

    height: 80px;

    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(255, 255, 255, 0.15)
        );

    transform: translateX(-50%);

    pointer-events: none;
}


.eyebrow {
    position: relative;

    margin: 0 0 30px;

    font-size: 12px;

    letter-spacing: 0.45em;

    opacity: 0.45;
}


h1 {
    position: relative;

    margin: 0;

    font-size:
        clamp(
            60px,
            11vw,
            180px
        );

    line-height: 0.82;

    letter-spacing: -0.06em;

    font-weight: 900;
}


.subline {
    position: relative;

    margin-top: 45px;

    font-size: 14px;

    letter-spacing: 0.25em;

    text-transform: uppercase;

    opacity: 0.35;
}


/* =========================================
   MAIN NAVIGATION
========================================= */

.main-nav {
    position: relative;

    width:
        min(
            1000px,
            calc(100% - 80px)
        );

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    border-top:
        1px solid rgba(255, 255, 255, 0.08);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.08);
}


.main-nav a {
    position: relative;

    padding: 30px 0;

    display: flex;

    flex-direction: column;

    gap: 9px;

    overflow: hidden;

    transition:
        opacity 0.3s ease,
        padding-left 0.3s ease;
}


.main-nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;

    height: 1px;

    background: #f2f2f2;

    transition:
        width 0.35s ease;
}


.main-nav a:hover {
    opacity: 1;

    padding-left: 10px;
}


.main-nav a:hover::after {
    width: 100%;
}


.main-nav a + a {
    padding-left: 40px;

    border-left:
        1px solid rgba(255, 255, 255, 0.08);
}


.main-nav a + a:hover {
    padding-left: 50px;
}


.main-nav strong {
    font-size: 11px;

    letter-spacing: 0.18em;
}


.main-nav span {
    font-size: 11px;

    opacity: 0.4;
}


/* =========================================
   CONTENT
========================================= */

.content-section {
    width:
        min(
            1000px,
            calc(100% - 80px)
        );

    margin: 0 auto;

    padding: 140px 0;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.08);

    scroll-margin-top: 70px;
}


.section-label {
    margin: 0 0 28px;

    font-size: 10px;

    letter-spacing: 0.42em;

    opacity: 0.35;
}


h2 {
    margin: 0;

    font-size:
        clamp(
            48px,
            7vw,
            92px
        );

    line-height: 0.92;

    letter-spacing: -0.055em;

    font-weight: 900;
}


.section-description {
    margin: 32px 0 0;

    max-width: 500px;

    font-size: 14px;

    line-height: 1.6;

    color: #777;
}


/* =========================================
   THE HELLBOX
========================================= */

.archive-section {
    position: relative;

    scroll-margin-top: 80px;
}


.archive-section::before {
    content: "HELLBOX";

    position: absolute;

    top: 80px;

    right: -10px;

    font-size:
        clamp(
            80px,
            15vw,
            180px
        );

    line-height: 1;

    font-weight: 900;

    letter-spacing: -0.08em;

    color: rgba(255, 255, 255, 0.018);

    pointer-events: none;

    user-select: none;
}


.archive-list {
    position: relative;

    margin-top: 90px;
}


/* =========================================
   EMPTY HELLBOX
========================================= */

.archive-empty {
    position: relative;

    min-height: 300px;

    padding: 70px 50px;

    border:
        1px solid rgba(255, 255, 255, 0.1);

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.025),
            rgba(255, 255, 255, 0.005)
        );

    display: flex;

    flex-direction: column;

    justify-content: center;

    overflow: hidden;
}


.archive-empty::before {
    content: "";

    position: absolute;

    top: -100px;
    right: -100px;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    border:
        1px solid rgba(255, 255, 255, 0.05);
}


.archive-empty::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent
        );
}


.archive-empty-label {
    position: relative;

    z-index: 2;

    margin: 0;

    font-size:
        clamp(
            32px,
            5vw,
            64px
        );

    line-height: 0.95;

    letter-spacing: -0.05em;

    font-weight: 900;
}


.archive-empty-description {
    position: relative;

    z-index: 2;

    margin: 20px 0 0;

    max-width: 420px;

    font-size: 13px;

    line-height: 1.6;

    color: rgba(255, 255, 255, 0.4);
}


/* =========================================
   FUTURE TITLE CONTAINER
========================================= */

.archive-title {
    position: relative;

    margin-bottom: 60px;

    border-top:
        1px solid rgba(255, 255, 255, 0.1);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.1);

    transition:
        border-color 0.3s ease;
}


.archive-title:hover {
    border-color:
        rgba(255, 255, 255, 0.22);
}


.archive-title-header {
    position: relative;

    padding: 55px 0;
}


.archive-title-label {
    margin: 0 0 18px;

    font-size: 10px;

    letter-spacing: 0.4em;

    opacity: 0.35;
}


.archive-title h3 {
    margin: 0;

    font-size:
        clamp(
            36px,
            5vw,
            68px
        );

    line-height: 0.95;

    letter-spacing: -0.05em;

    font-weight: 900;
}


/* =========================================
   FUTURE EDITIONS
========================================= */

.archive-editions {
    border-top:
        1px solid rgba(255, 255, 255, 0.08);
}


.archive-editions-label {
    margin: 0;

    padding: 22px 0;

    font-size: 10px;

    letter-spacing: 0.35em;

    opacity: 0.35;
}


.archive-edition {
    position: relative;

    min-height: 78px;

    padding: 20px 0;

    display: flex;

    align-items: center;

    gap: 30px;

    border-top:
        1px solid rgba(255, 255, 255, 0.06);

    transition:
        padding-left 0.3s ease,
        background 0.3s ease,
        opacity 0.3s ease;
}


.archive-edition::after {
    content: "→";

    position: absolute;

    right: 0;

    font-size: 16px;

    opacity: 0;

    transform: translateX(-8px);

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}


.archive-edition:hover {
    padding-left: 12px;

    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.025),
            transparent
        );
}


.archive-edition:hover::after {
    opacity: 0.65;

    transform: translateX(0);
}


.edition-number {
    width: 90px;

    flex-shrink: 0;

    font-size: 10px;

    letter-spacing: 0.25em;

    opacity: 0.35;
}


.edition-name {
    font-size: 15px;

    font-weight: 600;
}


.archive-no-editions {
    margin: 0;

    padding: 20px 0 28px;

    font-size: 12px;

    letter-spacing: 0.18em;

    opacity: 0.35;
}


/* =========================================
   THE PRESS
========================================= */

.press-section {
    position: relative;

    padding-bottom: 160px;

    overflow: hidden;
}


.press-section::before {
    content: "PRESS";

    position: absolute;

    right: -20px;

    bottom: 40px;

    font-size:
        clamp(
            100px,
            18vw,
            220px
        );

    line-height: 1;

    letter-spacing: -0.08em;

    font-weight: 900;

    color: rgba(255, 255, 255, 0.018);

    pointer-events: none;

    user-select: none;
}


.status {
    position: relative;

    margin-top: 50px;

    display: inline-block;

    padding: 12px 15px;

    border:
        1px solid rgba(255, 255, 255, 0.1);

    font-size: 10px;

    letter-spacing: 0.3em;

    opacity: 0.45;
}


/* =========================================
   FOOTER
========================================= */

.site-footer {
    width:
        min(
            1200px,
            calc(100% - 48px)
        );

    margin: 0 auto;

    padding: 32px 0 40px;

    display: flex;

    justify-content: space-between;

    font-size: 9px;

    letter-spacing: 0.3em;

    opacity: 0.3;
}


/* =========================================
   SELECTION
========================================= */

::selection {
    background: #f2f2f2;

    color: #050505;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .site-header {
        padding: 16px;
    }


    .brand {
        font-size: 9px;

        letter-spacing: 0.18em;
    }


    .wallet-button {
        padding: 10px 13px;

        font-size: 9px;
    }


    .hellbox {
        padding-left: 20px;

        padding-right: 20px;
    }


    .eyebrow {
        font-size: 9px;

        letter-spacing: 0.35em;
    }


    .subline {
        font-size: 10px;

        letter-spacing: 0.18em;
    }


    .main-nav {
        width:
            calc(100% - 40px);

        grid-template-columns: 1fr;
    }


    .main-nav a + a {
        padding-left: 0;

        border-left: 0;

        border-top:
            1px solid rgba(255, 255, 255, 0.08);
    }


    .main-nav a + a:hover {
        padding-left: 10px;
    }


    .content-section {
        width:
            calc(100% - 40px);

        padding: 90px 0;
    }


    .archive-section::before {
        top: 60px;

        right: -30px;

        font-size: 90px;
    }


    .archive-list {
        margin-top: 60px;
    }


    .archive-empty {
        min-height: 250px;

        padding: 50px 25px;
    }


    .archive-title-header {
        padding: 40px 0;
    }


    .archive-edition {
        gap: 15px;

        padding-right: 30px;
    }


    .edition-number {
        width: 65px;
    }


    .edition-name {
        font-size: 14px;
    }


    .archive-edition::after {
        right: 5px;
    }


    .press-section {
        padding-bottom: 120px;
    }


    .press-section::before {
        right: -20px;

        bottom: 40px;

        font-size: 100px;
    }


    .site-footer {
        width:
            calc(100% - 32px);

        flex-direction: column;

        gap: 10px;
    }

}
