/* =========================================================
   INSERT DISK 2
   ========================================================= */


/* =========================================================
   RESET
   ========================================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


html {
    scroll-behavior: smooth;
}


body {

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            rgba(0,0,0,.025) 1px,
            transparent 1px
        );

    background-size: 20px 20px;

    background-color: #e9e4d4;

    color: #171717;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    line-height: 1.5;
}


a {
    color: inherit;
    text-decoration: none;
}


button {
    font: inherit;
}


/* =========================================================
   SITE
   ========================================================= */

.site {

    max-width: 1300px;

    margin: auto;

    background: #f5f0df;

    border-left: 3px solid #171717;
    border-right: 3px solid #171717;

    min-height: 100vh;
}


/* =========================================================
   HEADER
   ========================================================= */

header {

    border-bottom: 4px solid #171717;
}


.disk-warning {

    background: #171717;

    color: #f5f0df;

    padding: 7px 20px;

    display: flex;

    justify-content: space-between;

    font-family: "Courier New", monospace;

    font-size: 11px;

    font-weight: bold;
}


/* =========================================================
   LOGO AREA
   ========================================================= */

.logo-area {

    padding: 45px 50px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 40px;
}


/* LOGO */

.logo {

    line-height: .8;
}


.logo-small {

    font-family: "Courier New", monospace;

    font-size: 15px;

    letter-spacing: 5px;

    margin-left: 5px;

    margin-bottom: 8px;
}


.logo-main {

    font-size: clamp(50px, 8vw, 100px);

    font-weight: 900;

    letter-spacing: -7px;
}


.logo-disk {

    font-family: "Courier New", monospace;

    font-size: clamp(30px, 5vw, 60px);

    font-weight: bold;

    letter-spacing: 5px;

    margin-top: 10px;
}


.logo-disk span {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 55px;

    height: 55px;

    background: #171717;

    color: #f5f0df;

    transform: rotate(-4deg);

    margin-left: 5px;
}


/* =========================================================
   HEADER NOTE
   ========================================================= */

.header-note {

    max-width: 280px;

    padding: 20px;

    border: 3px solid #171717;

    background: #d4cbb3;

    transform: rotate(2deg);

    box-shadow: 7px 7px 0 #171717;

    font-family: "Courier New", monospace;
}


.header-note .blink {

    color: #d40000;

    font-size: 20px;

    display: inline-block;

    margin-right: 7px;

    animation: blink 1s steps(2) infinite;
}


.header-note strong {

    font-size: 14px;
}


.header-note p {

    margin-top: 12px;

    font-size: 12px;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

nav {

    display: flex;

    border-top: 3px solid #171717;
}


nav a {

    flex: 1;

    padding: 15px;

    border-right: 2px solid #171717;

    text-align: center;

    font-family: "Courier New", monospace;

    font-size: 11px;

    font-weight: bold;

    transition: .15s;
}


nav a:first-child {
    border-left: 0;
}


nav a:last-child {
    border-right: 0;
}


nav a span {

    display: block;

    font-size: 9px;

    margin-bottom: 4px;

    opacity: .5;
}


nav a:hover {

    background: #171717;

    color: #f5f0df;
}


/* =========================================================
   MAIN
   ========================================================= */

main {

    padding: 70px 50px;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {

    display: grid;

    grid-template-columns: 1.4fr .8fr;

    gap: 70px;

    align-items: center;

    margin-bottom: 100px;
}


.terminal-label {

    display: inline-block;

    padding: 6px 10px;

    background: #171717;

    color: #b9ff6b;

    font-family: "Courier New", monospace;

    font-size: 12px;
}


.hero h1 {

    margin-top: 20px;

    font-size: clamp(45px, 7vw, 90px);

    line-height: .9;

    letter-spacing: -5px;
}


.hero h1 em {

    font-family: Georgia, serif;

    font-weight: normal;

    letter-spacing: -3px;
}


.hero p {

    max-width: 650px;

    margin-top: 30px;

    font-size: 18px;
}


.question {

    display: inline-block;

    margin-top: 20px;

    padding: 10px 15px;

    background: #fff9bd;

    border: 2px solid #171717;

    font-family: "Courier New", monospace;

    font-weight: bold;

    transform: rotate(-1deg);
}


/* =========================================================
   BUTTONS
   ========================================================= */

.big-button,
.outline-button {

    display: inline-block;

    margin-top: 30px;

    padding: 15px 20px;

    border: 3px solid #171717;

    background: #f5f0df;

    font-family: "Courier New", monospace;

    font-size: 12px;

    font-weight: bold;

    box-shadow: 5px 5px 0 #171717;

    transition: .15s;
}


.big-button:hover,
.outline-button:hover {

    transform: translate(5px,5px);

    box-shadow: none;

    background: #171717;

    color: #f5f0df;
}


/* =========================================================
   DISK DRIVE
   ========================================================= */

.disk-drive {

    background: #aaa99d;

    border: 5px solid #171717;

    padding: 20px;

    box-shadow: 10px 10px 0 #171717;

    transform: rotate(1deg);
}


.drive-label {

    font-family: "Courier New", monospace;

    font-size: 10px;

    font-weight: bold;

    margin-bottom: 15px;
}


.drive-slot {

    height: 190px;

    background: #272727;

    border: 4px solid #171717;

    display: flex;

    justify-content: center;

    align-items: center;
}


.disk {

    width: 125px;

    height: 125px;

    border-radius: 50%;

    background: #191919;

    border: 4px solid #444;

    display: flex;

    align-items: center;

    justify-content: center;

    color: white;

    font-family: "Courier New", monospace;

    font-size: 40px;

    font-weight: bold;
}


.disk::after {

    content: "";

    position: absolute;

    width: 35px;

    height: 35px;

    border-radius: 50%;

    background: #aaa99d;

    border: 5px solid #171717;
}


.disk span {

    position: relative;

    z-index: 2;
}


.drive-light {

    margin-top: 15px;

    font-family: "Courier New", monospace;

    font-size: 10px;
}


.drive-light span {

    display: inline-block;

    width: 8px;

    height: 8px;

    border-radius: 50%;

    background: #d40000;

    margin-right: 6px;

    animation: blink 1.5s infinite;
}


.drive-message {

    margin-top: 15px;

    padding: 10px;

    background: #171717;

    color: #b9ff6b;

    font-family: "Courier New", monospace;

    font-size: 14px;

    text-align: center;
}


/* =========================================================
   SECTIONS
   ========================================================= */

.section {

    margin-bottom: 100px;
}


.section-title {

    display: flex;

    align-items: flex-start;

    gap: 20px;

    margin-bottom: 30px;
}


.section-title .number {

    border: 2px solid #171717;

    padding: 5px 9px;

    font-family: "Courier New", monospace;

    font-weight: bold;

    font-size: 12px;
}


.section-title small {

    font-family: "Courier New", monospace;

    font-size: 10px;

    letter-spacing: 2px;
}


.section-title h2 {

    margin-top: 4px;

    font-size: 40px;

    line-height: 1;

    letter-spacing: -2px;
}


/* =========================================================
   ARTICLE CARDS
   ========================================================= */

.cards {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}


.card {

    background: #fffdf4;

    border: 3px solid #171717;

    box-shadow: 6px 6px 0 #171717;

    transition: .15s;

    min-width: 0;
}


.card:hover {

    transform: translateY(-6px);
}


/* =========================================================
   CARD IMAGE
   ========================================================= */

.card-image {

    height: 230px;

    border-bottom: 3px solid #171717;

    background: #c8c0aa;

    overflow: hidden;

    position: relative;
}


/*
   Any image placed inside .card-image
   automatically fills the image area.
*/

.card-image img {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: contain;
}


/*
   Optional: use this if you want the entire
   image visible rather than cropped.

   .card-image img {
       object-fit: contain;
       padding: 15px;
   }
*/


/* =========================================================
   IMAGE LABEL
   ========================================================= */

.image-label {

    position: absolute;

    top: 12px;

    left: 12px;

    z-index: 2;

    background: #171717;

    color: white;

    padding: 5px 8px;

    font-family: "Courier New", monospace;

    font-size: 9px;
}


/* =========================================================
   CARD BODY
   ========================================================= */

.card-body {

    padding: 25px;
}


.tag {

    font-family: "Courier New", monospace;

    font-size: 9px;

    font-weight: bold;

    letter-spacing: 2px;
}


.card h3 {

    margin-top: 8px;

    font-size: 25px;

    line-height: 1.05;
}


.card p {

    margin-top: 15px;

    font-size: 14px;
}


.card a {

    display: inline-block;

    margin-top: 20px;

    font-family: "Courier New", monospace;

    font-size: 10px;

    font-weight: bold;

    border-bottom: 2px solid #171717;
}


.card a:hover {

    background: #171717;

    color: #f5f0df;
}


/* =========================================================
   MENU GRID
   ========================================================= */

.menu-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;
}


.menu-item {

    display: grid;

    grid-template-columns: 55px 1fr 30px;

    gap: 20px;

    align-items: center;

    padding: 22px;

    border: 3px solid #171717;

    background: #fffdf4;

    transition: .15s;
}


.menu-item:hover {

    background: #171717;

    color: #f5f0df;

    transform: translateX(5px);
}


.menu-icon {

    width: 50px;

    height: 50px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 3px solid currentColor;

    font-size: 22px;
}


.menu-item h3 {

    font-size: 19px;
}


.menu-item p {

    font-size: 13px;

    margin-top: 3px;
}


.menu-item b {

    font-size: 25px;
}


/* =========================================================
   RANDOM ACCESS
   ========================================================= */

.random-section {

    margin-bottom: 100px;

    border: 4px solid #171717;

    background: #202020;

    color: white;

    box-shadow: 8px 8px 0 #171717;
}


.random-header {

    padding: 10px 15px;

    background: #171717;

    border-bottom: 2px solid #555;

    color: #b9ff6b;

    font-family: "Courier New", monospace;

    font-size: 11px;

    font-weight: bold;
}


.random-content {

    display: flex;

    gap: 35px;

    align-items: center;

    padding: 35px;
}


.random-number {

    font-family: "Courier New", monospace;

    font-size: 90px;

    font-weight: bold;

    color: #b9ff6b;

    line-height: 1;
}


.random-content h2 {

    font-size: 28px;

    line-height: 1;
}


.random-content p {

    margin-top: 10px;

    color: #aaa;
}


.random-content button {

    margin-top: 20px;

    padding: 12px 18px;

    background: #b9ff6b;

    border: 0;

    color: #171717;

    font-family: "Courier New", monospace;

    font-weight: bold;

    cursor: pointer;
}


.random-content button:hover {

    background: white;
}


#random-result {

    padding: 0 35px 30px;

    color: #b9ff6b;

    font-family: "Courier New", monospace;

    font-size: 13px;
}


/* =========================================================
   FACT
   ========================================================= */

.fact {

    display: grid;

    grid-template-columns: 220px 80px 1fr;

    align-items: center;

    margin-bottom: 100px;

    border: 3px solid #171717;

    background: #fff9bd;
}


.fact-title {

    align-self: stretch;

    display: flex;

    align-items: center;

    padding: 20px;

    background: #171717;

    color: white;

    font-family: "Courier New", monospace;

    font-size: 10px;

    font-weight: bold;
}


.fact-number {

    padding: 20px;

    font-family: "Courier New", monospace;

    font-size: 12px;

    font-weight: bold;
}


.fact-text {

    padding: 20px;

    font-size: 20px;
}


/* =========================================================
   ABOUT
   ========================================================= */

.about {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    padding: 45px;

    border: 3px solid #171717;

    background: #d4cbb3;

    margin-bottom: 20px;
}


.about h2 {

    margin-top: 10px;

    font-size: 45px;

    letter-spacing: -3px;
}


.about p {

    max-width: 650px;

    margin-top: 10px;

    font-size: 16px;
}


/* =========================================================
   FOOTER
   ========================================================= */

footer {

    background: #171717;

    color: #f5f0df;

    padding: 35px 50px 20px;
}


.footer-top {

    display: flex;

    justify-content: space-between;

    gap: 20px;

    font-family: "Courier New", monospace;

    font-size: 10px;
}


.footer-top strong {

    font-size: 18px;
}


.footer-bottom {

    margin-top: 35px;

    padding-top: 15px;

    border-top: 1px solid #555;

    display: flex;

    justify-content: space-between;

    font-family: "Courier New", monospace;

    font-size: 9px;

    color: #999;
}


/* =========================================================
   ANIMATION
   ========================================================= */

@keyframes blink {

    50% {
        opacity: 0;
    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .logo-area {

        flex-direction: column;

        align-items: flex-start;
    }


    .hero {

        grid-template-columns: 1fr;
    }


    .cards {

        grid-template-columns: repeat(2, 1fr);
    }


    .footer-top {

        flex-direction: column;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 650px) {

    .logo-area {

        padding: 35px 25px;
    }


    nav {

        display: grid;

        grid-template-columns: 1fr 1fr;
    }


    nav a {

        border-bottom: 2px solid #171717;
    }


    main {

        padding: 50px 20px;
    }


    .hero h1 {

        font-size: 52px;
    }


    .cards,
    .menu-grid {

        grid-template-columns: 1fr;
    }


    .section-title h2 {

        font-size: 30px;
    }


    .random-content {

        flex-direction: column;

        align-items: flex-start;
    }


    .random-number {

        font-size: 65px;
    }


    .fact {

        grid-template-columns: 1fr;
    }


    .about {

        flex-direction: column;

        align-items: flex-start;

        padding: 30px;
    }


    .footer-top,
    .footer-bottom {

        flex-direction: column;
    }

}


/* =========================================================
   VERY SMALL SCREENS
   ========================================================= */

@media (max-width: 400px) {

    .disk-warning {

        font-size: 9px;

        padding: 7px 12px;
    }


    .logo-area {

        padding: 30px 18px;
    }


    .logo-main {

        letter-spacing: -4px;
    }


    .logo-disk {

        letter-spacing: 2px;
    }


    .logo-disk span {

        width: 42px;

        height: 42px;
    }


    main {

        padding: 40px 15px;
    }


    .card-body {

        padding: 20px;
    }


    .card h3 {

        font-size: 22px;
    }


    .random-content {

        padding: 25px;
    }


    #random-result {

        padding: 0 25px 25px;
    }


    footer {

        padding: 30px 20px 20px;
    }

}

/* =========================================================
   ARTICLE PAGE
   ========================================================= */

.article-page {
    max-width: 900px;
    margin: 0 auto;
}


/* ARTICLE HEADER */

.article-header {
    padding: 40px 0 50px;
    border-bottom: 3px solid #171717;
}

.article-tag {
    display: inline-block;

    margin-top: 30px;
    padding: 6px 10px;

    background: #171717;
    color: #b9ff6b;

    font-family: "Courier New", monospace;
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 1px;
}

.article-header h1 {
    margin-top: 20px;

    font-size: clamp(50px, 8vw, 90px);

    line-height: .9;

    letter-spacing: -5px;
}

.article-header h1 em {
    font-family: Georgia, serif;
    font-weight: normal;
    letter-spacing: -3px;
}

.article-intro {
    max-width: 700px;

    margin-top: 30px;

    font-size: 20px;
    line-height: 1.5;
}


/* ARTICLE IMAGE */

.article-image {
    margin: 50px 0;
}

.article-image img {
    max-width: 100%;
    height: auto;
    display: block;
    border: 3px solid #171717;
    box-shadow: 8px 8px 0 #171717;
}

.article-image small {
    display: block;

    margin-top: 12px;

    font-family: "Courier New", monospace;
    font-size: 10px;
}


/* ARTICLE TEXT */

.article-content {
    max-width: 720px;

    margin: 0 auto;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 19px;

    line-height: 1.75;
}

.article-content p {
    margin-bottom: 25px;
}


.article-content h2 {
    margin: 60px 0 20px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 40px;

    line-height: 1;

    letter-spacing: -2px;
}


/* ARTICLE BREAK */

.article-break {
    margin: 55px 0;

    padding: 20px;

    background: #171717;

    color: #b9ff6b;

    text-align: center;

    font-family: "Courier New", monospace;

    font-size: 22px;
    font-weight: bold;

    box-shadow: 6px 6px 0 #171717;
}


/* =========================================================
   ARTICLE INFORMATION BOXES
   ========================================================= */

.article-note,
.article-explainer {

    margin: 50px 0;

    border: 3px solid #171717;

    background: #d4cbb3;

    box-shadow: 7px 7px 0 #171717;
}


/* HEADER */

.article-note-header,
.article-explainer-header {

    padding: 12px 18px;

    background: #171717;

    color: #f5f0df;

    font-family: "Courier New", monospace;

    font-size: 11px;

    font-weight: bold;

    letter-spacing: 1px;
}


/* BODY */

.article-note-body,
.article-explainer-body {

    padding: 25px;
}


.article-note h3,
.article-explainer h3 {

    margin-bottom: 15px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 25px;

    line-height: 1.1;
}


.article-note p,
.article-explainer p {

    margin-bottom: 15px;
}


/* LAST PARAGRAPH */

.article-note p:last-child,
.article-explainer p:last-child {

    margin-bottom: 0;
}


/* QUOTE */

.article-explainer blockquote {

    margin: 20px 0;

    padding: 15px 20px;

    background: #171717;

    color: #b9ff6b;

    border-left: 5px solid #b9ff6b;

    font-family: "Courier New", monospace;

    font-size: 16px;

    font-weight: bold;
}

.review-verdict {
    margin: 50px 0;
    padding: 0;
    border: 3px solid #222;
    background: #f4f1e8;
    box-shadow: 6px 6px 0 #222;
}

.review-verdict-header {
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    background: #222;
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.review-verdict h2 {
    margin: 25px 25px 5px;
    font-size: 2rem;
}

.review-score {
    margin: 0 25px 20px;
    display: flex;
    align-items: baseline;
}

.review-score strong {
    font-size: 4rem;
    line-height: 1;
}

.review-score span {
    font-size: 1.5rem;
    margin-left: 5px;
}

.review-summary {
    margin: 0 25px 30px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.review-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 2px solid #222;
    border-bottom: 2px solid #222;
}

.review-stats div {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.review-stats div:nth-child(odd) {
    border-right: 1px solid #aaa;
}

.review-stats div:nth-child(-n+2) {
    border-bottom: 1px solid #aaa;
}

.review-stats span {
    font-weight: bold;
}

.review-stats strong {
    letter-spacing: 2px;
}

.review-verdict-final {
    padding: 20px 25px 25px;
}

.review-verdict-final > strong {
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.review-verdict-final p {
    margin: 8px 0 0;
    font-size: 1.15rem;
    line-height: 1.5;
}

.binary-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-family: monospace;
}

.binary-table th,
.binary-table td {
    border: 1px solid currentColor;
    padding: 0.7rem;
    text-align: center;
}

.binary-table th {
    font-weight: bold;
}

.article-code {
    background: #111;
    color: #00ff66;
    padding: 15px;
    margin: 20px 0;
    font-family: monospace;
    border: 2px solid #333;
}