/*//////////////// Fonts //////////////////////*/
@import url('https://fonts.googleapis.com/css2?family=Segoe+UI:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

@font-face {
    font-family: 'JoshItalic';
    src: url('fonts/Jost/Jost-Italic-VariableFont_wght.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'Josh';
    src: url('fonts/Jost/Jost-VariableFont_wght.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'StoryScript';
    src: url('fonts/Story_Script/StoryScript-Regular.ttf') format('truetype');
    font-display: swap;
}

/*//////////////// Windows 7 Aero Design System //////////////////////*/
:root {
    font-size: 16px;

    /* Core Colors */
    --bg-primary: #0d0d0d;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #252525;
    --bg-elevated: #2a2a2a;

    /* Text Colors */
    --text-primary: #f5f5f5;
    --text-secondary: #ffffffb3;
    --text-muted: #ffffff80;

    /* Accent Colors */
    --accent-primary: #DD922D;
    --accent-secondary: #e9a645;
    --accent-glow: rgba(221, 146, 45, 0.4);
    --accent-subtle: rgba(221, 146, 45, 0.1);

    /* Status Colors */
    --status-online: #22c55e;
    --status-offline: #ef4444;

    /* Glass Effects */
    --glass-bg: rgba(30, 30, 30, 0.85);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-border-light: rgba(255, 255, 255, 0.15);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);

    /* Window Chrome */
    --window-bg: rgba(25, 25, 25, 0.95);
    --window-header: linear-gradient(180deg, rgba(60, 60, 60, 0.9) 0%, rgba(40, 40, 40, 0.95) 100%);
    --window-border: rgba(80, 80, 80, 0.5);
    --window-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.05);
    --window-content-bg: rgba(20, 20, 20, 0.5);

    /* Component Backgrounds */
    --item-bg: rgba(255, 255, 255, 0.02);
    --item-bg-hover: rgba(255, 255, 255, 0.04);
    --project-bg: rgba(255, 255, 255, 0.02);
    --project-bg-hover: rgba(255, 255, 255, 0.04);
    --project-header-bg: rgba(255, 255, 255, 0.03);
    --project-log-bg: rgba(0, 0, 0, 0.2);
    --quote-bg: linear-gradient(135deg, rgba(221, 146, 45, 0.1) 0%, rgba(221, 146, 45, 0.05) 100%);

    /* Header & Taskbar */
    --header-bg: linear-gradient(180deg, rgba(30, 30, 30, 0.9) 0%, rgba(20, 20, 20, 0.85) 100%);
    --taskbar-bg: linear-gradient(180deg, rgba(40, 40, 40, 0.95) 0%, rgba(25, 25, 25, 0.98) 100%);
    --taskbar-border: rgba(255, 255, 255, 0.08);

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
}

/* Light Mode Theme */
body:not(.body--darkmode) {
    /* Core Colors - Light */
    --bg-primary: #f5f5f5;
    --bg-secondary: #ffffff;
    --bg-tertiary: #e8e8e8;
    --bg-elevated: #ffffff;

    /* Text Colors - Light */
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-muted: #6b6b6b;

    /* Accent Colors remain the same */
    --accent-primary: #DD922D;
    --accent-secondary: #e9a645;
    --accent-glow: rgba(221, 146, 45, 0.3);
    --accent-subtle: rgba(221, 146, 45, 0.08);

    /* Glass Effects - Light */
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(0, 0, 0, 0.1);
    --glass-border-light: rgba(0, 0, 0, 0.15);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);

    /* Window Chrome - Light */
    --window-bg: rgba(255, 255, 255, 0.95);
    --window-header: linear-gradient(180deg, rgba(245, 245, 245, 0.95) 0%, rgba(230, 230, 230, 0.98) 100%);
    --window-border: rgba(0, 0, 0, 0.15);
    --window-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
    --window-content-bg: rgba(240, 240, 240, 0.6);

    /* Component Backgrounds - Light */
    --item-bg: rgba(0, 0, 0, 0.03);
    --item-bg-hover: rgba(0, 0, 0, 0.06);
    --project-bg: rgba(0, 0, 0, 0.03);
    --project-bg-hover: rgba(0, 0, 0, 0.06);
    --project-header-bg: rgba(0, 0, 0, 0.05);
    --project-log-bg: rgba(0, 0, 0, 0.04);
    --quote-bg: linear-gradient(135deg, rgba(221, 146, 45, 0.15) 0%, rgba(221, 146, 45, 0.08) 100%);

    /* Header & Taskbar - Light */
    --header-bg: linear-gradient(180deg, rgba(245, 245, 245, 0.95) 0%, rgba(235, 235, 235, 0.9) 100%);
    --taskbar-bg: linear-gradient(180deg, rgba(240, 240, 240, 0.95) 0%, rgba(230, 230, 230, 0.98) 100%);
    --taskbar-border: rgba(0, 0, 0, 0.1);
}

/* Light mode background pattern */
body:not(.body--darkmode) .main::before {
    background:
        radial-gradient(ellipse at 20% 20%, rgba(221, 146, 45, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(221, 146, 45, 0.03) 0%, transparent 50%),
        var(--bg-primary);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Custom Scrollbar - Windows 7 Style */
::-webkit-scrollbar {
    width: 0;
    background: var(--bg-secondary);
}

/* Links & Interactive */
a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* Locked */

.locked {
    position: relative;
    max-height: 9.375rem;
    overflow: hidden;
}

.locked::before {
    content: '🔒 Mantén presionado para desbloquear';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(0.625rem);
    color: var(--text-muted);
    font-size: clamp(0.9375rem, 0.875rem + 0.25vw, 1rem);
    z-index: 10;
}

.locked::after {
    display: none;
}

/* Hero gradient text */
.hero__gradient-text {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Layout */
.main {
    min-height: 100dvh;
    padding-bottom: 3.5rem;
    background: var(--bg-primary);
    position: relative;
}

/* Desktop Background Pattern */
.main::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(221, 146, 45, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(221, 146, 45, 0.02) 0%, transparent 50%),
        var(--bg-primary);
    pointer-events: none;
    z-index: 0;
}

section {
    width: 100%;
    padding: 3rem 2rem;
    position: relative;
    z-index: 1;
}

/* ======================== */
/* WINDOWS 7 AERO COMPONENTS */
/* ======================== */

/* Glass Window Component */
.window {
    background: var(--window-bg);
    backdrop-filter: blur(1.25rem) saturate(150%);
    -webkit-backdrop-filter: blur(1.25rem) saturate(150%);
    border-radius: var(--radius-lg);
    border: 1px solid var(--window-border);
    box-shadow: var(--window-shadow);
    overflow: hidden;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.window:hover {
    transform: translateY(-0.125rem);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.08);
}

/* Window Title Bar */
.window__titlebar {
    background: var(--window-header);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    user-select: none;
}

.window__titlebar-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.window__icon {
    width: 1.25rem;
    height: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
}

.window__title {
    font-size: clamp(0.8125rem, 0.75rem + 0.25vw, 0.875rem);
    font-weight: 500;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Window Control Buttons */
.window__controls {
    display: flex;
    gap: 4px;
}

.window__btn {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    position: relative;
}

.window__btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.window__btn--minimize::before {
    background: rgba(255, 255, 255, 0.1);
}

.window__btn--maximize::before {
    background: rgba(255, 255, 255, 0.1);
}

.window__btn--close::before {
    background: rgba(239, 68, 68, 0.8);
}

.window__btn:hover::before {
    opacity: 1;
}

.window__btn svg {
    width: 0.875rem;
    height: 0.875rem;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
    transition: color var(--transition-fast);
}

.window__btn--close:hover svg {
    color: white;
}

/* Window Content Area */
.window__content {
    padding: var(--space-lg);
    background: var(--window-content-bg);
}

/* Aero Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: clamp(0.8125rem, 0.75rem + 0.25vw, 0.875rem);
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.btn--primary {
    background: linear-gradient(180deg, var(--accent-secondary) 0%, var(--accent-primary) 100%);
    color: var(--bg-primary);
    border: 1px solid var(--accent-primary);
    box-shadow: 0 2px 8px var(--accent-glow), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn--primary:hover {
    background: linear-gradient(180deg, #f0b35c 0%, #e9a645 100%);
    transform: translateY(-0.0625rem);
    box-shadow: 0 0.25rem 0.75rem var(--accent-glow), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn--primary:active {
    transform: translateY(0);
}

.btn--secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
}

.btn--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--glass-border-light);
}

/* Tech Tags */
.project__tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 0.75rem;
    color: var(--accent-primary);
    font-size: clamp(0.6rem, 1dvw, 0.7rem);
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all var(--transition-fast);
}


/* ======================== */
/* HEADER / NAVIGATION */
/* ======================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0;
}

.header__nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background: var(--header-bg);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border-bottom: 1px solid var(--glass-border);
}

.header__burger {
    display: none;
    padding: 0.5rem 1rem;
    background: var(--accent-primary);
    color: var(--bg-primary);
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: clamp(0.8125rem, 0.75rem + 0.25vw, 0.875rem);
    z-index: 201;
    margin: 1rem;
}

.header__menu {
    display: flex;
    list-style: none;
}

.header__item {
    position: relative;
}

.header__link {
    display: block;
    padding: 1.5rem 1rem;
    color: var(--text-secondary);
    font-size: clamp(0.8125rem, 0.75rem + 0.25vw, 0.875rem);
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.header__link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.header__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: var(--accent-primary);
    border-radius: 999px;
    transition: transform var(--transition-fast);
}

.header__link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* ======================== */
/* HERO SECTION */
/* ======================== */

.hero {
    min-height: 85dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 10dvh
}

.hero .window {
    max-width: 68.75rem;
    width: 100%;
}

.hero .window__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 2.5rem;
}

.hero__content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 6px 0.875rem;
    background: var(--accent-subtle);
    border: 1px solid rgba(221, 146, 45, 0.2);
    border-radius: 999px;
    color: var(--accent-primary);
    font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.8rem);
    font-weight: 500;
    width: fit-content;
}

.hero__badge::before {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    background: var(--status-online);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.hero__title {
    font-size: clamp(1.5rem, 4dvw, 2.4rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    padding: 0;
    letter-spacing: -0.03em;
}

.hero__description {
    color: var(--text-secondary);
    font-size: clamp(0.9375rem, 0.875rem + 0.25vw, 1rem);
    line-height: 1.7;
}

.hero__description i {
    color: var(--text-muted);
    font-size: clamp(0.8438rem, 0.7875rem + 0.25vw, 0.9rem);
}

.hero__buttons {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

/* Hero Visual */
.hero__visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.hero__picture {
    width: 17.5rem;
    height: 17.5rem;
    object-fit: cover;
    border-radius: var(--radius-lg);
    border: 3px solid var(--accent-primary);
    box-shadow:
        0 0 0 4px rgba(221, 146, 45, 0.1),
        0 1.25rem 2.5rem rgba(0, 0, 0, 0.4);
    transition: all var(--transition-normal);
}

.hero__picture:hover {
    transform: scale(1.02);
    box-shadow:
        0 0 0 6px rgba(221, 146, 45, 0.15),
        0 1.5625rem 3.125rem rgba(0, 0, 0, 0.5);
}

.hero__label {
    color: var(--text-muted);
    font-size: clamp(0.8125rem, 0.75rem + 0.25vw, 0.875rem);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero__selector {
    display: flex;
    gap: 0.75rem;
}

.hero__option {
    width: 3.75rem;
    height: 3.75rem;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    opacity: 0.6;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.hero__option:hover {
    opacity: 1;
    border-color: var(--accent-primary);
    transform: translateY(-4px);
}

/* ======================== */
/* ABOUT ME SECTION */
/* ======================== */

.aboutme {
    padding: 3.75rem 1.5rem;
}

.aboutme .window {
    max-width: 56.25rem;
    margin: 0 auto;
}

.aboutme__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.aboutme__item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1rem;
    background: var(--item-bg);
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    transition: all var(--transition-fast);
}

.aboutme__item:hover {
    background: var(--item-bg-hover);
    border-color: var(--glass-border-light);
}

.aboutme__number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    color: var(--bg-primary);
    font-weight: 700;
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.1rem);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.aboutme__text {
    color: var(--text-secondary);
    font-size: clamp(0.8875rem, 0.8375rem + 0.25vw, 0.95rem);
    line-height: 1.7;
}

.aboutme__quote {
    background: var(--quote-bg);
    border: 1px solid rgba(221, 146, 45, 0.2);
    border-radius: var(--radius-md);
    padding: 1.5rem 2rem;
    text-align: center;
}

.aboutme__quote-text {
    color: var(--accent-primary);
    font-size: clamp(1.125rem, 1.05rem + 0.35vw, 1.25rem);
    font-style: italic;
    line-height: 1.6;
}

/* ======================== */
/* PROJECTS SECTION */
/* ======================== */

.projects {
    padding: 3.75rem 1.5rem;
}

.projects .window {
    max-width: 68.75rem;
    margin: 0 auto;
}

.projects__title {
    font-size: clamp(1.375rem, 1.25rem + 0.5vw, 1.5rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0;
}

.projects__title::before {
    content: '📁';
    font-size: clamp(1.125rem, 1.05rem + 0.35vw, 1.25rem);
}

.projects__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(17.5rem, 1fr));
    gap: 1.25rem;
}

/* Project Card */
.project {
    background: var(--project-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.project:hover {
    background: var(--project-bg-hover);
    border-color: var(--accent-primary);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.project__header {
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    background: var(--project-header-bg);
    border-bottom: 1px solid var(--glass-border);
}

.project__icon {
    font-size: clamp(1.125rem, 1.05rem + 0.35vw, 1.25rem);
}

.project__title {
    font-size: clamp(0.8875rem, 0.8375rem + 0.25vw, 0.95rem);
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.project__preview {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--bg-tertiary);
}

.project__preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.project:hover .project__preview img {
    transform: scale(1.05);
}

.project__footer {
    height: 100%;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.project__role {
    font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.8rem);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}


.project__log {
    margin: 0.75rem 0;
    padding: 0.75rem;
    background: var(--project-log-bg);
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.8rem);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.project__log p {
    color: var(--text-secondary);
    line-height: 1.4;
    margin: 0;
}

.project__log strong {
    color: var(--accent-primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: clamp(0.6563rem, 0.6125rem + 0.2vw, 0.7rem);
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 2px;
}

.btn--small {
    padding: 0.5rem 1rem;
    font-size: clamp(0.6875rem, 0.625rem + 0.25vw, 0.75rem);
    border-radius: var(--radius-sm);
}

.project__tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* ======================== */
/* TOOLS/SKILLS SECTION */
/* ======================== */

.tools {
    padding: 3.75rem 1.5rem;
}

.tools .window {
    max-width: 100%;
    margin: 0 auto;
}

.tools__carousel {
    overflow-x: scroll;
    position: relative;
}

.tools__carousel::-webkit-scrollbar-thumb {
    background-color: var(--accent-secondary);
    animation: pulse 2s linear infinite 2s;
    border-radius: 2rem;
}

.tools__list {
    display: flex;
    padding: 2rem;
    gap: 1.5rem;
    align-items: center;
    width: max-content;
}

.tools__category {
    font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.8rem);
    font-weight: 600;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    white-space: nowrap;
    padding: 0.5rem 1rem;
    background: var(--accent-subtle);
    border-radius: 999px;
}

.tools__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    width: 12.5rem;
    height: 12.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
    flex-shrink: 0;
}

.tools__item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-primary);
    transform: translateY(-4px);
}

.tools__item img {
    width: 3.75rem;
    height: 3.75rem;
    object-fit: contain;
}

.tools__item span {
    font-size: clamp(0.8438rem, 0.7875rem + 0.25vw, 0.9rem);
    font-weight: 500;
    color: var(--text-secondary);
    text-align: center;
}

/* ======================== */
/* FAQ SECTION */
/* ======================== */

.questions {
    padding: 3.75rem 1.5rem;
}

.questions .window {
    max-width: 50rem;
    margin: 0 auto;
}

.questions__title {
    font-size: clamp(1.375rem, 1.25rem + 0.5vw, 1.5rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0;
}

.questions__title::before {
    content: '❓';
    font-size: clamp(1.125rem, 1.05rem + 0.35vw, 1.25rem);
}

.questions__group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.questions__item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.questions__item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--glass-border-light);
}

.questions__question {
    font-size: clamp(0.8875rem, 0.8375rem + 0.25vw, 0.95rem);
    font-weight: 500;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.questions__question::after {
    content: '+';
    font-size: clamp(1.125rem, 1.05rem + 0.35vw, 1.25rem);
    color: var(--accent-primary);
    font-weight: 300;
    transition: transform var(--transition-fast);
}

.questions__item:has(.questions__answer:not(.questions__answer--hidden)) .questions__question::after {
    transform: rotate(45deg);
}

.questions__answer {
    color: var(--text-secondary);
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--glass-border);
    font-size: clamp(0.8438rem, 0.7875rem + 0.25vw, 0.9rem);
    line-height: 1.6;
}

.questions__answer--hidden {
    display: none;
}

/* ======================== */
/* COLLABORATIONS */
/* ======================== */

.collaborations {
    padding: 2.5rem 1.5rem;
}


.collaborations__title {
    font-size: clamp(1.375rem, 1.25rem + 0.5vw, 1.5rem);
    font-weight: 600;
    text-align: center;
    margin-bottom: 1.5rem;
}

.collaborations__container {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.collaborations__card {
    width: auto;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    text-align: center;
}


/* ======================== */
/* WINDOWS 7 TASKBAR */
/* ======================== */

.taskbar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3rem;
    background: var(--taskbar-bg);
    backdrop-filter: blur(1.25rem) saturate(150%);
    -webkit-backdrop-filter: blur(1.25rem) saturate(150%);
    border-top: 1px solid var(--taskbar-border);
    display: flex;
    align-items: center;
    padding: 0 0.5rem;
    z-index: 100;
    box-shadow: 0 -0.125rem 1.25rem rgba(0, 0, 0, 0.3);
}

/* Taskbar Separator */
.taskbar>div:nth-child(2) {
    width: 1px;
    height: 60%;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 0.75rem;
}

/* Pinned Items Area */
.taskbar__pinned {
    display: flex;
    gap: 4px;
    flex: 1;
}

.taskbar__item {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.taskbar__item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.taskbar__item--active {
    background: rgba(255, 255, 255, 0.15);
    border-bottom: 2px solid var(--accent-primary);
}

/* System Tray */
.taskbar__tray {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 4px 0.75rem;
    margin-left: auto;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.taskbar__tray svg {
    width: 1rem;
    height: 1rem;
    color: var(--text-secondary);
}

.taskbar__tray span {
    font-size: clamp(0.6875rem, 0.625rem + 0.25vw, 0.75rem);
    color: var(--text-secondary);
    font-weight: 500;
}

/* Random/Theme Toggle Button */
.taskbar__theme-toggle {
    width: 4rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: 0 0.25rem 0.75rem var(--accent-glow);
}

.taskbar__theme-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 0.375rem 1.25rem var(--accent-glow);
}

.taskbar__theme-toggle svg {
    width: 1.375rem;
    height: 1.375rem;
    color: var(--bg-primary);
    transition: transform var(--transition-slow);
}

.taskbar__theme-toggle:hover svg {
    transform: rotate(180deg);
}

/* ======================== */
/* LOADER */
/* ======================== */

.loader {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-primary);
    z-index: 1000;
    animation: loaderFade 0.5s ease-in 2s forwards;
}

@keyframes loaderFade {
    to {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
}

.loader__text {
    font-size: clamp(1.75rem, 1.5rem + 1vw, 2rem);
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
}

.loader__text::after {
    content: '';
    display: inline-block;
    animation: loaderDots 1.5s steps(4) infinite;
}

@keyframes loaderDots {
    0% {
        content: '';
    }

    25% {
        content: '.';
    }

    50% {
        content: '..';
    }

    75% {
        content: '...';
    }

    100% {
        content: '';
    }
}

/* ======================== */

/* ======================== */
/* COLLABORATIONS */
/* ======================== */

.collaborations {
    padding: 3.75rem 1.5rem;
}

.collaborations__title {
    font-size: clamp(1.375rem, 1.25rem + 0.5vw, 1.5rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.collaborations__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(17.5rem, 1fr));
    gap: 1.5rem;
    max-width: 68.75rem;
    margin: 0 auto;
}

.collaborations__card {
    padding: 1.5rem;
    background: var(--window-bg);
    backdrop-filter: blur(1.25rem);
    -webkit-backdrop-filter: blur(1.25rem);
    border: 1px solid var(--window-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.collaborations__card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-primary);
    box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.3);
}

.collaborations__subtitle {
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1rem);
    color: var(--accent-primary);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.collaborations__text {
    font-size: clamp(0.8rem, 0.75rem + 0.25vw, 0.9rem);
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}



/* ======================== */
/* RESPONSIVE DESIGN */
/* ======================== */

@media (max-width: 768px) {
    section {
        padding: 2.5rem 1rem;
    }

    /* Header Mobile */
    .header__burger {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .header__menu {
        position: fixed;
        top: 0;
        width: 100dvw;
        height: 100dvh;
        flex-direction: column;
        background: var(--bg-primary);
        justify-content: center;
        align-items: center;
        transform: translateX(-100%);
        transition: transform var(--transition-normal);
        z-index: 200;
    }

    .header__menu:not(.header__menu--collapsed) {
        transform: translateX(0);
    }

    .header__link {
        font-size: clamp(1.125rem, 1rem + 0.5vw, 1.25rem);
        padding: 0.75rem 1.5rem;
    }

    /* Hero Mobile */
    .hero {
        min-height: auto;
        padding: 6.25rem 1rem 2.5rem;
    }

    .hero .window__content {
        grid-template-columns: 1fr;
    }

    .hero__visual {
        order: -1;
    }

    .hero__picture {
        width: 12.5rem;
        height: 12.5rem;
    }

    .hero__title {
        text-align: center;
    }

    .hero__badge {
        margin: 0 auto;
    }

    .hero__description {
        text-align: center;
    }

    .hero__buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero__selector {
        justify-content: center;
    }

    /* About Mobile */
    .aboutme__item {
        flex-direction: column;
        gap: 0.75rem;
    }

    /* Projects Mobile */
    .projects__grid {
        grid-template-columns: 1fr;
    }

    /* Tools Mobile */
    .tools__item {
        width: 5rem;
        height: 5rem;
    }

    .tools__item img {
        width: 2rem;
        height: 2rem;
    }

    /* Taskbar Mobile */
    .taskbar {
        height: 2.75rem;
    }

    .taskbar__tray span:last-child {
        display: none;
    }

    .taskbar__theme-toggle {
        bottom: 3.5rem;
        width: 2.5rem;
        height: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero__option {
        width: 3rem;
        height: 3rem;
    }

    .btn {
        padding: 0.625rem 1.125rem;
        font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.8rem);
    }

}