* {
    box-sizing: border-box;
}


html,
body {
    margin: 0;
    min-height: 100%;
}


body {
    min-height: 100vh;

    font-family: Georgia, "Times New Roman", serif;

    color: #ddd5e8;

    background-image:

        radial-gradient(
            circle at 50% 15%,
            rgba(111, 49, 150, 0.30),
            transparent 38%
        ),

        radial-gradient(
            circle at 20% 70%,
            rgba(61, 23, 91, 0.20),
            transparent 40%
        ),

        linear-gradient(
            rgba(9, 4, 14, 0.58),
            rgba(5, 2, 10, 0.82)
        ),

        url("../res/images/bg/bg.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}


/* Purple-black vignette */

body::before {
    content: "";

    position: fixed;
    inset: 0;

    pointer-events: none;

    box-shadow:
        inset 0 0 180px rgba(10, 0, 18, 0.95);

    z-index: 10;
}


/* ========================= */
/*           PAGE            */
/* ========================= */

.hof-page {
    position: relative;
    z-index: 1;

    width: min(950px, 92%);

    margin: auto;
    padding: 55px 0 90px;

    text-align: center;
}


/* ========================= */
/*          HEADER           */
/* ========================= */

.hof-symbol {
    margin-bottom: -5px;

    font-size: 60px;

    color: #b987d4;

    text-shadow:
        0 0 10px rgba(202, 139, 235, 0.45),
        0 0 30px rgba(118, 38, 160, 0.40);
}


h1 {
    margin: 0;

    font-size: clamp(46px, 8vw, 76px);

    letter-spacing: 9px;

    color: #eee6f4;

    text-shadow:
        0 2px 4px #000,
        0 0 12px rgba(196, 142, 226, 0.30),
        0 0 35px rgba(103, 34, 143, 0.40);
}


.latin {
    margin-top: 10px;

    color: #b69ac7;

    font-size: 15px;
    font-style: italic;

    letter-spacing: 4px;

    text-shadow:
        0 2px 4px #000;
}


.latin-translation {
    margin-top: 5px;

    color: #796b84;

    font-size: 12px;
    font-style: italic;

    opacity: 0;

    transition: opacity 0.4s ease;
}


.latin:hover + .latin-translation {
    opacity: 1;
}


.subtitle {
    margin-top: 20px;

    color: #a698b3;

    font-size: 16px;

    letter-spacing: 4px;

    text-transform: uppercase;

    text-shadow:
        0 2px 4px #000;
}


/* ========================= */
/*         DIVIDERS          */
/* ========================= */

.divider {
    width: min(650px, 78%);

    height: 1px;

    margin: 34px auto;

    background:
        linear-gradient(
            90deg,
            transparent,
            #4d2c5e,
            #b887d0,
            #d6b4e8,
            #b887d0,
            #4d2c5e,
            transparent
        );

    box-shadow:
        0 0 12px rgba(178, 111, 211, 0.35);
}


.lower-divider {
    margin-top: 55px;
    margin-bottom: 28px;
}


/* ========================= */
/*           INTRO           */
/* ========================= */

.intro {
    max-width: 690px;

    margin: 0 auto 42px;

    padding: 24px 32px;

    color: #c0b7c9;

    font-size: 17px;

    line-height: 1.8;

    background:
        linear-gradient(
            135deg,
            rgba(20, 9, 28, 0.82),
            rgba(8, 4, 13, 0.78)
        );

    border-top:
        1px solid rgba(174, 113, 204, 0.35);

    border-bottom:
        1px solid rgba(174, 113, 204, 0.35);

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.50),
        0 0 22px rgba(84, 23, 116, 0.12);

    backdrop-filter: blur(2px);
}


/* ========================= */
/*           HALL            */
/* ========================= */

.hall {
    display: grid;

    gap: 18px;
}


.member-link {
    display: block;

    color: inherit;

    text-decoration: none;
}


.member {
    position: relative;

    padding: 28px 65px;

    background:
        linear-gradient(
            135deg,
            rgba(27, 13, 37, 0.90),
            rgba(9, 5, 14, 0.86)
        );

    border:
        1px solid rgba(153, 94, 180, 0.42);

    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.58),
        inset 0 0 32px rgba(130, 49, 165, 0.08);

    backdrop-filter: blur(3px);

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}


.member:hover {
    transform: translateY(-3px);

    border-color:
        rgba(205, 145, 231, 0.78);

    background:
        linear-gradient(
            135deg,
            rgba(43, 20, 58, 0.94),
            rgba(15, 7, 22, 0.91)
        );

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.68),
        0 0 22px rgba(135, 54, 173, 0.25),
        inset 0 0 38px rgba(142, 65, 180, 0.10);
}


/* Creator entry */

.creator {
    border-color:
        rgba(194, 130, 221, 0.60);

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.60),
        0 0 25px rgba(139, 59, 177, 0.16),
        inset 0 0 35px rgba(142, 65, 180, 0.09);
}


/* ========================= */
/*      MEMBER CONTENT       */
/* ========================= */

.member-number {
    position: absolute;

    left: 25px;
    top: 50%;

    transform: translateY(-50%);

    color: rgba(190, 135, 215, 0.42);

    font-size: 31px;
    font-weight: bold;

    font-family: Georgia, "Times New Roman", serif;
}


.member-name {
    color: #dbc2e7;

    font-size: 27px;

    letter-spacing: 3px;

    text-shadow:
        0 2px 4px #000,
        0 0 10px rgba(192, 126, 220, 0.20);
}


.member-riddle {
    margin-top: 9px;

    color: #a393ad;

    font-size: 15px;

    font-style: italic;
}


.member-notes {
    margin-top: 12px;

    color: #776b80;

    font-size: 14px;

    font-style: italic;
}


/* ========================= */
/*          FOOTER           */
/* ========================= */

.infinity {
    font-size: 57px;

    color: #bd8bd4;

    text-shadow:
        0 0 14px rgba(195, 131, 224, 0.45),
        0 0 35px rgba(116, 34, 153, 0.35);
}


.footer-text {
    margin-top: 4px;

    color: #927aa0;

    font-size: 14px;

    letter-spacing: 4px;
}


.home-link {
    display: inline-block;

    margin-top: 45px;

    padding: 12px 22px;

    color: #b8a5c2;

    text-decoration: none;

    letter-spacing: 3px;

    background:
        rgba(14, 7, 20, 0.80);

    border:
        1px solid rgba(153, 95, 179, 0.48);

    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.home-link:hover {
    color: #f0dcfa;

    border-color:
        rgba(211, 155, 235, 0.80);

    background:
        rgba(55, 21, 72, 0.85);

    transform: translateY(-2px);

    box-shadow:
        0 0 18px rgba(141, 59, 177, 0.20);
}


/* ========================= */
/*           MOBILE          */
/* ========================= */

@media (max-width: 600px) {

    h1 {
        letter-spacing: 4px;
    }


    .hof-page {
        width: 94%;
    }


    .intro {
        padding: 22px 18px;
    }


    .member {
        padding: 24px 18px;
    }


    .member-number {
        position: static;

        display: block;

        margin-bottom: 9px;

        transform: none;
    }


    .member-name {
        font-size: 23px;
    }
}