@import url('https://fonts.cdnfonts.com/css/open-dyslexic');


/* =========================================
   RESET
   ========================================= */

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


/* =========================================
   COLORS
   ========================================= */

:root {
    --ink: #28223c;
    --muted: #665f80;
    --cream: #f9f3e8;
    --paper: #fffaf1;

    --lavender: #d9cff6;
    --lilac: #b59be6;

    --pink: #e7a8c5;
    --hotpink: #cc6f9d;

    --blue: #83a6d2;
    --cyan: #92d2d2;

    --line: #8177a5;

    --shadow: rgba(56, 41, 94, 0.18);
}


/* =========================================
   PAGE
   ========================================= */

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    margin: 0;

    overflow-x: hidden;
    overflow-y: auto;

    font-family: 'Open-Dyslexic', 'Fira Mono', monospace;
    color: var(--ink);

    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(255,255,255,.65) 0 2px,
            transparent 3px
        ),
        radial-gradient(
            circle at 80% 35%,
            rgba(255,255,255,.45) 0 1px,
            transparent 2px
        ),
        repeating-linear-gradient(
            0deg,
            rgba(55,42,81,.035) 0 1px,
            transparent 1px 4px
        ),
        linear-gradient(
            135deg,
            #c8d7eb 0%,
            #d6c9e8 45%,
            #f0c7d6 100%
        );

    background-size:
        120px 120px,
        160px 160px,
        100% 4px,
        auto;
}


/* =========================================
   LINKS
   ========================================= */

a {
    color: var(--hotpink);
}

a:hover {
    color: #8a4c7c;
}

a:visited {
    color: #9f7095;
}


/* =========================================
   MAIN ARCHIVE WINDOW
   ========================================= */

/*
   IMPORTANT:

   The boxes inside this window use absolute
   positioning, so they do not contribute to
   the parent's natural height.

   930px gives the window enough physical
   height to contain the lowest box.

   The page itself is still allowed to scroll
   when the viewport is shorter than the window.
*/

.main {
    width: 700px;

    height: 930px;
    min-height: 930px;

    position: relative;

    margin: 30px auto;

    padding: 10px;

    border: 2px solid #6d6687;
    border-radius: 8px;

    background: rgba(249,243,232,.97);

    box-shadow:
        0 10px 35px var(--shadow),
        0 0 0 4px rgba(255,255,255,.35);

    overflow: visible;
}


/* =========================================
   WINDOW BUTTONS
   ========================================= */

.buttons {
    position: absolute;

    top: 4px;
    right: 8px;

    display: flex;
    gap: 3px;

    z-index: 5;
}

.buttons span {
    width: 16px;
    height: 16px;

    display: grid;
    place-items: center;

    border: 1px solid #6d6687;

    background: #efe7fa;

    font: 11px/1 monospace;
}


/* =========================================
   TOP HORIZONTAL LINE
   ========================================= */

.horizontal {
    width: 680px;

    border-top: 2px solid var(--line);

    position: absolute;

    left: 10px;
    top: 37px;
}


/* =========================================
   BIG PROFILE ICON
   ========================================= */

.icon {
    width: 200px;
    height: 200px;

    position: absolute;

    left: 10px;
    top: 60px;

    margin: 0;

    overflow: hidden;

    border: 2px solid #d78fb2;
    border-radius: 50%;

    background: #e8d8e8;

    box-sizing: border-box;
}

.icon img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    border: 0;
    border-radius: 50%;
}

.icon-glow {
    font-size: 64px;
    line-height: 1;

    color: #c875a1;

    text-shadow:
        0 0 12px rgba(200,117,161,.35);
}

.icon-text {
    margin-top: -55px;

    font-size: 13px;
    letter-spacing: 2px;

    color: #696084;
}


/* =========================================
   TITLE
   ========================================= */

.head {
    width: 450px;
    height: 31px;

    position: absolute;

    top: 57px;
    right: 10px;

    border-bottom: 2px solid var(--pink);

    padding-bottom: 5px;

    font-size: 23px;
    font-weight: bold;

    letter-spacing: 2px;

    color: var(--hotpink);

    text-shadow: 1px 1px 0 white;
}


/* =========================================
   GENERAL BOX STYLING
   ========================================= */

.box1,
.box2,
.box3,
.box4,
.box5,
.box6 {
    position: absolute;

    border: 2px solid var(--blue);
    border-radius: 6px;

    box-shadow:
        inset 0 0 14px rgba(94,108,165,.08),
        2px 3px 0 rgba(100,84,130,.08);
}


/* =========================================
   HEADINGS
   ========================================= */

h1 {
    font-size: 18px;

    padding-bottom: 5px;

    color: #6d5b9f;

    text-decoration: underline;
}

p {
    margin-bottom: 5px;
}


/* =========================================
   WELCOME BOX
   ========================================= */

.box1 {
    width: 450px;
    height: 150px;

    top: 98px;
    right: 10px;

    background: var(--paper);

    padding: 10px;
}

.signal {
    margin-top: 8px;

    font-size: 11px;

    color: #7e6c9d;
}


/* =========================================
   LINKS BOX
   ========================================= */

.box2 {
    width: 200px;
    height: 400px;

    top: 278px;
    left: 10px;

    background: #dfe8f1;

    padding: 10px;
}

.box2 ul {
    list-style: none;
    line-height: 26px;
}

.horizontal2 {
    width: 175px;

    border-top: 2px solid var(--blue);
}

.small-note {
    font-size: 12px;

    line-height: 1.5;

    color: #5c6480;
}

.status {
    margin-top: 12px;

    color: #8d6287;

    font-size: 12px;
}


/* =========================================
   ABOUT BOX
   ========================================= */

.box3 {
    width: 200px;
    height: 200px;

    top: 699px;
    left: 10px;

    background: #eadcf1;

    padding: 10px;
}

.box3 p {
    font-size: 12px;

    line-height: 1.45;
}


/* =========================================
   FAVOURITE BOYS DATABASE
   ========================================= */

.box4 {
    width: 450px;
    height: 300px;

    top: 263px;
    right: 10px;

    padding: 10px;

    overflow-y: auto;
    overflow-x: hidden;

    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(255,255,255,.5),
            transparent 23%
        ),
        linear-gradient(
            135deg,
            #dfd6ed,
            #efd5de
        );
}


/* =========================================
   BOYS SCROLLBAR
   ========================================= */

.box4::-webkit-scrollbar {
    width: 8px;
}

.box4::-webkit-scrollbar-track {
    background: #eadfea;
}

.box4::-webkit-scrollbar-thumb {
    background: #c894b4;

    border: 1px solid #9f7fa5;
}

.box4::-webkit-scrollbar-thumb:hover {
    background: #aa7196;
}


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

.box4-header {
    margin-bottom: 8px;

    color: #715c9f;

    font-weight: bold;
}


/* =========================================
   BOY GRID
   ========================================= */

.boy-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 8px;
}


/* =========================================
   BOY CARD
   ========================================= */

.boy-card {
    min-height: 119px;

    padding: 7px;

    border: 1px dashed #8b7baa;

    background: rgba(255,250,244,.78);

    position: relative;
}


/* =========================================
   BOY IMAGE CIRCLE
   ========================================= */

.boy-face {
    width: 46px;
    height: 46px;

    float: left;

    margin: 5px 8px 4px 0;

    border: 1px solid var(--pink);

    border-radius: 50%;

    background: #f4dfeb;

    overflow: hidden;

    flex-shrink: 0;
}

.boy-face img {
    display: block !important;

    width: 46px !important;
    height: 46px !important;

    max-width: 46px !important;
    max-height: 46px !important;

    min-width: 0 !important;
    min-height: 0 !important;

    object-fit: cover !important;

    border: 0 !important;

    border-radius: 50% !important;

    margin: 0 !important;
    padding: 0 !important;
}


/* =========================================
   BOY CARD TEXT
   ========================================= */

.boy-card h2 {
    font-size: 13px;

    margin-top: 6px;

    color: #5f5a7d;
}

.boy-card p {
    font-size: 10px;

    color: #8b7082;
}

.boy-number {
    font-size: 9px;

    color: #81759c;

    letter-spacing: .3px;
}


/* =========================================
   SHIPS / FUJOSHI.EXE
   ========================================= */

.box6 {
    width: 450px;
    height: 228px;

    top: 578px;
    right: 10px;

    padding: 10px;

    background: #d7e4ea;

    color: #59637c;

    overflow-y: auto;
    overflow-x: hidden;

    border: 2px solid var(--blue);
    border-radius: 6px;

    box-shadow:
        inset 0 0 14px rgba(94,108,165,.08),
        2px 3px 0 rgba(100,84,130,.08);
}


/* FUJOSHI.EXE SCROLLBAR */

.box6::-webkit-scrollbar {
    width: 8px;
}

.box6::-webkit-scrollbar-track {
    background: #d1dfe6;
}

.box6::-webkit-scrollbar-thumb {
    background: #c894b4;

    border: 1px solid #9f7fa5;

    border-radius: 2px;
}

.box6::-webkit-scrollbar-thumb:hover {
    background: #aa7196;
}


/* SHIP ENTRIES */

.ship-entry {
    margin: 6px 0;

    padding: 6px 8px;

    border-left: 3px solid var(--pink);

    background: rgba(255,255,255,.35);

    color: #625775;

    font-size: 10px;

    line-height: 1.3;
}

.ship-entry b {
    display: block;

    color: #6d5b9f;

    font-size: 10px;
}

.ship-entry span {
    display: block;

    margin-top: 2px;

    color: #92768c;

    font-size: 8px;

    font-style: italic;
}

/* =========================================
   SHIP ENTRIES
   ========================================= */

.ship-entry {
    margin: 6px 0;

    padding: 6px 8px;

    border-left: 3px solid var(--pink);

    background: rgba(255,255,255,.35);

    color: #625775;

    font-size: 10px;

    line-height: 1.3;
}

.ship-entry b {
    display: block;

    color: #6d5b9f;

    font-size: 10px;
}

.ship-entry span {
    display: block;

    margin-top: 2px;

    color: #92768c;

    font-size: 8px;

    font-style: italic;
}


/* =========================================
   OPTIONAL BOX 5
   ========================================= */
/* =========================================
   LITTLE WEB BLINKIES / TICKER
   ========================================= */

.box5 {
    width: 450px;
    height: 88px;

    top: 821px;
    right: 10px;

    padding: 7px;

    background:
        linear-gradient(
            135deg,
            #f8e5ee,
            #e4e0f2
        );

    border: 2px solid var(--blue);
    border-radius: 6px;

    overflow: hidden;

    box-shadow:
        inset 0 0 14px rgba(94,108,165,.08),
        2px 3px 0 rgba(100,84,130,.08);
}


/* =========================================
   MOVING TEXT
   ========================================= */

.ticker {
    width: 100%;
    height: 24px;

    overflow: hidden;

    border: 1px dashed #c78eae;

    background: rgba(255,255,255,.5);

    display: flex;
    align-items: center;

    white-space: nowrap;
}

.ticker span {
    display: inline-block;

    padding-left: 100%;

    animation: boyTicker 14s linear infinite;

    color: #765d91;

    font-size: 10px;
    font-weight: bold;

    letter-spacing: 1px;
}

@keyframes boyTicker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}


/* =========================================
   BLINKIE ROW
   ========================================= */

.blinkie-row {
    display: flex;
    flex-wrap: wrap;

    gap: 5px;

    margin-top: 7px;

    justify-content: center;
    align-content: flex-start;

    max-width: 100%;
    overflow: hidden;
}


/* =========================================
   INDIVIDUAL BLINKIES
   ========================================= */

.blinkie {
    width: 125px;
    height: 31px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid #8979a5;

    box-shadow:
        inset 0 0 5px rgba(255,255,255,.7),
        1px 2px 0 rgba(90,70,110,.15);

    font-family: monospace;

    font-size: 9px;

    font-weight: bold;

    letter-spacing: .5px;

    white-space: nowrap;

    animation: blinkieGlow 2.2s steps(2, end) infinite;
}


/* PINK */

.pink-blinkie {
    background:
        linear-gradient(
            #f7dce9,
            #e8b6d0
        );

    color: #824d70;
}


/* BLUE */

.blue-blinkie {
    background:
        linear-gradient(
            #e1edf7,
            #b9d1e6
        );

    color: #536d8b;

    animation-delay: .5s;
}


/* PURPLE */

.purple-blinkie {
    background:
        linear-gradient(
            #eee6fa,
            #d1c4e8
        );

    color: #66558a;

    animation-delay: 1s;
}


/* =========================================
   RETRO BLINKIE EFFECT
   ========================================= */

@keyframes blinkieGlow {

    0%,
    45% {
        filter: brightness(1);
    }

    50%,
    100% {
        filter: brightness(1.12);
    }
}

/* =========================================
   MARQUEE
   ========================================= */

marquee {
    height: 40px;

    display: block;
}


/* =========================================
   OLD WEB BUTTONS
   ========================================= */

.button88 {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 110px;
    height: 31px;

    margin-right: 7px;

    border: 1px solid #7f719b;

    background:
        linear-gradient(
            #eee6fb,
            #cfc4e9
        );

    color: #51486d;

    font: bold 9px monospace;

    letter-spacing: .5px;
}

.button88.pink {
    background:
        linear-gradient(
            #f5dfea,
            #e7b9d0
        );

    color: #7e4d6d;
}

.button88.blue {
    background:
        linear-gradient(
            #e0edf6,
            #b7d1e4
        );

    color: #536c88;
}


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

.site-footer {
    width: min(700px, calc(100% - 20px));
    margin: 0 auto 30px;
    padding: 9px 10px 10px;
    border: 2px solid var(--blue);
    border-radius: 6px;
    background: linear-gradient(135deg, #f8e5ee, #e4e0f2);
    text-align: center;
}

.custom-blinkie-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 5px;
    max-width: 100%;
}

.custom-blinkie {
    width: 125px;
    height: 31px;
    max-width: 125px;
    max-height: 31px;
    display: block;
    flex: 0 0 125px;
    object-fit: contain;
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 760px) {

    body {
        min-height: 940px;
    }

    .main {
        position: relative;

        left: auto;
        top: auto;

        transform: none;

        margin: 12px auto;
    }
}


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

@media (max-width: 720px) {

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

        height: auto;
        min-height: 1200px;

        padding-bottom: 30px;

        overflow: visible;
    }


    /*
       On phones the desktop absolute layout
       becomes normal document flow.
    */

    .horizontal,
    .head,
    .box1,
    .box2,
    .box3,
    .box4,
    .box5,
    .box6,
    .icon {

        position: relative;

        left: auto;
        right: auto;
        top: auto;

        width: 100%;

        margin-bottom: 10px;
    }


    .horizontal {
        width: 100%;

        margin: 23px 0 15px;
    }


    .icon {
        width: 170px;
        height: 170px;

        margin: 0 auto 12px;
    }


    .head {
        height: auto;

        font-size: 18px;

        margin-bottom: 10px;
    }


    .box1 {
        height: auto;
    }

    .box2 {
        height: auto;
    }

    .box3 {
        height: auto;
    }

    .box4 {
        height: auto;
    }

    .box6 {
        height: auto;
    }

    .box5 {
        height: auto;
    }


    .boy-grid {
        grid-template-columns: 1fr;
    }


    .footerline {
        position: relative;

        left: auto;
        right: auto;
        bottom: auto;

        margin-top: 12px;

        display: block;

        line-height: 1.6;
    }
}


/* =========================================
   18+ AGE GATE
   ========================================= */

body.age-lock {
    overflow: hidden;
}

.age-gate {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(255,255,255,.65) 0 2px,
            transparent 3px
        ),
        repeating-linear-gradient(
            0deg,
            rgba(55,42,81,.035) 0 1px,
            transparent 1px 4px
        ),
        linear-gradient(
            135deg,
            #c8d7eb 0%,
            #d6c9e8 45%,
            #f0c7d6 100%
        );

    background-size:
        120px 120px,
        100% 4px,
        auto;

    transition: opacity .22s ease, visibility .22s ease;
}

.age-gate-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.age-gate-window {
    width: min(460px, 100%);

    border: 2px solid #6d6687;
    border-radius: 8px;

    background: rgba(249,243,232,.98);

    box-shadow:
        0 12px 40px rgba(56,41,94,.25),
        0 0 0 4px rgba(255,255,255,.4);
}

.age-gate-topbar {
    min-height: 28px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 5px 7px;

    border-bottom: 2px solid var(--pink);

    color: #765d91;
    font-size: 10px;
    font-weight: bold;
    letter-spacing: .8px;
}

.age-gate-buttons {
    display: flex;
    gap: 3px;
}

.age-gate-buttons span {
    width: 15px;
    height: 15px;

    display: grid;
    place-items: center;

    border: 1px solid #6d6687;
    background: #efe7fa;

    font: 10px/1 monospace;
}

.age-gate-content {
    padding: 24px;
    text-align: center;
}

.age-gate-icon {
    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    margin: 0 auto 12px;

    border: 2px solid #c894b4;
    border-radius: 50%;

    background: linear-gradient(135deg, #f7dce9, #e4e0f2);

    color: #8b5e7f;
    font-size: 28px;

    box-shadow:
        inset 0 0 10px rgba(255,255,255,.7),
        2px 3px 0 rgba(90,70,110,.12);
}

.age-gate-content h1 {
    margin: 0 0 10px;
    padding: 0;

    color: #6d5b9f;
    font-size: 18px;
    text-decoration: underline;
}

.age-gate-content p {
    margin-bottom: 8px;

    color: #5f5a7d;
    font-size: 11px;
    line-height: 1.5;
}

.age-gate-note {
    max-width: 330px;
    margin: 0 auto 16px !important;

    color: #827793 !important;
    font-size: 9px !important;
}

.age-gate-buttons-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 7px;
}

.age-button {
    min-width: 130px;
    min-height: 32px;

    padding: 6px 11px;

    border: 1px solid #7f719b;

    font: bold 9px monospace;
    letter-spacing: .5px;

    cursor: pointer;
}

.age-button-enter {
    background: linear-gradient(#f5dfea, #e7b9d0);
    color: #7e4d6d;
}

.age-button-leave {
    background: linear-gradient(#e0edf6, #b7d1e4);
    color: #536c88;
}

.age-button:hover {
    filter: brightness(1.08);
}

.age-button:focus-visible {
    outline: 2px dotted #cc6f9d;
    outline-offset: 2px;
}

.age-gate-footer {
    margin-top: 14px;

    color: #827793;
    font-size: 8px;
    letter-spacing: .7px;
}

@media (max-width: 720px) {
    .age-gate {
        padding: 12px;
    }

    .age-gate-content {
        padding: 20px 15px 16px;
    }

    .age-gate-content h1 {
        font-size: 16px;
    }

    .age-button {
        width: 100%;
        max-width: 220px;
    }
}

