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

html {
    height: 100%;
    padding: 0;
    margin: 0;
}

body {
    background-color: #020202;
    color: #cfcfcf;
    height: 100%;
    padding: 40px 60px;
    margin: 0;
    box-sizing: border-box;
    scrollbar-width: auto;
    scrollbar-color: rgb(124, 198, 118) #020202;
}

body,
input,
textarea {
    font-family: "Source Code Pro", "Lucida Console", "Andale Mono", Courier, monospace;
}

::selection {
    background: rgb(124, 198, 118);
    color: #020202;
}

/* ============================================
   CRT EFFECTS
   ============================================ */

/* Scanlines */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.15) 0px,
        transparent 1px,
        transparent 2px
    );
    opacity: 0.3;
    z-index: 9999;
}

/* Vignette */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: radial-gradient(
        ellipse at center,
        transparent 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 9997;
}

/* Chromatic aberration on focus */
input:focus,
textarea:focus {
    text-shadow:
        -1px 0 rgba(255, 0, 0, 0.2),
        1px 0 rgba(0, 255, 255, 0.2);
}

/* Blinking cursor */
.cursor {
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

/* ============================================
   COLOR THEME - GREEN TERMINAL
   ============================================ */

.green {
    color: rgb(124, 198, 118);
}

.green .bordered,
.green .lowlight {
    border-color: rgb(124, 198, 118);
}

.green .highlight {
    background-color: rgb(124, 198, 118);
    color: #000;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1,
h2 {
    text-shadow:
        0 0 5px rgba(124, 198, 118, 0.6),
        0 0 15px rgba(124, 198, 118, 0.3);
}

h1 {
    font-size: 60px;
    margin-top: -10px;
    letter-spacing: 2px;
}

h2 {
    font-size: 36px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

h1,
h2,
h3 {
    margin-top: 0;
    text-transform: uppercase;
    font-weight: 900;
}

h2::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: repeating-linear-gradient(
        90deg,
        rgb(124, 198, 118) 0px,
        rgb(124, 198, 118) 4px,
        transparent 4px,
        transparent 8px
    );
    margin-top: 5px;
}

h3::before {
    content: '▸ ';
    color: rgb(124, 198, 118);
    font-weight: bold;
}

.symbol {
    font-weight: bold;
}

.subtitle {
    font-size: 16px;
    color: rgba(124, 198, 118, 0.6);
    margin-top: -5px;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ============================================
   CTA ELEMENTS
   ============================================ */

.cta-link {
    display: inline-block;
    border: 2px solid rgb(124, 198, 118);
    padding: 10px 20px;
    margin-top: 10px;
    text-decoration: none;
    color: rgb(124, 198, 118);
    cursor: pointer;
    transition: all 0.2s;
    animation: pulse-glow 2s ease-in-out infinite;
}

.cta-link:hover {
    background: rgb(124, 198, 118);
    color: #020202;
    box-shadow: 0 0 20px rgba(124, 198, 118, 0.5);
}

.cta-nav {
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%,
    100% {
        text-shadow: 0 0 5px rgba(124, 198, 118, 0.5);
    }
    50% {
        text-shadow:
            0 0 20px rgba(124, 198, 118, 1),
            0 0 30px rgba(124, 198, 118, 0.5);
    }
}

/* ============================================
   BORDERED CONTAINERS
   ============================================ */

.bordered {
    border-width: 2px;
    border-style: solid;
    padding: 30px;
    position: relative;
}

.bordered::before,
.bordered::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid rgb(124, 198, 118);
}

.bordered::before {
    top: -2px;
    left: -2px;
    border-right: none;
    border-bottom: none;
}

.bordered::after {
    top: -2px;
    right: -2px;
    border-left: none;
    border-bottom: none;
}

#wrapper.bordered::before,
#wrapper.bordered::after {
    display: none;
}

/* ============================================
   LAYOUT STRUCTURE
   ============================================ */

#wrapper {
    margin: 0 auto;
    max-width: 1200px;
    height: calc(100vh - 80px);
    position: relative;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    padding-top: 20px;
    border-radius: 10px;
    box-shadow:
        inset 0 0 60px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(124, 198, 118, 0.2);
    overflow: hidden;
}

#main_panel,
#bottom_logo {
    opacity: 0;
    animation: contentFadeIn 0.3s 1.5s forwards;
}

@keyframes contentFadeIn {
    to {
        opacity: 1;
    }
}

#main_panel {
    flex: 1 1 auto;
    display: flex;
    overflow: hidden;
    position: relative;
    min-height: 0;
    margin-bottom: 15px;
}

/* ============================================
   LOADING SCREEN
   ============================================ */

#loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #020202;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 10%;
    z-index: 1000;
    font-family: "Source Code Pro", monospace;
    animation: loaderFadeOut 0.3s 1.5s forwards;
}

#loader pre {
    font-size: 10px;
    line-height: 1.1;
    margin: 0 0 20px 0;
    white-space: pre;
    opacity: 0;
    animation: textAppear 0.2s 0.1s forwards;
}

#loader p {
    font-size: 14px;
    margin-bottom: 30px;
    opacity: 0;
    animation: textAppear 0.2s 0.3s forwards;
}

#loader::before {
    content: 'Loading system components...';
    font-size: 16px;
    margin-bottom: 8px;
    opacity: 0;
    animation: textAppear 0.2s 0.5s forwards;
}

#loader::after {
    content: '░░░░░░░░░░░░░░░░░░░░';
    font-size: 16px;
    letter-spacing: 2px;
    opacity: 0;
    animation: progressBar 0.8s 0.7s forwards;
}

@keyframes progressBar {
    0% {
        content: '░░░░░░░░░░░░░░░░░░░░';
        opacity: 1;
    }
    15% { content: '███░░░░░░░░░░░░░░░░░'; }
    30% { content: '██████░░░░░░░░░░░░░░'; }
    50% { content: '█████████░░░░░░░░░░░'; }
    70% { content: '████████████░░░░░░░░'; }
    85% { content: '███████████████░░░░░'; }
    100% { content: '████████████████████'; }
}

@keyframes textAppear {
    to {
        opacity: 1;
    }
}

@keyframes loaderFadeOut {
    to {
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
    }
}

/* ============================================
   LEFT COLUMN - NAVIGATION
   ============================================ */

#leftcolumn {
    flex: 0 0 30%;
    padding-right: 20px;
    padding-bottom: 0;
    height: 100%;
    overflow-y: auto;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgb(124, 198, 118) #020202;
}

/* ============================================
   RIGHT COLUMN - CONTENT
   ============================================ */

#rightcolumn {
    flex: 1;
    height: 100%;
    overflow: hidden;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
}

/* ============================================
   NAVIGATION MENU
   ============================================ */

#nav_menu {
    width: 100%;
    font-size: 30px;
}

#nav_menu .nav_item {
    cursor: pointer;
    position: relative;
}

#nav_menu .nav_item td {
    position: relative;
}

#nav_menu .nav_item td::before {
    content: '›';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: opacity 0.2s, left 0.2s;
    color: rgb(124, 198, 118);
}

#nav_menu .nav_item:hover td::before {
    opacity: 0.5;
    left: -12px;
}

.nav_item input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.nav_link {
    cursor: pointer;
    display: block;
    padding: 10px 0;
    transition: background-color 0.1s;
    user-select: none;
    -webkit-user-select: none;
    text-decoration: none;
    color: inherit;
    -webkit-tap-highlight-color: rgba(124, 198, 118, 0.3);
}

.nav_link:focus {
    outline: 4px solid rgb(124, 198, 118);
    outline-offset: 2px;
    background-color: rgba(124, 198, 118, 0.3);
}

.nav_link:active {
    background-color: rgba(124, 198, 118, 0.2);
}

.lowlight {
    box-shadow: 0 0 0 2px rgb(124, 198, 118) inset;
}

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

.content_section {
    display: none;
    padding: 20px;
    height: 100%;
    overflow-y: auto;
    box-sizing: border-box;
    animation: warmup 0.5s ease-out;
}

@keyframes warmup {
    0% {
        opacity: 0;
        filter: brightness(1.5) blur(1px);
    }
    100% {
        opacity: 1;
        filter: brightness(1) blur(0);
    }
}

/* Show content when radio checked */
#nav_home:checked ~ #wrapper #main_panel #rightcolumn #content_home,
#nav_about:checked ~ #wrapper #main_panel #rightcolumn #content_about,
#nav_services:checked ~ #wrapper #main_panel #rightcolumn #content_services,
#nav_projects:checked ~ #wrapper #main_panel #rightcolumn #content_projects,
#nav_contact:checked ~ #wrapper #main_panel #rightcolumn #content_contact,
#nav_team:checked ~ #wrapper #main_panel #rightcolumn #content_team,
#nav_blog:checked ~ #wrapper #main_panel #rightcolumn #content_blog {
    display: block;
}

/* Active navigation styles */
#nav_home:checked ~ #wrapper #main_panel #leftcolumn label[for="nav_home"],
#nav_about:checked ~ #wrapper #main_panel #leftcolumn label[for="nav_about"],
#nav_services:checked ~ #wrapper #main_panel #leftcolumn label[for="nav_services"],
#nav_projects:checked ~ #wrapper #main_panel #leftcolumn label[for="nav_projects"],
#nav_contact:checked ~ #wrapper #main_panel #leftcolumn label[for="nav_contact"],
#nav_team:checked ~ #wrapper #main_panel #leftcolumn label[for="nav_team"],
#nav_blog:checked ~ #wrapper #main_panel #leftcolumn label[for="nav_blog"] {
    background-color: rgb(124, 198, 118);
    color: #000;
    font-weight: bold;
    position: relative;
}

#nav_home:checked ~ #wrapper #main_panel #leftcolumn label[for="nav_home"]::before,
#nav_about:checked ~ #wrapper #main_panel #leftcolumn label[for="nav_about"]::before,
#nav_services:checked ~ #wrapper #main_panel #leftcolumn label[for="nav_services"]::before,
#nav_projects:checked ~ #wrapper #main_panel #leftcolumn label[for="nav_projects"]::before,
#nav_contact:checked ~ #wrapper #main_panel #leftcolumn label[for="nav_contact"]::before,
#nav_team:checked ~ #wrapper #main_panel #leftcolumn label[for="nav_team"]::before,
#nav_blog:checked ~ #wrapper #main_panel #leftcolumn label[for="nav_blog"]::before {
    content: '▶';
    position: absolute;
    left: -15px;
    color: #000;
}

#nav_home:checked ~ #wrapper #main_panel #leftcolumn tr:has(label[for="nav_home"]),
#nav_about:checked ~ #wrapper #main_panel #leftcolumn tr:has(label[for="nav_about"]),
#nav_services:checked ~ #wrapper #main_panel #leftcolumn tr:has(label[for="nav_services"]),
#nav_projects:checked ~ #wrapper #main_panel #leftcolumn tr:has(label[for="nav_projects"]),
#nav_contact:checked ~ #wrapper #main_panel #leftcolumn tr:has(label[for="nav_contact"]),
#nav_team:checked ~ #wrapper #main_panel #leftcolumn tr:has(label[for="nav_team"]),
#nav_blog:checked ~ #wrapper #main_panel #leftcolumn tr:has(label[for="nav_blog"]) {
    background-color: rgb(124, 198, 118);
    color: #000;
}

#nav_home:checked ~ #wrapper #main_panel #leftcolumn tr:has(label[for="nav_home"]) td,
#nav_about:checked ~ #wrapper #main_panel #leftcolumn tr:has(label[for="nav_about"]) td,
#nav_services:checked ~ #wrapper #main_panel #leftcolumn tr:has(label[for="nav_services"]) td,
#nav_projects:checked ~ #wrapper #main_panel #leftcolumn tr:has(label[for="nav_projects"]) td,
#nav_contact:checked ~ #wrapper #main_panel #leftcolumn tr:has(label[for="nav_contact"]) td,
#nav_team:checked ~ #wrapper #main_panel #leftcolumn tr:has(label[for="nav_team"]) td,
#nav_blog:checked ~ #wrapper #main_panel #leftcolumn tr:has(label[for="nav_blog"]) td {
    background-color: rgb(124, 198, 118);
    color: #000;
}

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

#detail_price {
    width: 100%;
    font-size: 20px;
    font-weight: bolder;
    border-collapse: collapse;
}

#detail_price th {
    font-weight: normal;
    padding: 8px 12px;
    text-align: left;
    border-bottom: 1px dashed rgba(124, 198, 118, 0.3);
}

#detail_price td {
    padding: 8px 12px;
    border-bottom: 1px solid rgba(124, 198, 118, 0.1);
}

#detail_price td:not(:last-child)::after {
    content: '│';
    position: absolute;
    right: 0;
    opacity: 0.2;
    color: rgb(124, 198, 118);
}

.content_box {
    margin: 20px 0;
    line-height: 1.6;
    border-left: 3px solid rgba(124, 198, 118, 0.3);
    padding-left: 15px;
}

.content_box h3 {
    font-size: 24px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.content_box p {
    font-size: 18px;
    margin-bottom: 15px;
}

/* ============================================
   INTRO ROW (README)
   ============================================ */

.intro-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.intro-photo {
    width: 100px;
    height: 100px;
    border: 2px solid rgb(124, 198, 118);
    box-shadow: 0 0 15px rgba(124, 198, 118, 0.3);
    flex-shrink: 0;
    margin-top: 10px;
}

.intro-text h1 {
    margin-bottom: 5px;
}

/* ============================================
   SERVICES CTA
   ============================================ */

.services-cta {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px dashed rgba(124, 198, 118, 0.3);
}

/* ============================================
   PROJECTS
   ============================================ */

.project-entry {
    margin-bottom: 30px;
}

.project-meta {
    font-size: 14px;
    color: rgba(124, 198, 118, 0.6);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.project-link {
    display: inline-block;
    margin-top: 15px;
    color: rgb(124, 198, 118);
    text-decoration: none;
    border: 1px solid rgb(124, 198, 118);
    padding: 8px 15px;
    transition: all 0.2s;
}

.project-link:hover {
    background: rgb(124, 198, 118);
    color: #020202;
}

/* ============================================
   ABOUT IMAGE
   ============================================ */

.about-image-container {
    text-align: center;
    margin: 20px 0;
    padding: 15px 0;
}

.about-image {
    width: 250px;
    float: right;
    margin: 0 0 15px 20px;
}

/* ============================================
   SOCIAL ICONS
   ============================================ */

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 30px 0;
    padding: 20px 0;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: rgb(124, 198, 118);
    transition: all 0.2s;
    padding: 15px;
    border: 2px solid transparent;
    min-width: 100px;
}

.social-link:hover,
.social-link:focus {
    border: 2px solid rgb(124, 198, 118);
    background-color: rgba(124, 198, 118, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(124, 198, 118, 0.4);
}

.social-link:active {
    transform: translateY(0);
    background-color: rgba(124, 198, 118, 0.2);
}

.social-icon-img {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    border: 2px solid rgb(124, 198, 118);
    transition: all 0.2s;
}

.social-link:hover .social-icon-img {
    box-shadow: 0 0 10px rgba(124, 198, 118, 0.5);
}

.social-label {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    font-weight: bold;
}

.social-link:hover .social-label {
    opacity: 1;
}

/* ============================================
   TERMINAL FORM
   ============================================ */

.terminal-form {
    margin-top: 20px;
}

.terminal-form .form-header {
    font-size: 18px;
    color: rgb(124, 198, 118);
    margin-bottom: 20px;
}

.terminal-form .form-row {
    margin-bottom: 15px;
}

.terminal-form label {
    display: block;
    color: rgb(124, 198, 118);
    margin-bottom: 5px;
    font-size: 14px;
}

.terminal-form input,
.terminal-form textarea {
    width: 100%;
    background: #020202;
    border: 1px solid rgb(124, 198, 118);
    color: rgb(124, 198, 118);
    padding: 10px;
    font-family: inherit;
    font-size: 14px;
    box-sizing: border-box;
}

.terminal-form input::placeholder,
.terminal-form textarea::placeholder {
    color: rgba(124, 198, 118, 0.4);
}

.terminal-form input:focus,
.terminal-form textarea:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(124, 198, 118, 0.5);
}

.terminal-form textarea {
    resize: vertical;
    min-height: 100px;
}

.terminal-form button[type="submit"] {
    background: transparent;
    border: 2px solid rgb(124, 198, 118);
    color: rgb(124, 198, 118);
    padding: 10px 25px;
    font-family: inherit;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 10px;
}

.terminal-form button[type="submit"]:hover {
    background: rgb(124, 198, 118);
    color: #020202;
    box-shadow: 0 0 15px rgba(124, 198, 118, 0.5);
}

.terminal-form .form-status {
    margin-top: 20px;
    font-size: 12px;
    color: rgba(124, 198, 118, 0.6);
}

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

#bottom_logo {
    flex: 0 0 auto;
    padding: 10px 30px;
    border-top: 2px dashed rgb(124, 198, 118);
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    position: relative;
}

#bottom_logo::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 30px;
    right: 30px;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(124, 198, 118, 0.2) 20%,
        rgba(124, 198, 118, 0.2) 80%,
        transparent 100%
    );
}

.footer-social {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-social a {
    opacity: 0.7;
    transition: opacity 0.2s;
}

.footer-social a:hover {
    opacity: 1;
}

.footer-social img {
    width: 20px;
    height: 20px;
    display: block;
}

#footer_links {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 14px;
}

#footer_links a {
    color: rgb(124, 198, 118);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.2s;
    padding: 3px 0;
    display: inline-block;
    line-height: 1.4;
    -webkit-tap-highlight-color: rgba(124, 198, 118, 0.3);
}

#footer_links a:hover,
#footer_links a:active {
    opacity: 1;
}

#ascii_logo {
    display: block;
    text-align: right;
    line-height: 1.0;
    margin: 0;
    font-size: 0.5em;
}

/* ============================================
   CUSTOM SCROLLBAR (WEBKIT)
   ============================================ */

::-webkit-scrollbar {
    width: 30px;
    padding: 5px;
}

::-webkit-scrollbar-track {
    border: 2px solid rgb(124, 198, 118);
    border-radius: 0;
    border-width: 0 2px 2px 2px;
}

::-webkit-scrollbar-thumb {
    background-color: rgb(124, 198, 118);
    border-radius: 0;
    box-shadow: inset 0px 0px 0 5px #000;
    margin: 1px;
    border-width: 0px 2px;
    border-color: transparent !important;
    border-style: dashed;
}

/* ============================================
   RESPONSIVE - LARGE TABLETS
   ============================================ */

@media (max-width: 1200px) {
    body {
        padding: 30px 40px;
    }

    #wrapper {
        max-width: 100%;
        height: calc(100vh - 60px);
    }
}

/* ============================================
   RESPONSIVE - TABLETS
   ============================================ */

@media (max-width: 968px) {
    body {
        padding: 20px;
    }

    #wrapper {
        height: calc(100vh - 40px);
    }

    #main_panel {
        flex-direction: column;
        margin-bottom: 10px;
    }

    .bordered::before,
    .bordered::after {
        display: none;
    }

    h1,
    h2 {
        text-shadow: none;
    }

    #loader pre {
        font-size: 8px;
    }

    #loader p {
        font-size: 13px;
    }

    #loader::before,
    #loader::after {
        font-size: 15px;
    }

    #leftcolumn {
        flex: 0 0 auto;
        width: 100%;
        height: auto;
        max-height: 40vh;
        overflow-y: auto;
        border-bottom: 2px solid rgb(124, 198, 118);
        margin-bottom: 20px;
        padding-bottom: 20px;
        padding-right: 0;
        scrollbar-width: thin;
    }

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

    ::-webkit-scrollbar-thumb {
        box-shadow: none;
        border: none;
    }

    ::-webkit-scrollbar-track {
        border-width: 0 1px;
    }

    #rightcolumn {
        flex: 1;
        width: 100%;
        height: auto;
        overflow: hidden;
    }

    #nav_menu {
        font-size: 24px;
    }

    .nav_link {
        padding: 15px 0;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 20px;
    }

    #detail_price {
        font-size: 16px;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    #detail_price th,
    #detail_price td {
        white-space: nowrap;
    }

    .content_box p {
        font-size: 16px;
    }

    .content_section {
        padding: 15px;
    }

    #bottom_logo {
        flex-direction: column;
        gap: 8px;
        padding: 12px 15px;
        align-items: flex-start;
    }

    #ascii_logo {
        text-align: left;
        font-size: 0.45em;
    }

    #footer_links {
        font-size: 13px;
        gap: 4px;
    }

    .bordered {
        padding: 20px;
    }

    .about-image {
        width: 300px;
    }

    .social-icons {
        gap: 30px;
    }

    .social-icon-img {
        width: 56px;
        height: 56px;
    }

    .social-label {
        font-size: 14px;
    }

    .social-link {
        min-width: 90px;
        padding: 12px;
    }
}

/* ============================================
   RESPONSIVE - MOBILE LANDSCAPE
   ============================================ */

@media (max-width: 640px) {
    body {
        padding: 10px;
    }

    #wrapper {
        height: calc(100vh - 20px);
    }

    #main_panel {
        margin-bottom: 8px;
    }

    #loader {
        padding-left: 5%;
    }

    #loader pre {
        font-size: 7px;
    }

    #loader p {
        font-size: 11px;
    }

    #loader::before,
    #loader::after {
        font-size: 12px;
    }

    #nav_menu {
        font-size: 20px;
    }

    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 24px;
    }

    #detail_price {
        font-size: 14px;
    }

    #detail_price th,
    #detail_price td {
        padding: 8px 4px;
    }

    .content_box p {
        font-size: 14px;
    }

    .content_box h3 {
        font-size: 18px;
    }

    .content_section {
        padding: 10px;
    }

    #bottom_logo {
        padding: 10px;
    }

    #ascii_logo {
        font-size: 0.38em;
        overflow-x: auto;
    }

    #footer_links {
        font-size: 12px;
        gap: 3px;
    }

    .bordered {
        padding: 10px;
    }

    #leftcolumn {
        max-height: 30vh;
    }

    .about-image {
        width: 250px;
    }

    .social-icons {
        gap: 20px;
    }

    .social-icon-img {
        width: 48px;
        height: 48px;
    }

    .social-label {
        font-size: 12px;
    }

    .social-link {
        min-width: 80px;
        padding: 10px;
    }
}

/* ============================================
   RESPONSIVE - MOBILE PORTRAIT
   ============================================ */

@media (max-width: 480px) {
    body {
        font-size: 14px;
        padding: 8px;
    }

    #wrapper {
        height: calc(100vh - 16px);
    }

    #main_panel {
        margin-bottom: 5px;
    }

    #nav_menu {
        font-size: 18px;
    }

    #loader pre {
        font-size: 5px;
    }

    #loader p {
        font-size: 10px;
    }

    #loader::before,
    #loader::after {
        font-size: 11px;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 20px;
    }

    #detail_price {
        font-size: 12px;
    }

    #ascii_logo {
        font-size: 0.32em;
    }

    #footer_links {
        font-size: 11px;
        gap: 2px;
    }

    #bottom_logo {
        padding: 8px;
    }

    .bordered {
        padding: 8px;
    }

    .about-image {
        width: 200px;
    }
}
