/* --- GOOGLE FONTS FOR ABOUT ME --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Lora:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;0,900;1,400;1,600&display=swap');

/* --- CSS VARIABLES FOR THEME MANAMGENT --- */
:root {
    --xp-blue: #0058ee;
    --xp-blue-dark: #001d5d;
    --xp-taskbar-bg: #245edb;
    --xp-window-bg: #ece9d8;
    --xp-text-color: #333;
    --font-family: "Tahoma", sans-serif;
    --z-index-base: 10;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: var(--font-family);
    background: url('bliss.jpg') no-repeat center center fixed; 
    background-size: cover;
    user-select: none;
}

/* --- DESKTOP --- */
.desktop {
    position: relative;
    width: 100vw;
    height: calc(100vh - 36px); /* Taskbar height */
    padding: 20px;
}

.desktop-icon {
    position: absolute;
    width: 76px;
    background: transparent;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    color: white;
    text-shadow: 1px 1px 2px black;
    z-index: 5;
    padding: 5px;
}

.desktop-icon:hover {
    background: rgba(255, 255, 255, 0.1);
}

.desktop-icon.focused {
    background-color: rgba(11, 97, 255, 0.5);
    border: 1px dotted rgba(255, 255, 255, 0.8);
    outline: none;
}

.desktop-icon img {
    width: 48px;
    height: 48px;
    margin-bottom: 5px;
    pointer-events: none;
}

.desktop-icon span {
    font-size: 12px;
    text-align: center;
    word-break: break-word;
}

/* --- WINDOW COMPONENT --- */
.window {
    position: absolute;
    background-color: var(--xp-window-bg);
    border: 1px solid var(--xp-blue);
    border-radius: 8px 8px 0 0;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    min-width: 250px;
    min-height: 150px;
    pointer-events: auto;
    resize: both;
    overflow: hidden;
}

.window.hidden {
    display: none;
}

.window.maximized {
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: calc(100vh - 36px) !important;
    border-radius: 0;
}

.title-bar {
    background: linear-gradient(to bottom, #0058ee 0%, #3593ff 4%, #288eff 18%, #127dff 44%, #036dff 100%);
    padding: 5px 8px;
    border-radius: 6px 6px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: grab;
}

.window.maximized .title-bar {
    border-radius: 0;
}

.title-bar:active {
    cursor: grabbing;
}

.title-bar-text {
    color: white;
    font-weight: bold;
    font-size: 13px;
    text-shadow: 1px 1px 1px black;
    pointer-events: none;
}

.title-bar-controls {
    display: flex;
    gap: 2px;
}

.control-btn {
    width: 21px;
    height: 21px;
    border: 1px solid white;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    background: linear-gradient(to bottom, #fff 0%, #ece9d8 100%);
}

.close-btn {
    background: linear-gradient(to bottom, #ff5a42 0%, #e0351c 100%);
    color: white;
}

.window-body {
    padding: 10px;
    background-color: white;
    margin: 3px;
    border: 1px solid #999;
    flex-grow: 1;
    overflow: auto;
}

.text-editor pre {
    white-space: pre-wrap;
    word-wrap: break-word;
    font-family: inherit;
    margin: 0;
}

.center-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.user-image {
    max-width: 100%;
    max-height: calc(100% - 30px);
    width: 100%;
    height: 100%;
    min-height: 0;
    min-width: 0;
    object-fit: contain;
    border: 1px solid #999;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 5px;
}

/* --- TASKBAR --- */
.taskbar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 36px;
    background: linear-gradient(to bottom, #245edb 0%, #3f8cf3 9%, #245edb 18%, #245edb 92%, #333 100%);
    display: flex;
    align-items: center;
    z-index: 9999;
}

.start-button {
    background: linear-gradient(to bottom, #3c9c38 0%, #55ba4a 100%);
    color: white;
    font-weight: bold;
    font-style: italic;
    padding: 0 15px 0 10px;
    border-radius: 0 10px 10px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 17px;
    height: 29px;
    border: 1px solid #fff;
    border-left: none;
}

.start-button.active {
    box-shadow: inset 2px 2px 5px rgba(0,0,0,0.5);
}

.start-logo {
    width: 18px;
    height: 18px;
    background-color: white;
    border-radius: 50%;
    display: inline-block;
}

.taskbar-items {
    flex-grow: 1;
    display: flex;
    gap: 2px;
    padding: 0 5px;
    height: 28px;
}

.task-item {
    background: #3b82e2;
    border: 1px solid #144ca8;
    border-radius: 3px;
    color: white;
    font-size: 12px;
    padding: 0 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.task-item.active {
    background: #1e52a8;
    box-shadow: inset 1px 1px 3px rgba(0,0,0,0.5);
}

.task-item:hover {
    background: #5093eb;
}

.system-tray {
    background: #0b77e9;
    color: white;
    font-size: 13px;
    border-left: 1px solid #1d489f;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 15px;
}

/* --- START MENU --- */
.start-menu {
    position: fixed;
    bottom: 36px;
    left: 0;
    width: 400px;
    height: 500px;
    background-color: white;
    border: 1px solid var(--xp-blue);
    border-bottom: none;
    border-radius: 5px 5px 0 0;
    box-shadow: 2px -2px 10px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    z-index: 9998;
}

.start-menu.hidden {
    display: none;
}

.start-header {
    height: 60px;
    background: linear-gradient(to bottom, #3593ff 0%, #036dff 100%);
    color: white;
    display: flex;
    align-items: center;
    padding: 0 10px;
    font-weight: bold;
    font-size: 16px;
    border-bottom: 2px solid #e05212;
}

.user-avatar {
    width: 40px; height: 40px;
    background: #d3e5fa;
    border: 2px solid white;
    border-radius: 4px;
    margin-right: 10px;
}

.start-body {
    flex-grow: 1;
    display: flex;
}

.start-col-left {
    width: 50%;
    padding: 5px;
}

.start-col-right {
    width: 50%;
    background: #d4e0f0;
    border-left: 1px solid #9ebcd6;
    padding: 5px;
}

.menu-item {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}

.menu-item:hover {
    background: #316ac5;
    color: white;
}

.menu-item img {
    width: 32px; height: 32px;
    margin-right: 10px;
}

.start-footer {
    height: 40px;
    background: linear-gradient(to bottom, #3782e7 0%, #1d59b3 100%);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 10px;
}

.shutdown-btn {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-family: inherit;
    font-size: 13px;
}

/* --- OUTLOOK EXPRESS (MAIL WINDOW) --- */
.mail-editor {
    display: flex;
    flex-direction: column;
    padding: 0;
}

.mail-toolbar {
    background: #ece9d8;
    border-bottom: 1px solid #999;
    padding: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.toolbar-separator {
    width: 1px;
    height: 24px;
    background: #bbb;
    margin: 0 5px;
}

.toolbar-btn {
    background: transparent;
    border: 1px solid transparent;
    border-radius: 3px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 3px 8px;
    cursor: pointer;
    font-family: inherit;
    font-size: 11px;
}

.toolbar-btn:hover {
    border: 1px solid #0058ee;
    background: rgba(0, 88, 238, 0.1);
}

.toolbar-btn img {
    width: 24px;
    height: 24px;
}

.mail-form {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.mail-header-row {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ccc;
    background: #fdfdfd;
    padding: 4px 5px;
}

.mail-header-row label {
    width: 60px;
    font-size: 12px;
    color: #555;
    text-align: right;
    padding-right: 10px;
}

.mail-header-row input {
    flex-grow: 1;
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: 12px;
    padding: 2px 5px;
    outline: none;
}

.mail-header-row input:focus {
    background: #fff;
    outline: 1px solid #ccc;
}

#mail-body {
    flex-grow: 1;
    border: none;
    resize: none;
    padding: 10px;
    font-family: inherit;
    font-size: 13px;
    outline: none;
    line-height: 1.4;
}

/* --- CLASSIC retroamp MOCKUP --- */
.retroamp-window {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    min-width: 275px;
    font-family: Arial, sans-serif;
}

/* Main Player */
.retroamp-main-player {
    background: #1a1a2e; /* Classic dark blue/grey metallic */
    border: 2px outset #5a5f7e;
    border-radius: 0;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.7);
    padding: 2px;
    margin-bottom: 4px;
}

.retroamp-title-bar {
    background: #0f1021;
    border: 1px inset #5a5f7e;
    height: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4px;
    cursor: grab;
    margin-bottom: 2px;
}

.retroamp-title-text {
    font-size: 9px;
    color: #e6e6e6;
    font-weight: bold;
    letter-spacing: 1px;
}

.retroamp-title-controls {
    display: flex;
    gap: 1px;
}

.retroamp-btn-min, .retroamp-btn-close {
    background: #c3c7cb;
    border: 1px outset #fff;
    width: 9px;
    height: 9px;
    padding: 0;
    cursor: pointer;
}

.retroamp-main-body {
    background: #25283f;
    border: 2px inset #5a5f7e;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* LCD & Marquee */
.retroamp-top-section {
    display: flex;
    gap: 8px;
    height: 35px;
}

.retroamp-lcd {
    background-color: #000;
    border: 2px inset #444;
    width: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5px;
}

.lcd-play-icon {
    color: #00ff00;
    font-size: 10px;
    animation: blink 1s step-end infinite;
}
@keyframes blink { 50% { opacity: 0; } }

.lcd-play-icon.paused {
    animation: none;
    opacity: 0.5;
}

.lcd-time {
    font-family: "Courier New", monospace;
    color: #00ff00;
    font-size: 22px;
    font-weight: bold;
    letter-spacing: -1px;
    text-shadow: 0 0 2px #00ff00;
    margin-top: 2px;
}

.retroamp-info-area {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.retroamp-marquee-container {
    background: #000;
    border: 2px inset #444;
    height: 18px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0 4px;
}

#retroamp-track-name {
    color: #00ff00;
    font-size: 10px;
    font-weight: bold;
    text-shadow: 0 0 2px #00ff00;
    white-space: nowrap;
}

.retroamp-specs {
    font-size: 9px;
    color: #00ff00;
    font-weight: bold;
    background: #000;
    border: 2px inset #444;
    padding: 1px 4px;
    display: flex;
    gap: 8px;
    height: 12px;
    align-items: center;
}

/* Transport Buttons */
.retroamp-bottom-section {
    display: flex;
    justify-content: center;
    padding-top: 5px;
    border-top: 1px solid #1a1a2e;
}

.retroamp-transport {
    display: flex;
    gap: 2px;
}

.wbtn {
    background: #d6d9e0;
    border: 2px outset #fff;
    border-radius: 1px;
    height: 18px;
    cursor: pointer;
    box-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    background-size: 10px 10px;
    background-position: center;
    background-repeat: no-repeat;
}
.wbtn-prev { width: 22px; background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 6h2v12H6zm3.5 6l8.5 6V6z" fill="black"/></svg>'); }
.wbtn-play { width: 22px; background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 5v14l11-7z" fill="black"/></svg>'); }
.wbtn-pause { width: 22px; background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 19h4V5H6v14zm8-14v14h4V5h-4z" fill="black"/></svg>'); }
.wbtn-stop { width: 22px; background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 6h12v12H6z" fill="black"/></svg>'); }
.wbtn-next { width: 22px; background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6 18l8.5-6L6 6v12zM16 6v12h2V6h-2z" fill="black"/></svg>'); }
.wbtn-eject { width: 22px; margin-left: 10px; background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 19h14v-2H5v2zm0-4h14L12 5 5 15z" fill="black"/></svg>'); }

.wbtn:active, .wbtn.active {
    border: 2px inset #fff;
    background-color: #a0a4a9;
}
.wbtn:disabled { opacity: 0.5; cursor: not-allowed; }

/* Playlist Window */
.retroamp-playlist-window {
    background: #1a1a2e;
    border: 2px outset #5a5f7e;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.7);
    padding: 2px;
}

.retroamp-pl-header {
    background: #0f1021;
    border: 1px inset #5a5f7e;
    height: 14px;
    color: #e6e6e6;
    font-size: 9px;
    font-weight: bold;
    text-align: center;
    line-height: 12px;
    margin-bottom: 2px;
    letter-spacing: 1px;
}

.retroamp-pl-body {
    background: #000;
    border: 2px inset #444;
    height: 100px;
    overflow-y: auto;
    padding: 2px;
}

.retroamp-playlist-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.retroamp-playlist-list li {
    font-family: Arial, sans-serif;
    font-size: 10px;
    color: #00ff00;
    padding: 3px 4px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.retroamp-playlist-list li:hover {
    background: #222;
}

.retroamp-playlist-list li.playing {
    background: #000080; /* Classic DOS blue selection */
    color: #fff;
}

.retroamp-pl-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 4px;
}

.pl-controls {
    display: flex;
    gap: 2px;
}

.pl-btn {
    background: #d6d9e0;
    border: 2px outset #fff;
    font-size: 8px;
    padding: 1px 4px;
    cursor: pointer;
    color: #000;
    font-weight: bold;
}
.pl-btn:active {
    border: 2px inset #fff;
    background: #a0a4a9;
}

.pl-time-display {
    background: #000;
    border: 2px inset #444;
    color: #00ff00;
    font-size: 9px;
    padding: 1px 4px;
    font-weight: bold;
}

/* --- WINDOWS EXPLORER (FOLDER LAYOUT) --- */
.explorer-window .window-body {
    padding: 0;
    margin: 0;
    border: none;
    border-top: 1px solid #fff;
    display: flex;
    flex-direction: column;
    background-color: #ece9d8;
}

.title-bar-left {
    display: flex;
    align-items: center;
    gap: 4px;
}

.title-bar-icon {
    width: 16px;
    height: 16px;
}

.explorer-menu-bar {
    display: flex;
    background-color: #ece9d8;
    padding: 2px 2px 2px 5px;
    border-bottom: 1px solid #d5d5cd;
    font-size: 11px;
    position: relative;
}

.menu-item {
    padding: 2px 5px;
    cursor: default;
}

.menu-item:hover {
    background-color: #316ac5;
    color: white;
}

.windows-logo-right {
    position: absolute;
    right: 2px;
    top: -2px;
}
.windows-logo-right img {
    height: 38px;
}

.explorer-toolbar {
    display: flex;
    align-items: center;
    background-color: #ece9d8;
    padding: 2px 5px;
    border-bottom: 1px solid #d5d5cd;
}

.toolbar-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 6px;
    border: 1px solid transparent;
    cursor: pointer;
    border-radius: 2px;
}

.toolbar-btn:hover {
    border: 1px solid #c7c6c4;
    background-color: rgba(0,0,0,0.05);
    box-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.toolbar-btn.active {
    border: 1px solid #999;
    background-color: #d1d1c9;
    box-shadow: inset 1px 1px 2px rgba(0,0,0,0.1);
}

.toolbar-btn.disabled {
    color: #999;
    cursor: default;
    filter: grayscale(1) opacity(0.5);
}

.toolbar-btn.disabled:hover {
    border-color: transparent;
    background-color: transparent;
    box-shadow: none;
}

.toolbar-icon {
    font-size: 16px;
    color: #245edb;
}

.toolbar-text {
    font-size: 11px;
}

.toolbar-dropdown {
    font-size: 8px;
    margin-left: 2px;
}

.toolbar-btn img {
    width: 22px;
    height: 22px;
}

.toolbar-divider {
    width: 1px;
    height: 22px;
    background-color: #aca899;
    border-right: 1px solid #fff;
    margin: 0 4px;
}

.explorer-address-bar {
    display: flex;
    align-items: center;
    background-color: #ece9d8;
    padding: 4px 5px;
    border-bottom: 1px solid #aca899;
    gap: 6px;
}

.address-label {
    font-size: 11px;
    color: #ACA899;
    padding-right: 4px;
}

.address-input-box {
    flex-grow: 1;
    display: flex;
    align-items: center;
    background-color: white;
    border: 1px solid #7f9db9;
    height: 20px;
}

.address-input-box img {
    width: 14px;
    height: 14px;
    margin: 0 4px;
}

.address-input-box input {
    flex-grow: 1;
    border: none;
    outline: none;
    font-family: inherit;
    font-size: 11px;
    color: #000;
}

.address-drop-btn {
    width: 16px;
    height: 18px;
    background-color: #ece9d8;
    border: 1px solid #aca899;
    border-right: none;
    border-top: none;
    border-bottom: none;
    font-size: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.address-go {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    cursor: pointer;
    padding: 2px 4px;
}

.address-go img {
    width: 16px;
    height: 16px;
}

.explorer-content {
    display: flex;
    flex-grow: 1;
    overflow: hidden;
    background-color: white;
}

/* LEFT SIDEBAR (TASK PANE) */
.explorer-sidebar {
    width: 180px;
    background: linear-gradient(to bottom, #7ba2e7 0%, #6375d6 100%);
    overflow-y: auto;
    padding: 10px;
    border-right: 1px solid #245edb;
    flex-shrink: 0;
}

.sidebar-panel {
    background-color: #d6dff7;
    border: 1px solid #fff;
    border-radius: 3px;
    margin-bottom: 15px;
    box-shadow: 1px 1px 3px rgba(0,0,0,0.2);
    overflow: hidden;
}

.panel-header {
    background: linear-gradient(to right, #ffffff 0%, #c6d3f7 100%);
    color: #215dc6;
    font-weight: bold;
    font-size: 11px;
    padding: 4px 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.panel-header:hover {
    color: #428eff;
}

.panel-body {
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    color: #215dc6;
    cursor: pointer;
}

.sidebar-item:hover {
    text-decoration: underline;
    color: #428eff;
}

.sidebar-item img {
    width: 14px;
    height: 14px;
}

/* MAIN FOLDER VIEW */
.explorer-main {
    flex-grow: 1;
    overflow-y: auto;
    padding: 15px;
    background-color: white;
}

.explorer-items-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.folder-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80px;
    text-align: center;
    cursor: pointer;
    padding: 4px;
    border: 1px solid transparent;
}

.folder-item:hover {
    background-color: #f0f0ff;
}

.folder-item img {
    width: 32px;
    height: 32px;
    margin-bottom: 5px;
}

.folder-item .file-name {
    font-size: 11px;
    line-height: 1.2;
    color: #000;
    word-break: break-word;
}


/* --- VIRUS EASTER EGG (TRAPS) --- */
#bsod {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background-color: #000082; color: #fff;
    font-family: 'Courier New', Courier, monospace; font-size: 14px;
    z-index: 999999; padding: 10%; box-sizing: border-box; display: none;
}
#bsod.visible { display: block; }

#fake-terminal {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background-color: black; color: #00ff00;
    font-family: 'Courier New', Courier, monospace; font-size: 16px;
    z-index: 999998; padding: 20px; box-sizing: border-box; display: none;
    overflow: hidden;
}
#fake-terminal.visible { display: block; }

.virus-popup { position: absolute; z-index: 10000; }

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}
.blink { animation: blink 1s infinite; }

@keyframes shake {
    0% { transform: translate(1px, 1px) rotate(0deg); }
    10% { transform: translate(-1px, -2px) rotate(-1deg); }
    20% { transform: translate(-3px, 0px) rotate(1deg); }
    30% { transform: translate(3px, 2px) rotate(0deg); }
    40% { transform: translate(1px, -1px) rotate(1deg); }
    50% { transform: translate(-1px, 2px) rotate(-1deg); }
    60% { transform: translate(-3px, 1px) rotate(0deg); }
    70% { transform: translate(3px, 1px) rotate(-1deg); }
    80% { transform: translate(-1px, -1px) rotate(1deg); }
    90% { transform: translate(1px, 2px) rotate(0deg); }
    100% { transform: translate(1px, -2px) rotate(-1deg); }
}
.poltergeist {
    animation: shake 0.1s infinite !important;
}
.poltergeist-fly {
    transition: all 0.2s ease-in-out !important;
}

/* --- ABOUT ME PORTFOLIO (Markdown Styled) --- */
.about-me-container {
    padding: 15px;
    font-family: Tahoma, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    font-size: 12px;
}

.about-me-intro {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

#about-me-content {
    font-family: 'Lora', 'Georgia', serif;
    background-color: #ffffff;
    color: #2b2b2b;
    line-height: 1.8;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#about-me-content h1, #about-me-content h2, #about-me-content h3 {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    color: #050505;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

#about-me-content h1 {
    font-size: 32px;
    margin: 40px 0 20px 0;
    text-wrap: balance;
}

#about-me-content h1 em {
    font-style: italic;
    font-weight: 400;
    color: #A31F24; 
}

#about-me-content h2 {
    font-size: 26px;
    margin: 35px 0 15px 0;
    border-bottom: 1px solid #050505;
    padding-bottom: 8px;
    display: inline-block;
}

#about-me-content h3 {
    font-size: 20px;
    margin: 25px 0 10px 0;
    color: #A31F24;
}

#about-me-content p {
    margin: 0 0 24px 0;
}

#about-me-content strong {
    font-weight: 600;
    color: #050505;
}

#about-me-content ul, #about-me-content ol {
    margin: 25px 0 30px 0;
    padding-left: 20px;
    list-style: none; /* override default */
}

#about-me-content li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
    font-size: 16px;
}

#about-me-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 20px;
    height: 1px;
    background-color: #050505;
}

#about-me-content a {
    color: #A31F24;
    text-decoration: underline;
    font-weight: 500;
}

#about-me-content a:hover {
    color: #050505;
}

#about-me-content blockquote {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-size: 22px;
    line-height: 1.6;
    margin: 40px 0;
    padding-left: 30px;
    border-left: 4px solid #050505;
    font-style: italic;
    color: #050505;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
}

#about-me-content img {
    max-width: 100%;
    height: auto;
    border: 1px solid #e5e5e5;
    margin: 30px 0;
    box-shadow: 0 12px 24px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#about-me-content img:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.05);
    border-color: #050505;
}

#about-me-content code {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #888888;
    font-weight: 500;
    background: #fbfbfb;
    padding: 3px 6px;
    border: 1px solid #e5e5e5;
}
