:root {
    scroll-behavior: smooth;
    /* Definições padrão (Theme 1 - Risograph) */
    --bg-color: #F4E7D4;
    --bg-color-rgb: 244, 231, 212;
    --text-primary: #000000;
    --text-secondary: #000000;
    --accent-color: #ed2d92;
    --accent-secondary: #f7b721;
    --dither-wave: #000000;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --container-padding: 2rem;
    --dither-wave: #000000;
    --grain-opacity: 0.15;
    /* Stronger for light background */
    --grain-blend: multiply;
    /* Better for visibility on cream */
    --glitch-color: #ed2d92;
    /* Theme 1: Pink Glitch */
}

[data-theme="theme2"] {
    --bg-color: #01a66c;
    --bg-color-rgb: 1, 166, 108;
    --text-primary: #ffffff;
    --text-secondary: #e0e0e0;
    --accent-color: #f7b721;
    --accent-secondary: #ed2d92;
    --dither-wave: #000000;
    /* Black waves on green looks cool/retro */
    --grain-opacity: 0.10;
    /* Overlay needs more opacity on colors */
    --grain-blend: overlay;
    --glitch-color: #f7b721;
    /* Theme 2: Yellow Glitch */
}

[data-theme="theme3"] {
    --bg-color: #000000;
    --bg-color-rgb: 0, 0, 0;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --accent-color: #ed2d92;
    --accent-secondary: #f7b721;
    --dither-wave: #ffffff;
    --grain-opacity: 0.07;
    --grain-blend: screen;
    --glitch-color: #ed2d92;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Utilities */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.header-entrance {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
    animation: headerFadeIn 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 3.5s;
    /* Starts as preloader exits */
}

@keyframes headerFadeIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Header Section */
/* Header Section */
.hero-header {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: var(--container-padding);
    background-color: var(--bg-color);
    overflow: hidden;
}

#grid-distortion-root {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

#dither-bg-root,
.dither-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    opacity: 0.6;
}

.distortion-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
}



.slide-bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: auto;
    height: 70%;
    max-width: 70%;
    object-fit: contain;
    opacity: 0;
    filter: grayscale(100%);
    /* Transition removed for instant switch */
}

/* Filter Buttons - Outline Style */
.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.filter-btn {
    background: var(--bg-color);
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    padding: 0.75rem 2rem;
    border-radius: 999px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    /* text-transform: lowercase; Removed to allow capitalized categories */
    letter-spacing: 0.02em;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
    position: relative;
}

/* Alternating rotations like BubbleMenu */
.filter-btn:nth-child(1) {
    transform: rotate(-4deg);
}

.filter-btn:nth-child(2) {
    transform: rotate(3deg);
}

.filter-btn:nth-child(3) {
    transform: rotate(-2deg);
}

.filter-btn:nth-child(4) {
    transform: rotate(4deg);
}

.filter-btn:hover {
    transform: rotate(0deg) scale(1.08);
    background: var(--accent-color);
    color: var(--bg-color);
}

.filter-btn:active {
    transform: scale(0.95);
}

.filter-btn.active {
    background: var(--accent-color);
    color: var(--bg-color);
    transform: rotate(0deg) scale(1.05);
}

.filter-btn.active:hover {
    transform: rotate(0deg) scale(1.1);
}

.slide-bg.active {
    opacity: 1;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    /* Dark overlay for text readability */
    z-index: 2;
}

.main-nav,
.hero-content,
.scroll-indicator {
    z-index: 3;
    /* Ensure content is above overlay */
}

.main-nav {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: fit-content;
    padding: 0;
    display: flex;
    align-items: center;
    z-index: 10000;
    background-color: transparent;
    transition: all 0.4s ease;
}

.site-logo {
    position: fixed;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 10000;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    pointer-events: none;
    transition: all 0.4s ease;
}

.nav-hidden {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(20px) !important;
}

.logo-hidden {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(-20px) !important;
}

.theme-hidden {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(20px) !important;
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease !important;
}

.crosshair-hidden {
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity 0.4s ease !important;
}

/* Crosshair color change when in contact section */
.crosshair-contact .cursor div {
    background: linear-gradient(to right, transparent, var(--bg-color) 15%, var(--bg-color) 85%, transparent) !important;
}

.crosshair-contact .cursor div:last-child {
    background: linear-gradient(to bottom, transparent, var(--bg-color) 15%, var(--bg-color) 85%, transparent) !important;
}


.dock-outer {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    pointer-events: none;
}

.dock-panel {
    display: flex;
    align-items: center;
    /* Center text vertically */
    width: fit-content;
    height: 100%;
    gap: 1rem;
    /* Tighter space between words */
    padding: 0;
    margin: 0;
    pointer-events: auto;
    background: transparent;
    /* Clean look */
    border: none;
    box-shadow: none;
}

.dock-item {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.dock-item:hover {
    color: var(--accent-color);
}

.dock-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

/* Remove label since text is now the main item */
.dock-label {
    display: none;
}

/* Change dock color when in contact section */
.dock-contact .dock-item {
    color: var(--bg-color);
}

.dock-contact .dock-item:hover {
    color: var(--bg-color);
    opacity: 0.8;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, #a3a3a3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-horizontal {
    background: linear-gradient(to right, #ff69b4, transparent);
}

.gradient-vertical {
    background: linear-gradient(to bottom, #ff69b4, transparent);
}

.subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    font-weight: 300;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.scroll-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--text-secondary), transparent);
}

/* Work Section */
.work-section {
    padding: var(--container-padding);
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    background-color: var(--bg-color);
    /* Ensure contrast */
    padding-bottom: 4rem;
}

.work-header {
    margin-bottom: 3rem;
    padding-top: 2rem;
}

.sticky-header {
    position: sticky;
    top: 2rem;
    z-index: 10;
    mix-blend-mode: difference;
}

.work-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.work-header p {
    color: var(--text-secondary);
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Masonry Grid */
.project-grid {
    column-count: 1;
    /* Mobile default */
    column-gap: 2rem;
}

@media (min-width: 768px) {
    .project-grid {
        column-count: 2;
    }
}

@media (min-width: 1024px) {
    .project-grid {
        column-count: 3;
    }
}

/* Project Card */
.project-card {
    break-inside: avoid;
    /* Prevent braking across columns */
    margin-bottom: 2rem;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-image {
    width: 100%;
    height: auto;
    display: block;
    transition: filter 0.4s ease, transform 0.6s ease;
}

.project-card:hover .project-image {
    filter: brightness(0.7);
    transform: scale(1.05);
}

.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.project-card:hover .project-info {
    opacity: 1;
    transform: translateY(0);
}

.project-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 0.25rem;
}

.project-category {
    font-size: 0.8rem;
    color: #cbd5e1;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Particle click effect */
.particle {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ff69b4;
    /* pink */
    opacity: 0.8;
    pointer-events: none;
    animation: particleAnim 0.8s ease-out forwards;
}

.point {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff69b4;
    pointer-events: none;
}

@keyframes particleAnim {
    from {
        transform: scale(0);
        opacity: 1;
    }

    to {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* CurvedLoop Title Styles */
.curved-loop-jacket {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-top: 6rem;
    margin-bottom: 1rem;
    padding: 1rem 0;
    overflow: hidden;
}

.curved-loop-svg {
    user-select: none;
    width: 100%;
    aspect-ratio: 100 / 12;
    overflow: visible;
    display: block;
    font-size: clamp(3rem, 6vw, 6rem);
    fill: var(--accent-color);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
}

/* Glitch Effect for Header Images */
.glitch-container {
    position: relative;
}

.glitch-container::before,
.glitch-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    mix-blend-mode: screen;
}

.glitch-container::before {
    background: var(--glitch-color);
}

.glitch-container::after {
    background: var(--glitch-color);
}

.glitch-active::before {
    opacity: 0.9;
    animation: glitch-shift-pink1 0.15s steps(2) infinite;
}

.glitch-active::after {
    opacity: 0.9;
    animation: glitch-shift-pink2 0.15s steps(2) infinite reverse;
}

.glitch-active {
    animation: glitch-skew 0.3s steps(3) infinite;
}

@keyframes glitch-shift-pink1 {
    0% {
        transform: translate(-15px, 0);
        clip-path: inset(20% 0 50% 0);
    }

    25% {
        transform: translate(15px, 0);
        clip-path: inset(40% 0 20% 0);
    }

    50% {
        transform: translate(-10px, 0);
        clip-path: inset(60% 0 10% 0);
    }

    75% {
        transform: translate(10px, 0);
        clip-path: inset(10% 0 70% 0);
    }

    100% {
        transform: translate(-15px, 0);
        clip-path: inset(30% 0 40% 0);
    }
}

@keyframes glitch-shift-pink2 {
    0% {
        transform: translate(15px, 0);
        clip-path: inset(50% 0 20% 0);
    }

    25% {
        transform: translate(-10px, 0);
        clip-path: inset(15% 0 55% 0);
    }

    50% {
        transform: translate(20px, 0);
        clip-path: inset(35% 0 35% 0);
    }

    75% {
        transform: translate(-15px, 0);
        clip-path: inset(65% 0 5% 0);
    }

    100% {
        transform: translate(12px, 0);
        clip-path: inset(25% 0 45% 0);
    }
}

@keyframes glitch-skew {
    0% {
        transform: skewX(0deg);
    }

    20% {
        transform: skewX(-2deg);
    }

    40% {
        transform: skewX(3deg);
    }

    60% {
        transform: skewX(-1deg);
    }

    80% {
        transform: skewX(2deg);
    }

    100% {
        transform: skewX(0deg);
    }
}

/* Global Grain Effect */
.global-grain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
    opacity: var(--grain-opacity);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='1'/%3E%3C/svg%3E");
    mix-blend-mode: var(--grain-blend);

}

@keyframes grain {

    0%,
    100% {
        background-position: 0% 0%;
    }

    10% {
        background-position: -5% -10%;
    }

    20% {
        background-position: -15% 5%;
    }

    30% {
        background-position: 7% -25%;
    }

    40% {
        background-position: 20% 25%;
    }

    50% {
        background-position: -25% 10%;
    }

    60% {
        background-position: 15% 5%;
    }

    70% {
        background-position: 0% 15%;
    }

    80% {
        background-position: 25% 35%;
    }

    90% {
        background-position: -10% 10%;
    }
}

/* Contact Section Redesign */
.contact-section {
    min-height: 100vh;
    padding: 10rem 0 100px 0;
    background-color: var(--accent-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    /* Allow children to align themselves */
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.contact-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.contact-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--bg-color);
    /* Contrast against accent bg */
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    text-align: left;
}

.contact-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--bg-color);
    margin-top: 0;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    text-align: left;
}

.contact-links-row {
    display: flex;
    justify-content: flex-end;
    gap: 3rem;
    margin-bottom: 0rem;
    flex-wrap: wrap;
}

.contact-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.1rem;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--bg-color);
    /* Contrast against accent bg */
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    will-change: transform;
}

.contact-icon {
    width: 1.2rem;
    height: 1.2rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

/* Alternating rotations like filter buttons */
.contact-link:nth-child(1) {
    transform: rotate(-3deg);
}

.contact-link:nth-child(2) {
    transform: rotate(4deg);
}

.contact-link:nth-child(3) {
    transform: rotate(-2deg);
}

.contact-link:nth-child(4) {
    transform: rotate(3deg);
}

.contact-link:nth-child(5) {
    transform: rotate(-4deg);
}

.contact-link:hover {
    /* Mantém a mesma cor ao passar o mouse */
    transform: rotate(0deg) scale(1.08);
}

.massive-footer-text {
    font-family: var(--font-heading);
    font-weight: 900;
    /* Massive size aiming for 90% width */
    font-size: 16.5vw;
    line-height: 0.8;
    text-align: center;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    color: var(--bg-color);
    /* Contrast against accent bg */
    width: 100%;
    margin-bottom: -2vw;
    /* Tighten up with absolute bottom */
    pointer-events: none;
    display: flex;
    justify-content: center;
}

/* Adjust for small screens */
@media (max-width: 768px) {
    .contact-links-row {
        gap: 1.5rem;
    }

    .contact-link {
        font-size: 0.9rem;
    }

    .massive-footer-text {
        font-size: 18vw;
    }

    .footer-row {
        flex-direction: column;
        gap: 0.5rem;
    }

    .location-text {
        text-align: left !important;
    }
}

.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 4rem;
    padding-bottom: 2rem;
    gap: 2rem;
}

.location-text {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--bg-color);
    opacity: 0.7;
    text-align: left;
    letter-spacing: 0.02em;
}

.attribution-text {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--bg-color);
    /* Contrast against accent bg */
    opacity: 0.7;
    /* Increased slightly for legibility on color */
    text-align: right;
    padding-top: 4rem;
    padding-bottom: 2rem;
    letter-spacing: 0.02em;
}

/* Theme 2: Adjusted opacity */
[data-theme="theme2"] .attribution-text {
    opacity: 0.6;
}


/* Counter / Preloader Styles */
.preloader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;

}

.counter-container {
    position: relative;
    display: inline-block;
    height: 80vh;
    /* Request: 80% height */
    display: flex;
    align-items: center;
}

.counter-counter {
    display: flex;
    overflow: hidden;
    line-height: 1;
}

.counter-digit {
    position: relative;
    width: 1ch;
    /* Width of one character */
    height: 100%;
    /* font-variant-numeric: tabular-nums; Not strictly needed for letters but good practice */
    display: flex;
    flex-direction: column;
    will-change: transform;
}

.preloader-glitch {
    transform: skewX(-5deg);
    text-shadow:
        2px 0 var(--text-primary),
        -2px 0 var(--dither-wave);
    animation: preloader-glitch-anim 0.3s infinite;
}

@keyframes preloader-glitch-anim {
    0% {
        transform: translate(0) skewX(0deg);
        text-shadow: 0 0 transparent;
    }

    20% {
        transform: translate(-2px, 1px) skewX(-10deg);
        text-shadow: 2px 2px var(--text-primary);
    }

    40% {
        transform: translate(2px, -1px) skewX(10deg);
        text-shadow: -2px -2px var(--dither-wave);
    }

    60% {
        transform: translate(-1px, 2px) skewX(-5deg);
        text-shadow: 2px -1px var(--text-primary);
    }

    80% {
        transform: translate(1px, -2px) skewX(5deg);
        text-shadow: -1px 2px var(--dither-wave);
    }

    100% {
        transform: translate(0) skewX(0deg);
        text-shadow: 0 0 transparent;
    }
}

.counter-number {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 1em;
    /* Base height reference */
}

.gradient-container {
    pointer-events: none;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.top-gradient {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 2;
}

.bottom-gradient {
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 2;
}

/* Toast Notification */
#toast-notification {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background-color: var(--bg-color);
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    padding: 12px 24px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    z-index: 100000;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 8px;
}

#toast-notification.toast-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/* About Me Section */
.about-section {
    padding: 6rem 0;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Profile Column */
.about-profile {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.profile-frame {
    width: 100%;
    max-width: 300px;
    aspect-ratio: 1/1;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 3px solid var(--text-primary);
    box-shadow: 8px 8px 0 var(--accent-color);
    transition: transform 0.3s ease;
}

.profile-frame:hover {
    transform: translate(-4px, -4px);
    box-shadow: 12px 12px 0 var(--accent-color);
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.profile-frame:hover .profile-img {
    filter: grayscale(0%);
}

.profile-headers .nickname {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1;
    font-weight: 800;
    color: var(--accent-color);
    text-transform: uppercase;
    margin-bottom: 0.2rem;
}

.profile-headers .full-name {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0.8;
}

.profile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    padding: 0.4rem 1rem;
    background: var(--text-primary);
    color: var(--bg-color);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

.profile-bio {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 400px;
}

/* Resume Column */
.about-resume {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.resume-block {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.resume-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-primary);
    border-bottom: 2px solid var(--text-primary);
    padding-bottom: 0.5rem;
    width: fit-content;
}

.resume-title .icon {
    font-size: 1.8rem;
}

.resume-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.resume-list li {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 2rem;
    align-items: baseline;
}

@media (max-width: 600px) {
    .resume-list li {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}

.resume-list .year {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--accent-secondary);
}

.resume-list .details {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.resume-list .details strong {
    font-size: 1.2rem;
    font-weight: 700;
}

.resume-list .details span {
    font-size: 1rem;
    opacity: 0.8;
}