* {
    box-sizing: border-box;
}
:root {
    --side-padding: clamp(20px, 10vw, 150px);
    --bg-primary: #0e0e0e;
    --bg-secondary: #181818;
    --bg-tertiary: #050505;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);
    --bg-header: rgba(14, 14, 14, 0.3);
    --bg-header-scrolled: rgba(14, 14, 14, 0.95);
    --bg-dropdown: rgba(24, 24, 24, 0.9);
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #8a8a8a;
    --text-dim: #6a6a6a;
    --text-placeholder: #4a4a4a;
    --border-color: rgba(255, 255, 255, 0.06);
    --border-header: rgba(255, 255, 255, 0.05);
    --border-header-scrolled: rgba(255, 255, 255, 0.12);
    --scrollbar-track: #0e0e0e;
    --scrollbar-thumb: rgba(255, 255, 255, 0.18);
    --shadow-color: rgba(0, 0, 0, 0.55);
    --accent-color: #ffffff;
    --accent-gradient: linear-gradient(135deg, #ffffff, #cccccc);
    --invert-base: 1;
}
.light-mode {
    --bg-primary: #ffffff;
    --bg-secondary: #f4f4f4;
    --bg-tertiary: #ececec;
    --bg-card: rgba(0, 0, 0, 0.04);
    --bg-card-hover: rgba(0, 0, 0, 0.08);
    --bg-header: rgba(255, 255, 255, 0.3);
    --bg-header-scrolled: rgba(255, 255, 255, 0.95);
    --bg-dropdown: rgba(255, 255, 255, 0.92);
    --text-primary: #0e0e0e;
    --text-secondary: #2a2a2a;
    --text-muted: #555555;
    --text-dim: #777777;
    --text-placeholder: #999999;
    --border-color: rgba(0, 0, 0, 0.1);
    --border-header: rgba(0, 0, 0, 0.06);
    --border-header-scrolled: rgba(0, 0, 0, 0.15);
    --scrollbar-track: #f4f4f4;
    --scrollbar-thumb: rgba(0, 0, 0, 0.2);
    --shadow-color: rgba(0, 0, 0, 0.15);
    --invert-base: 0;
}
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    scroll-behavior: smooth;
    user-select: none;
    -webkit-user-select: none;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 120 130' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3ClinearGradient id='grad' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' stop-color='%23ffffff'/%3E%3Cstop offset='50%25' stop-color='%23e6e6e6'/%3E%3Cstop offset='100%25' stop-color='%239ca3af'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M 25 15 L 25 85 L 45 70 L 60 100 L 80 90 L 65 60 L 90 60 Z' fill='url(%23grad)' stroke='%23111' stroke-width='8' stroke-linejoin='round' stroke-linecap='round'/%3E%3C/svg%3E") 8 4, auto;
    transition: background-color 0.4s ease, color 0.4s ease;
}
a,
button,
input,
textarea,
label,
.project-card,
.software-item,
.music-tab,
.achievement-card {
    cursor: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 120 130' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3ClinearGradient id='grad' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' stop-color='%23ffffff'/%3E%3Cstop offset='50%25' stop-color='%23e6e6e6'/%3E%3Cstop offset='100%25' stop-color='%239ca3af'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M 25 15 L 25 85 L 45 70 L 60 100 L 80 90 L 65 60 L 90 60 Z' fill='url(%23grad)' stroke='%23111' stroke-width='8' stroke-linejoin='round' stroke-linecap='round'/%3E%3C/svg%3E") 8 4, pointer !important;
}
html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
}
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--accent-color);
    z-index: 10001;
    transition: width 0.1s ease-out;
    pointer-events: none;
}
.main-header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1400px;
    height: 90px;
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 0 50px;
    background: var(--bg-header);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-header);
    border-radius: 0 0 25px 25px;
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.main-header.pre-load {
    transform: translateX(-50%) translateY(-100%);
    opacity: 0;
}
.main-header.scrolled {
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 100%;
    height: 60px;
    margin-top: 0;
    background: var(--bg-header-scrolled);
    border: none;
    border-bottom: 1px solid var(--border-header-scrolled);
    border-radius: 0;
    padding: 0 2%;
    box-shadow: 0 10px 30px var(--shadow-color);
}
.header-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-left {
    display: flex;
    align-items: center;
    gap: 4px;
}
.brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.5px;
    text-transform: lowercase;
}
.header-logo {
    height: 20px;
    width: auto;
    filter: invert(var(--invert-base));
}
.lang-selector {
    position: relative;
    margin-left: 15px;
}
.lang-current {
    background: transparent;
    border: none;
    padding: 4px 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}
.lang-current:hover {
    opacity: 0.8;
}
.lang-current img {
    width: 20px;
    height: auto;
    border-radius: 2px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.lang-arrow {
    font-size: 0.8rem;
    color: var(--text-dim);
    transition: transform 0.3s ease;
    display: inline-flex;
    align-items: center;
    line-height: 1;
}
.lang-selector.active .lang-arrow {
    transform: rotate(180deg);
}
.lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: var(--bg-dropdown);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: none;
    border-radius: 12px;
    list-style: none;
    padding: 8px;
    margin: 0;
    width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    box-shadow: 0 10px 30px var(--shadow-color);
}
.lang-selector.active .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}
.lang-dropdown li {
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: inherit;
    border-radius: 12px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: all 0.2s ease;
}
.lang-dropdown li:hover {
    background: linear-gradient(135deg, #ffffff, #c9d1d9);
    color: #000;
}
.lang-dropdown li img {
    width: 18px;
    height: auto;
    border-radius: 2px;
}
.header-right {
    display: flex;
    gap: 6px;
    align-items: center;
}
.header-right a {
    text-decoration: none;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}
.nav-icon {
    width: 22px;
    height: 22px;
    opacity: 0.6;
    filter: invert(var(--invert-base));
}
.header-right a:hover .nav-icon,
.header-right a.active .nav-icon {
    opacity: 1;
    filter: invert(var(--invert-base)) brightness(1.5);
}
.header-tooltip {
    position: absolute;
    top: 130%;
    left: 50%;
    transform: translateX(-50%) translateY(-5px);
    background: #ffffff;
    color: #0d1117;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    box-shadow: 0 5px 15px var(--shadow-color);
    pointer-events: none;
}
.header-tooltip::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #ffffff transparent;
}
.header-right a:hover .header-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
.theme-toggle {
    position: relative;
    background: transparent;
    border: none;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
    cursor: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 120 130' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3ClinearGradient id='grad' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' stop-color='%23ffffff'/%3E%3Cstop offset='50%25' stop-color='%23e6e6e6'/%3E%3Cstop offset='100%25' stop-color='%239ca3af'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M 25 15 L 25 85 L 45 70 L 60 100 L 80 90 L 65 60 L 90 60 Z' fill='url(%23grad)' stroke='%23111' stroke-width='8' stroke-linejoin='round' stroke-linecap='round'/%3E%3C/svg%3E") 8 4, pointer !important;
    transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    border-radius: 50%;
}
.theme-toggle:hover {
    color: var(--accent-color);
    background: var(--bg-card);
}
.theme-toggle-svg {
    width: 18px;
    height: 18px;
    color: var(--text-primary);
    transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
body.light-mode .theme-toggle-svg {
    transform: rotate(90deg);
}
.sun-moon-core {
    transform-origin: 12px 12px;
    transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
body.light-mode .sun-moon-core {
    transform: scale(0.65);
}
.moon-mask-circle {
    transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    transform-origin: 12px 12px;
}
body.light-mode .moon-mask-circle {
    transform: translate(12px, -12px);
}
.sun-rays {
    transform-origin: 12px 12px;
    transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1),
                opacity 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    opacity: 0;
    transform: scale(0.3) rotate(45deg);
}
body.light-mode .sun-rays {
    opacity: 1;
    transform: scale(1) rotate(0);
}
.theme-toggle .header-tooltip {
    left: 50%;
    transform: translateX(-50%) translateY(-5px);
    top: 130%;
}
.theme-toggle:hover .header-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
.spotify-floating-player {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 10001;
    background: rgba(18, 18, 18, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: none;
    border-radius: 20px;
    padding: 10px;
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    max-width: 480px;
}
.spotify-floating-player.minimized {
    width: 56px;
    height: 56px;
    padding: 0;
    border-radius: 28px;
    background: transparent;
    border: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
}
.player-toggle {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 50%;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}
.player-toggle:hover {
    background: var(--accent-color);
    color: #000;
}
.spotify-floating-player.minimized .player-toggle {
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    width: 100%;
    height: 100%;
    background: transparent;
    border-radius: inherit;
}
.player-content {
    transition: opacity 0.4s ease, transform 0.4s ease;
    opacity: 1;
}
.spotify-floating-player.minimized .player-content {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}
.player-content img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
}
.toggle-icon {
    width: 14px;
    height: 14px;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.spotify-floating-player.minimized .toggle-icon {
    transform: rotate(180deg);
}
#matrix-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    transform: translateZ(0);
    will-change: transform;
}
#trail-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    pointer-events: none;
    transform: translateZ(0);
    will-change: transform;
}
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    pointer-events: none;
    transform: translateZ(0);
}
.presentation {
    min-height: 100vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 8%;
    align-items: center;
    padding: 0 5%;
    box-sizing: border-box;
}
.presentation-text {
    flex: 0 1 auto;
    text-align: center;
    transform: translateY(-20px);
}
#typewriter {
    white-space: nowrap;
    font-size: clamp(2.5rem, 9vw, 5.2rem);
    font-weight: 300;
    letter-spacing: -1px;
    margin: 0 auto;
    line-height: 1.2;
    text-shadow: 0 4px 12px var(--shadow-color);
}
.subtitle {
    white-space: nowrap;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--text-muted);
    font-weight: 300;
    margin-top: 10px;
    opacity: 0;
    animation: fadeInSubtitulo 0.6s ease forwards 0.4s;
    text-shadow: 0 2px 8px var(--shadow-color);
}
@keyframes fadeInSubtitulo {
    to {
        opacity: 1;
    }
}
.quote {
    font-size: clamp(0.7rem, 1.5vw, 0.9rem);
    color: var(--text-placeholder);
    margin-top: 25px;
    font-weight: 300;
    opacity: 0;
    animation: fadeInSubtitulo 0.8s ease forwards 1.2s;
    text-align: right;
    max-width: fit-content;
    margin-left: auto;
    margin-right: 0;
    text-shadow: 0 2px 4px var(--shadow-color);
}
.quote span {
    display: block;
    margin-top: 5px;
    font-weight: 400;
    color: var(--text-muted);
}
.highlight {
    color: #ffffff;
    font-weight: 700;
}
.letter {
    opacity: 0;
    display: inline;
    animation: fadeInLetter 0.2s ease forwards;
}
@keyframes fadeInLetter {
    to {
        opacity: 1;
    }
}
.photo-container {
    flex: 0 1 auto;
    display: flex;
    justify-content: center;
}
.pfp-wrapper {
    position: relative;
    width: clamp(250px, 30vw, 380px);
    height: clamp(250px, 30vw, 380px);
    display: flex;
    justify-content: center;
    align-items: center;
}
.profile-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0px 0px 30px var(--shadow-color);
    opacity: 0;
    animation: fadeInPfp 0.8s ease forwards 0.8s;
}
@keyframes fadeInPfp {
    to {
        opacity: 1;
    }
}
.pfp-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    pointer-events: none;
}
.pfp-border circle {
    fill: none;
    stroke: var(--text-primary);
    stroke-width: 2;
    stroke-dasharray: 302;
    stroke-dashoffset: 302;
    animation: drawCircle 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.2s;
}
@keyframes drawCircle {
    to {
        stroke-dashoffset: 0;
    }
}
@media (max-width: 900px) {
    .presentation {
        flex-direction: column-reverse;
        justify-content: center;
        padding: 50px 5%;
        text-align: center;
    }
    .presentation-text {
        transform: translateY(0);
        padding-left: 0;
        margin-top: 30px;
        text-align: center;
    }
    .photo-container {
        justify-content: center;
    }
    #typewriter {
        margin: 0 auto;
    }
}
#scroll-indicator {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0.6s;
    pointer-events: none;
    z-index: 10;
    visibility: hidden;
    display: flex;
    align-items: center;
    gap: 12px;
}
.scroll-icon {
    width: 20px;
    height: 20px;
    filter: invert(var(--invert-base)) opacity(0.5);
    animation: scrollBob 2s ease-in-out infinite;
}
@keyframes scrollBob {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(6px);
    }
}
#scroll-indicator.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    visibility: visible;
}
#scroll-indicator.hidden {
    opacity: 0 !important;
    transform: translateX(-50%) translateY(30px);
    visibility: hidden;
}
.section-about {
    min-height: 100vh;
    background-color: var(--bg-tertiary);
    padding: 100px var(--side-padding);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    box-sizing: border-box;
    border-top: 1px solid var(--border-color);
}
.container-about {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.about-grid {
    display: flex;
    gap: 60px;
    margin-top: 50px;
    flex-wrap: wrap;
}
.about-text-content {
    flex: 1.2;
    min-width: 320px;
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    line-height: 1.6;
    color: var(--text-secondary);
    font-weight: 300;
    text-align: justify;
}
.section-title {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-primary);
    margin: 0;
}
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: var(--accent-color);
    margin-top: 15px;
    margin-bottom: 30px;
}
.section-achievements .section-title::after {
    margin-bottom: 0 !important;
}
.about-text-content {
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    line-height: 1.6;
    color: var(--text-secondary);
    font-weight: 300;
    text-align: justify;
}
.about-text-content p {
    margin-bottom: 25px;
}
.quote-linus {
    margin: 30px 0;
    padding-left: 20px;
    border-left: 3px solid var(--accent-color);
    font-style: italic;
    color: var(--text-primary);
}
.quote-linus p {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.4;
}
.quote-linus span {
    display: block;
    font-size: 0.9rem;
    color: var(--text-dim);
    margin-top: 5px;
    font-style: normal;
}
.about-cards {
    flex: 0.8;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.card-info {
    background: var(--bg-card);
    padding: 25px;
    border-radius: 12px;
    transition: all 0.3s ease;
}
.card-info:hover {
    background: var(--bg-card-hover);
}
.card-info h3 {
    margin: 0 0 12px 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--accent-color);
    letter-spacing: 0.5px;
}
.card-info p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-muted);
}
.practical-note {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px !important;
}
.section-achievements {
    border-top: 1px solid var(--border-color);
    background-color: var(--bg-tertiary);
    min-height: 100vh;
    padding: 100px var(--side-padding) !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.section-projects {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    min-height: 100vh;
    padding: 100px var(--side-padding) !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.projects-sidebar {
    flex: 0 0 240px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-right: 25px;
    position: relative;
    transition: opacity 0.3s ease;
}
.projects-sidebar.is-loading {
    pointer-events: none;
    opacity: 0.6;
}
.project-active-bg {
    position: absolute;
    background: var(--accent-color);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
    pointer-events: none;
    width: 0;
    height: 0;
    top: 0;
    left: 0;
}
.project-tab {
    background: var(--bg-card);
    border: none;
    outline: none;
    color: var(--text-placeholder);
    font-size: 1rem;
    padding: 12px 18px;
    text-align: left;
    cursor: inherit;
    transition: color 0.3s ease, background-color 0.3s ease;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
    width: 100%;
}
.project-icon {
    width: 20px;
    height: 20px;
    filter: invert(0.4);
    transition: all 0.3s ease;
}
.project-tab:hover {
    color: var(--text-secondary);
    background: var(--bg-card-hover);
}
.project-tab.active {
    color: var(--bg-primary);
    background: transparent !important;
    font-weight: 600;
}
.project-tab.active .project-icon {
    filter: none;
    opacity: 1;
}
.projects-container {
    display: flex;
    flex-direction: row;
    gap: 40px;
    flex: 1;
    overflow: hidden;
    position: relative;
    margin-top: 50px;
    width: 100%;
}
.projects-display {
    flex: 1;
    min-height: 500px;
    position: relative;
}
.project-category-title {
    position: absolute;
    top: -45px;
    right: 0;
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    opacity: 0.1;
    text-transform: uppercase;
    letter-spacing: 4px;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1;
    text-align: right;
}
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    width: 100%;
    margin-top: 100px;
}
.project-item {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 15px;
    overflow: hidden;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    cursor: inherit;
}
.project-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}
.project-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    z-index: 2;
}
.project-info h3 {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--text-primary);
    font-size: 0.85rem;
    font-weight: 600;
    background: var(--bg-card);
    padding: 4px 12px;
    border-radius: 30px;
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    margin: 0;
    pointer-events: none;
}
.project-links {
    display: flex;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.project-item:hover .project-links {
    opacity: 1;
}
.hero-footer {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 25px;
    margin-left: 28px;
}
.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
}
.quote {
    font-size: 0.95rem;
    color: var(--text-placeholder);
    margin: 0;
    line-height: 1.4;
    font-style: italic;
    opacity: 0.8;
}
.btn-hero {
    padding: 12px 35px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: lowercase;
}
.btn-filled {
    background-color: var(--accent-color);
    color: var(--bg-primary);
    border: none;
}
.btn-filled:hover {
    filter: brightness(1.1);
}
.btn-outline {
    background-color: transparent;
    color: var(--accent-color);
    border: 1.5px solid var(--accent-color);
}
.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}
.project-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    font-weight: 500;
    backdrop-filter: blur(4px);
}
.project-link:hover {
    background: var(--accent-color);
    color: #000;
    border-color: var(--accent-color);
}
.btn-roblox {
    flex: 1;
    width: 100%;
    justify-content: center;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.scratch-category-footer {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    padding: 50px 0 20px 0;
}
.scratch-footer-img {
    max-width: 280px;
    width: 100%;
    filter: invert(var(--invert-base));
    animation: fadeIn 0.8s ease-out;
}
.project-btn-expand {
    background: var(--bg-card-hover);
    border: none;
    color: var(--text-primary);
    padding: 14px 35px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 5px;
}
.project-btn-expand:hover {
    background: var(--accent-color);
    color: #000;
    box-shadow: none;
}
.video-item {
    background: var(--bg-card);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
}
.video-item:hover {
    transform: translateY(-5px);
    border-color: var(--border-header-scrolled);
}
.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.video-subtitle {
    padding: 15px;
}
.video-subtitle h3 {
    margin: 0;
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 500;
}
.project-link img {
    width: 16px;
    height: 16px;
    filter: invert(var(--invert-base));
}
.project-link:hover img {
    filter: brightness(0);
}
.achievements-display {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 !important;
}
.achievement-image {
    max-width: 900px;
    width: 90%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
    pointer-events: none;
    -webkit-user-drag: none;
}
.achievement-image:hover {
    transform: scale(1.02);
}
.timeline-container {
    max-width: 900px;
    margin: 40px auto 0;
    position: relative;
    padding-left: 30px;
    border-left: 2px solid var(--border-color);
}
.timeline-item {
    position: relative;
    margin-bottom: 40px;
}
.timeline-marker {
    position: absolute;
    left: -37px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: var(--accent-color);
    border-radius: 3px;
}
.timeline-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.timeline-medal {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    filter: invert(var(--invert-base));
    opacity: 0.9;
    pointer-events: none;
}
.timeline-card:hover {
    background: var(--bg-card-hover);
}
.timeline-year {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.4rem;
    display: block;
    margin-bottom: 5px;
}
.timeline-title {
    margin: 0 0 15px 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
}
.timeline-card p {
    margin: 0 0 20px 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    text-align: justify;
}
.btn-play {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 25px;
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}
.btn-icon {
    width: 16px;
    height: 16px;
    filter: invert(var(--invert-base));
    transition: filter 0.3s ease;
}
.btn-jogar:hover {
    background: #ffffff;
    color: #000;
}
.btn-jogar:hover .btn-icon {
    filter: brightness(0);
}
.timeline-footer {
    padding-top: 20px;
    text-align: center;
}
.container-about {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
}
.projects-deco-bracket {
    position: absolute;
    top: 12px;
    right: -28px;
    width: 500px;
    max-width: 50%;
    height: 600px;
    border-top: 1px solid var(--border-header-scrolled);
    border-right: 1px solid var(--border-header-scrolled);
    border-top-right-radius: 20px;
    pointer-events: none;
    z-index: 0;
}
.intro-achievements {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 0 !important;
}
.champion-container {
    position: relative;
    display: inline-block;
    margin: 20px 0 10px 0;
}
.champion-container::before,
.champion-container::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 40px;
    border: 1px solid var(--border-header-scrolled);
    pointer-events: none;
}
.champion-container::before {
    left: -80px;
    transform: translateY(-50%);
    border-right: none;
    border-bottom: none;
}
.champion-container::after {
    right: -80px;
    transform: translateY(-50%);
    border-left: none;
    border-bottom: none;
}
.champion-logo {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: invert(var(--invert-base));
}
.section-tools {
    min-height: 100vh;
    background-color: var(--bg-primary);
    padding: 100px var(--side-padding);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-sizing: border-box;
    border-top: 1px solid var(--border-color);
}
.container-tools {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.tools-title {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-primary);
    margin: 0;
}
.tools-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: var(--accent-color);
    margin-top: 15px;
    margin-bottom: 50px;
}
.tools-selector {
    display: flex;
    gap: 30px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}
.tab-btn {
    background: none;
    border: none;
    color: var(--text-dim);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: inherit;
    transition: all 0.3s ease;
    padding: 10px 0;
    position: relative;
}
.tab-btn:hover {
    color: var(--text-secondary);
}
.tab-btn.active {
    color: var(--accent-color);
}
.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -11px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
}
.tools-nav-wrapper {
    position: relative;
    width: 100%;
}
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--accent-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
}
.nav-arrow.prev {
    left: -70px;
}
.nav-arrow.next {
    right: -70px;
}
.nav-arrow:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--scrollbar-thumb);
    color: var(--text-primary);
}
.nav-arrow.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.tools-content {
    position: relative;
    overflow: hidden;
    width: 100%;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.tools-wrapper {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    width: 100%;
}
.tab-content {
    min-width: 100%;
    flex-shrink: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding-top: 10px;
}
.tab-content.active {
    opacity: 1;
}
@keyframes fadeInTab {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.musics-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex: 1;
    overflow: hidden;
    position: relative;
    margin-top: 50px;
    width: 100%;
}
.musics-nav.tools-selector {
    margin-bottom: 15px;
}
.music-tab.tab-btn {
    padding: 10px 0 !important;
    margin: 0;
}
.musics-display {
    flex: 1;
    min-height: 480px;
    position: relative;
    max-width: 630px;
    overflow: hidden;
}
.music-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
    margin-top: 0;
}
.music-grid.music-list-view {
    grid-template-columns: 1fr;
}
.artist-card {
    background: var(--bg-card);
    border: none;
    border-radius: 15px;
    padding: 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.artist-card:hover {
    background: var(--bg-card-hover);
}
.artist-img-wrapper {
    width: 65px;
    height: 65px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    border: none;
    transition: all 0.3s ease;
}
.artist-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.music-img-wrapper {
    border-radius: 8px !important;
}
.artist-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.artist-name {
    color: var(--text-primary);
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}
.spotify-hint {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: lowercase;
    letter-spacing: 0;
    display: block;
    line-height: 1.4;
}
.artist-rank {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--border-color);
    font-family: var(--font-secondary);
    pointer-events: none;
    line-height: 1;
}
.artist-spotify-icon {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 20px;
    height: 20px;
    opacity: 0;
    transition: all 0.3s ease;
    filter: grayscale(1) invert(1);
}
.artist-card:hover .artist-spotify-icon {
    opacity: 0.6;
    filter: none;
}
.spotify-tooltip {
    position: absolute;
    bottom: 48px;
    right: 5px;
    background: #1DB954;
    color: var(--text-primary);
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 0.65rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateY(10px) scale(0.8);
    pointer-events: none;
    z-index: 10;
    box-shadow: 0 4px 10px var(--shadow-color);
}
.spotify-tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    right: 12px;
    border-width: 5px;
    border-style: solid;
    border-color: #1DB954 transparent transparent transparent;
}
.artist-card:hover .spotify-tooltip {
    opacity: 1;
    transform: translateY(0) scale(1);
}
@media (max-width: 768px) {
    .musics-nav {
        overflow-x: auto;
        padding-bottom: 20px;
        -webkit-overflow-scrolling: touch;
    }
    .music-tab {
        white-space: nowrap;
    }
    .artist-card {
        padding: 12px;
    }
}
.section-musics {
    position: relative;
    overflow: hidden;
    min-height: 80vh;
}
.container-about {
    position: relative;
    z-index: 2;
}
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}
.musical-particle {
    position: absolute;
    top: 100%;
    color: var(--text-muted);
    text-shadow: 0 0 8px var(--shadow-color);
    font-family: Arial, sans-serif;
    user-select: none;
    pointer-events: none;
    animation: riseAndFade linear;
    will-change: transform, opacity;
}
@keyframes riseAndFade {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    20% {
        opacity: 0.4;
    }
    80% {
        opacity: 0.4;
    }
    100% {
        transform: translateY(-120vh) rotate(45deg);
        opacity: 0;
    }
}
.vinyl-wrapper {
    position: absolute;
    bottom: -220px;
    right: -220px;
    width: 700px;
    height: 700px;
    z-index: 1;
    pointer-events: auto;
    opacity: 0.6;
    cursor: grab;
}
.vinyl-wrapper:active {
    cursor: grabbing;
}
.vinyl-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 15px 35px var(--shadow-color);
}
.spinning-part {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.vinyl-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.artist-photo {
    position: relative;
    z-index: 2;
    width: 33%;
    height: 33%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--bg-tertiary);
    transition: opacity 0.3s ease-in-out;
}
.shine-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    z-index: 3;
    background: linear-gradient(105deg,
            transparent 35%,
            var(--bg-card-hover) 40%,
            var(--scrollbar-thumb) 50%,
            var(--bg-card-hover) 60%,
            transparent 65%);
    pointer-events: none;
    animation: vinyl-shine-wobble 3s ease-in-out infinite alternate;
}
@keyframes vinyl-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
@keyframes vinyl-shine-wobble {
    0% {
        transform: rotate(-5deg);
        opacity: 0.5;
    }
    100% {
        transform: rotate(5deg);
        opacity: 0.8;
    }
}
@media (max-width: 768px) {
    .vinyl-wrapper {
        width: 300px;
        height: 300px;
        bottom: -120px;
        left: -120px;
    }
}
.software-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}
.software-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--bg-card);
    padding: 15px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
}
.software-item:hover {
    background: var(--bg-card-hover);
}
.software-icon {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.software-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.software-info {
    display: flex;
    flex-direction: column;
}
.software-label {
    font-size: 0.8rem;
    color: var(--text-dim);
    letter-spacing: 1px;
    margin-bottom: 4px;
}
.software-name {
    font-size: 1.2rem;
    color: var(--text-primary);
    font-weight: 500;
}
#software .software-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
#software .software-item {
    flex-direction: column;
    text-align: center;
    padding: 30px 15px;
    gap: 15px;
}
#software .software-info {
    align-items: center;
}
.placeholder-text {
    color: #444;
    font-style: italic;
    font-size: 1.1rem;
}
.tools-category {
    margin-top: 35px;
}
.tools-category:first-child {
    margin-top: 0;
}
.category-title {
    font-family: monospace;
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-bottom: 15px;
    letter-spacing: 1px;
    font-weight: 400;
}
@media (max-width: 1024px) {
    :root {
        --side-padding: 8vw;
    }
}
@media (max-width: 900px) {
    .presentation {
        flex-direction: column-reverse;
        text-align: center;
        gap: 40px;
        padding-top: 150px;
    }
    .presentation-text {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .quote {
        text-align: center;
        align-items: center;
    }
    .about-grid {
        flex-direction: column;
        gap: 40px;
    }
    .main-header {
        width: 100%;
        border-radius: 0;
        padding: 0 5%;
        height: 70px;
    }
    .header-right {
        gap: 20px;
    }
}
@media (max-width: 600px) {
    :root {
        --side-padding: 20px;
    }
    .main-header {
        height: 60px;
    }
    .brand {
        font-size: 1.2rem;
    }
    .header-right a {
        font-size: 0.9rem;
    }
    .pfp-wrapper {
        width: 180px;
        height: 180px;
    }
    .timeline-container {
        padding-left: 20px;
    }
    .timeline-marker {
        left: -27px;
    }
    .timeline-card {
        padding: 20px;
    }
}
@media (max-width: 800px) {
    .projects-container {
        flex-direction: column;
        gap: 30px;
    }
    .projects-sidebar {
        flex: none;
        flex-direction: row;
        border-right: none;
        border-bottom: 1px solid var(--bg-card-hover);
        padding-right: 0;
        padding-bottom: 15px;
        overflow-x: auto;
        white-space: nowrap;
    }
    .project-tab {
        border-left: none;
        border-bottom: 2px solid transparent;
        padding: 10px 15px;
    }
    .project-tab.active {
        border-left: none;
        border-bottom: 2px solid var(--accent-color);
    }
}
.project-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 50px var(--side-padding);
    backdrop-filter: blur(10px);
    transition: opacity 0.3s ease;
    --modal-primary: #ffffff;
    --modal-font: 'Dancing Script', cursive;
}
.project-modal.active {
    display: flex;
}
.modal-content {
    background: var(--bg-dropdown);
    width: 100%;
    max-width: 1100px;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    border: none;
    box-shadow: 0 25px 50px var(--shadow-color);
    animation: modalMaximize 0.3s ease-out;
}
@keyframes modalMaximize {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--bg-card-hover);
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.close-modal:hover {
    background: var(--modal-primary);
    color: #000;
    transform: rotate(90deg);
}
.modal-body {
    display: flex;
    flex-direction: row;
    min-height: 500px;
}
.modal-image-container {
    flex: 1.5;
    background: #000;
    overflow: hidden;
    display: flex;
    align-items: center;
    position: relative;
}
.modal-image-container img {
    width: 150%;
    height: 100%;
    object-fit: cover;
    animation: panImage 8s linear infinite alternate;
}
@keyframes panImage {
    0% {
        object-position: 0% 50%;
    }
    100% {
        object-position: 100% 50%;
    }
}
.modal-info {
    flex: 1;
    padding: 60px 40px 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    z-index: 10;
}
.modal-info .project-links {
    opacity: 1;
    margin-top: 15px;
    width: 100%;
}
.modal-text-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.modal-text-content::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -40px;
    width: 60px;
    height: 180px;
    border-top: 4px solid var(--modal-primary);
    border-left: 4px solid var(--modal-primary);
    border-top-left-radius: 20px;
    opacity: 0.8;
}
#modal-title {
    font-family: var(--modal-font);
    font-size: 2.8rem;
    margin-bottom: 20px;
    background: var(--modal-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--modal-primary);
    display: block;
    text-align: left;
}
#modal-desc {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 40px;
    text-align: left;
    max-width: 100%;
}
@media (max-width: 900px) {
    .modal-body {
        flex-direction: column;
    }
    .modal-info {
        padding: 40px 30px;
    }
    #modal-title {
        font-size: 2rem;
    }
}
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    width: 100%;
    margin-top: 20px;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.section-horizontal {
    height: 500vh;
    background-color: var(--bg-primary);
    position: relative;
}
.h-story-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.h-story-header {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
    pointer-events: none;
    text-align: center;
}
.h-story-header .section-title::after {
    margin: 15px auto 30px;
}
.h-story-track {
    display: flex;
    width: 300vw;
    height: 100%;
    will-change: transform;
}
.h-story-panel {
    width: 100vw;
    height: 100vh;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px var(--side-padding) 0;
}
.h-panel-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    max-width: 1200px;
    width: 100%;
}
.h-story-panel.reverse .h-panel-content {
    flex-direction: row-reverse;
}
.h-panel-text {
    flex: 1;
    max-width: 550px;
}
.h-panel-tag {
    display: block;
    font-family: var(--font-mono);
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-transform: lowercase;
    opacity: 1;
}
.h-panel-title {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--text-primary);
    margin-bottom: 30px;
}
.h-panel-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 300;
}
.red-bull-text {
    font-weight: 700;
}
.rb-red {
    color: #e9141e;
}
.rb-blue {
    color: #316be0;
}
.h-panel-quote {
    margin-top: 30px;
    padding-left: 20px;
    border-left: 2px solid #ffffff;
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.5;
    max-width: 480px;
}
.h-panel-media {
    flex: 1;
    max-width: 600px;
    height: 450px;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
}
.h-panel-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}
.h-story-progress {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    z-index: 60;
}
.h-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--accent-color);
    border-radius: 4px;
    transition: width 0.1s linear;
}
@media (max-width: 1024px) {
    .h-panel-content {
        gap: 40px;
    }
    .h-panel-media {
        height: 350px;
    }
}
@media (max-width: 768px) {
    .h-panel-content,
    .h-story-panel.reverse .h-panel-content {
        flex-direction: column !important;
        justify-content: center;
        text-align: center;
        gap: 30px;
    }
    .h-panel-media {
        width: 100%;
        max-width: 100%;
        height: 250px;
    }
    .h-panel-text {
        max-width: 100%;
    }
}
.section-contact {
    min-height: auto !important;
    padding-bottom: 150px !important;
    text-align: center;
}
.section-contact .section-title::after {
    margin: 15px auto 30px;
}
.section-contact .about-text-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.contact-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 25px auto 0;
    max-width: 900px;
    flex-wrap: wrap;
}
.contact-icon-link {
    position: relative;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}
.contact-icon-link:hover {
    transform: translateY(-8px);
}
.contact-icon-img {
    width: 32px;
    height: 32px;
}
.teams-icon,
.custom-gold {
    filter: invert(var(--invert-base));
}
.contact-tooltip {
    position: absolute;
    bottom: 150%;
    left: 50%;
    transform: translateX(-50%) translateY(10px) scale(0.8);
    background: #ffffff;
    color: #000;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 100;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}
.contact-tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: #ffffff transparent transparent transparent;
}
.contact-icon-link:hover .contact-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
}
.contact-tooltip.copied {
    background: #27ae60 !important;
    color: #fff !important;
}
.contact-tooltip.copied::after {
    border-top-color: #27ae60 !important;
}
.contact-others {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--bg-card-hover);
    text-align: center;
}
.contact-others-title {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 500;
}
.others-row {
    margin-top: 0 !important;
    gap: 12px !important;
}
.others-row .contact-icon-img {
    width: 26px;
    height: 26px;
    opacity: 0.7;
    transition: all 0.3s ease;
}
.others-row .contact-icon-link:hover .contact-icon-img {
    opacity: 1;
}
@media (max-width: 768px) {
    .contact-row {
        gap: 30px;
    }
    .contact-icon-img {
        width: 28px;
        height: 28px;
    }
}
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
.hamburger-menu {
    display: none;
}
.mobile-menu-overlay {
    display: none;
}
@media (max-width: 900px) {
    body,
    html {
        overflow-x: hidden;
        width: 100%;
    }
    .main-header {
        z-index: 1100 !important;
    }
    .header-right {
        display: none !important;
    }
    .hamburger-menu {
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
        width: 35px;
        height: 25px;
        cursor: pointer;
        z-index: 1100;
        margin-left: auto;
    }
    .hamburger-menu span {
        display: block;
        height: 3px;
        width: 100%;
        background-color: var(--accent-color);
        border-radius: 3px;
        transition: all 0.3s ease;
    }
    .hamburger-menu.active span:nth-child(1) {
        transform: translateY(8.5px) rotate(45deg);
    }
    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger-menu.active span:nth-child(3) {
        transform: translateY(-8.5px) rotate(-45deg);
    }
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--bg-dropdown);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        z-index: 1050;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
    }
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    .mobile-menu-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        transform: translateY(20px);
        transition: transform 0.4s ease;
    }
    .mobile-menu-overlay.active .mobile-menu-content {
        transform: translateY(0);
    }
    .mobile-link {
        color: var(--text-primary);
        font-size: 1.5rem;
        font-weight: 600;
        text-decoration: none;
        transition: color 0.3s ease;
        font-family: 'Orbitron', sans-serif;
        text-transform: uppercase;
        letter-spacing: 2px;
    }
    .mobile-link:hover,
    .mobile-link:active {
        color: var(--accent-color);
    }
    * {
        box-sizing: border-box;
    }
    .section-title {
        font-size: 2rem !important;
        margin-bottom: 20px;
        text-align: center;
        width: 100%;
    }
    .presentation-text h1 {
        font-size: 2rem;
        word-break: break-word;
    }
    .presentation-text .subtitle {
        font-size: 1rem;
        max-width: 100%;
        white-space: normal;
        padding: 0 10px;
    }
    .presentation {
        flex-direction: column;
        padding: 120px 20px 40px 20px;
        text-align: center;
        align-items: center;
        width: 100%;
        overflow-x: hidden;
    }
    .hero-footer {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .hero-btns {
        flex-direction: column;
        width: 100%;
    }
    .hero-btns a {
        width: 100%;
        text-align: center;
    }
    .quote {
        text-align: center;
        margin: 20px 0 0 0;
    }
    .photo-container {
        margin-top: 40px;
        transform: none !important;
        margin-left: 0;
    }
    .pfp-wrapper {
        width: 200px;
        height: 200px;
    }
    .container-about {
        padding: 30px 15px;
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
    .about-content {
        flex-direction: column;
    }
    .card-objetivos {
        margin-top: 30px;
        width: 100%;
        min-width: 0;
    }
    .tools-selector {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
        margin-bottom: 20px;
    }
    .tools-selector::-webkit-scrollbar {
        height: 4px;
    }
    .tools-selector::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.5);
        border-radius: 4px;
    }
    .software-grid {
        grid-template-columns: 1fr;
    }
    .timeline {
        padding-left: 20px;
    }
    .timeline::before {
        left: 0;
    }
    .timeline-item {
        width: 100%;
        padding-left: 40px;
        padding-right: 0;
        left: 0;
    }
    .timeline-item:nth-child(even) {
        left: 0;
        padding-left: 40px;
    }
    .timeline-item::after {
        left: -16px;
        right: auto !important;
    }
    .timeline-date {
        position: relative;
        left: 0 !important;
        right: auto !important;
        top: 0;
        margin-bottom: 10px;
        text-align: left;
    }
    .projects-container {
        flex-direction: column;
        width: 100%;
        max-width: 100vw;
    }
    .projects-sidebar {
        flex-direction: row;
        width: 100%;
        overflow-x: auto;
        padding-bottom: 10px;
        margin-bottom: 20px;
        justify-content: flex-start;
        align-items: center;
    }
    .projects-sidebar::-webkit-scrollbar {
        height: 4px;
    }
    .projects-sidebar::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.5);
    }
    .project-tab {
        flex: 0 0 auto;
        width: auto;
        padding: 10px 15px;
    }
    .project-grid {
        grid-template-columns: 1fr;
    }
    .modal-content {
        flex-direction: column;
        max-width: 95%;
    }
    .modal-img {
        width: 100%;
        max-height: 250px;
    }
    .musics-nav {
        flex-wrap: wrap;
        gap: 10px;
    }
    .music-tab {
        flex: 1 1 auto;
        text-align: center;
    }
    .musics-content {
        grid-template-columns: 1fr;
    }
    .vinyl-container {
        display: none;
    }
    .artist-card {
        width: 100%;
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    .artist-info {
        align-items: center;
        text-align: center;
    }
    .music-grid {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }
    .section-horizontal {
        height: auto !important;
        padding-top: 40px;
    }
    .h-story-sticky {
        position: relative !important;
        height: auto !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    .h-story-header {
        position: relative !important;
        top: 0 !important;
        transform: none !important;
        left: 0 !important;
        margin-bottom: 20px;
    }
    .h-story-track {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        height: auto !important;
        transform: none !important;
        gap: 60px;
    }
    .h-story-panel {
        width: 100% !important;
        height: auto !important;
        padding: 0 15px !important;
    }
    .h-panel-content {
        flex-direction: column !important;
        gap: 30px !important;
    }
    .h-story-panel.reverse .h-panel-content {
        flex-direction: column !important;
    }
    #horizontal-story {
        min-height: auto;
        width: 100%;
    }
}



.theme-toggle-svg .standard-icons,
.theme-toggle-svg .xp-logo {
    transform-origin: center;
    transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1),
                opacity 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

.theme-toggle-svg .xp-logo {
    opacity: 0;
    transform: scale(0) rotate(-180deg);
}

body.theme-1990 .theme-toggle-svg .standard-icons {
    opacity: 0;
    transform: scale(0) rotate(180deg);
}

body.theme-1990 .theme-toggle-svg .xp-logo {
    opacity: 1;
    transform: scale(1.6) rotate(0deg);
}


body.theme-1990 {
    background: url('https://w.wallhaven.cc/full/xl/wallhaven-xle1dv.jpg') center/cover fixed !important;
    background-color: #004b91 !important;
    color: #ffffff !important;
    font-family: 'Tahoma', 'Verdana', sans-serif !important;
    scroll-behavior: auto !important;
}


body.theme-1990, 
body.theme-1990 *,
body.theme-1990 p,
body.theme-1990 span,
body.theme-1990 h1,
body.theme-1990 h2,
body.theme-1990 h3,
body.theme-1990 h4,
body.theme-1990 a,
body.theme-1990 li,
body.theme-1990 .btn-hero,
body.theme-1990 .lang-current span {
    color: #ffffff !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8) !important;
}


body.theme-1990 .lang-selector,
body.theme-1990 .lang-current {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

body.theme-1990 * {
    border-radius: 8px !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
}


body.theme-1990 .main-header,
body.theme-1990 .project-item,
body.theme-1990 .timeline-card,
body.theme-1990 .artist-card,
body.theme-1990 .project-tab,
body.theme-1990 .spotify-floating-player,
body.theme-1990 .lang-dropdown {
    position: relative !important;
    overflow: hidden !important;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.25) 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        rgba(255, 255, 255, 0.05) 50%, 
        rgba(255, 255, 255, 0.1) 100%) !important;
    backdrop-filter: blur(20px) saturate(1.8) !important;
    -webkit-backdrop-filter: blur(20px) saturate(1.8) !important;
    border: 1px solid rgba(255, 255, 255, 0.45) !important;
    border-top: 1.5px solid rgba(255, 255, 255, 0.7) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 
                inset 0 0 1px rgba(255, 255, 255, 0.5) !important;
}


body.theme-1990 .lang-dropdown {
    visibility: visible !important;
    opacity: 0; 

}
body.theme-1990 .lang-selector.active .lang-dropdown {
    opacity: 1 !important;
}


body.theme-1990 .main-header::after,
body.theme-1990 .project-item::after,
body.theme-1990 .artist-card::after {
    content: '' !important;
    position: absolute !important;
    top: -50% !important;
    left: -50% !important;
    width: 200% !important;
    height: 200% !important;
    background: linear-gradient(45deg, 
        transparent 45%, 
        rgba(255, 255, 255, 0.1) 48%, 
        rgba(255, 255, 255, 0.3) 50%, 
        rgba(255, 255, 255, 0.1) 52%, 
        transparent 55%) !important;
    pointer-events: none !important;
    z-index: 1 !important;
    animation: aeroSheen 8s infinite linear !important;
}

@keyframes aeroSheen {
    0% { transform: translate(-30%, -30%) rotate(0deg); }
    100% { transform: translate(30%, 30%) rotate(0deg); }
}


body.theme-1990 .theme-toggle {
    width: 45px !important;
    height: 45px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    background: radial-gradient(circle at 50% 30%, #a5d6a7 0%, #4caf50 40%, #1b5e20 100%) !important;
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.6), 
                inset 0 2px 10px rgba(255, 255, 255, 0.8) !important;
    margin-right: 10px !important;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    z-index: 1002 !important;
}

body.theme-1990 .theme-toggle:hover {
    transform: scale(1.1) rotate(5deg) !important;
    box-shadow: 0 0 35px rgba(76, 175, 80, 0.9) !important;
}


body.theme-1990 .main-header {
    display: none !important;

}

.win7-taskbar {
    display: none;

}

body.theme-1990 .win7-taskbar {
    display: flex !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 40px !important;
    background: linear-gradient(to bottom, 
        rgba(10, 100, 200, 0.7) 0%, 
        rgba(5, 70, 150, 0.85) 50%, 
        rgba(2, 40, 100, 0.9) 100%) !important;
    backdrop-filter: blur(25px) saturate(2) !important;
    -webkit-backdrop-filter: blur(25px) saturate(2) !important;
    border-top: 1.5px solid rgba(255, 255, 255, 0.4) !important;
    z-index: 10000 !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 0px 0 0 !important;

    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3) !important;
}

.win7-taskbar .taskbar-left {
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
}


.win7-taskbar .win-start-orb {
    width: 52px !important;
    height: 52px !important;
    margin-top: -12px !important;

    margin-left: -5px !important;
    border-radius: 50% !important;
    background: radial-gradient(circle at 50% 30%, #a5d6a7 0%, #4caf50 40%, #1b5e20 100%) !important;
    border: 2px solid rgba(255, 255, 255, 0.5) !important;
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.6), 
                inset 0 2px 10px rgba(255, 255, 255, 0.8) !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    z-index: 10001 !important;
}

.win7-taskbar .win-start-orb:hover {
    transform: scale(1.1) rotate(5deg) !important;
    box-shadow: 0 0 30px rgba(76, 175, 80, 0.9) !important;
}

.win7-taskbar .win-start-orb .xp-logo {
    width: 32px !important;
    height: 32px !important;
    transform: scale(0.8) !important;
}


.win7-taskbar .taskbar-apps {
    display: flex !important;
    gap: 2px !important;
    margin-left: 10px !important;
    height: 100% !important;
    align-items: center !important;
}

.win7-taskbar .taskbar-app {
    height: 85% !important;
    padding: 0 15px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 4px !important;
    display: flex !important;
    align-items: center !important;
    color: white !important;
    text-decoration: none !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    transition: all 0.2s ease !important;
}

.win7-taskbar .taskbar-app:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
    box-shadow: inset 0 15px 15px rgba(255, 255, 255, 0.1) !important;
}


.win7-taskbar .taskbar-right {
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
}

.win7-taskbar .taskbar-tray {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 0 10px !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.1) !important;
}

.win7-taskbar .taskbar-lang {
    cursor: pointer !important;
    padding: 2px !important;
}

.win7-taskbar .taskbar-lang img {
    width: 22px !important;
    height: auto !important;
    border-radius: 2px !important;
}

.win7-taskbar .taskbar-clock {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    font-size: 0.75rem !important;
    color: white !important;
    min-width: 80px !important;
}

.win7-taskbar .show-desktop {
    width: 15px !important;
    height: 100% !important;
    border-left: 1px solid rgba(255, 255, 255, 0.2) !important;
    background: rgba(255, 255, 255, 0.05) !important;
    margin-left: 5px !important;
}

.win7-taskbar .show-desktop:hover {
    background: rgba(255, 255, 255, 0.15) !important;
}


body.theme-1990 #scroll-progress,
body.theme-1990 .spotify-floating-player {
    bottom: 50px !important;
}

body.theme-1990 #scroll-indicator {
    bottom: 120px !important;
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5) !important;
}

body.theme-1990 .scroll-icon {
    filter: invert(1) drop-shadow(0 2px 5px rgba(0,0,0,0.5)) !important;
}

body.theme-1990 .presentation {
    background: url('images/frutigerbackground.svg') center/cover no-repeat !important;
}


body.theme-1990 section,
body.theme-1990 footer,
body.theme-1990 main,
body.theme-1990 .section-projects,
body.theme-1990 .section-achievements,
body.theme-1990 .section-tools,
body.theme-1990 .section-musics,
body.theme-1990 .section-contact,
body.theme-1990 #horizontal-story {
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
}


body.theme-1990 .section-title,
body.theme-1990 .tools-title {
    background: linear-gradient(to right, rgba(0, 162, 237, 0.8), transparent) !important;
    padding: 12px 25px !important;
    border-left: 5px solid #ffffff !important;
}

body.theme-1990 .section-title::before,
body.theme-1990 .section-title::after,
body.theme-1990 .tools-title::after {
    display: none !important;
}


body.theme-1990 .btn-hero {
    background: linear-gradient(to bottom, #ffd700 0%, #ff8c00 100%) !important;
    border: 1px solid #ffffff !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3), inset 0 2px 0 rgba(255, 255, 255, 0.5) !important;
}


body.theme-1990 #matrix-canvas,
body.theme-1990 .particles-container,
body.theme-1990 .main-header::before,
body.theme-1990 .project-category-title {
    display: none !important;
}

.law-strip {
    display: flex;
    gap: 18px;
    margin: 30px 0 10px 0;
    flex-wrap: wrap;
}
.law-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    filter: grayscale(100%) brightness(0.9);
    transition: filter 0.3s ease;
}
.law-img:hover {
    filter: grayscale(0%) brightness(1);
}
@media (max-width: 600px) {
    .law-img {
        width: 100px;
        height: 100px;
    }
}
.section-kroom {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    min-height: 100vh;
    padding: 100px var(--side-padding) !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.kroom-grid {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
    align-items: flex-start;
}
.kroom-hero {
    flex: 0 0 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
}
.kroom-logo {
    width: 96px;
    height: 96px;
    border-radius: 22px;
    object-fit: cover;
    background: var(--bg-tertiary);
    padding: 6px;
}
.kroom-hero-info {
    width: 100%;
}
.kroom-hero-info h3 {
    color: var(--text-primary) !important;
    font-size: 1.2rem !important;
    margin: 0 0 6px 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}
.kroom-tag {
    font-size: 0.7rem;
    font-weight: 600;
    background: var(--accent-color);
    color: var(--bg-primary);
    padding: 3px 8px;
    border-radius: 6px;
    letter-spacing: 0.3px;
}
.kroom-tagline {
    font-size: 0.85rem;
    color: var(--text-muted) !important;
    margin: 0 0 18px 0 !important;
}
.kroom-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin-bottom: 22px;
}
.kroom-badge {
    font-size: 0.75rem;
    color: var(--text-secondary);
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    padding: 4px 10px;
    border-radius: 20px;
}
.kroom-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}
.kroom-features {
    flex: 1;
    min-width: 320px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}
@media (max-width: 900px) {
    .kroom-grid {
        flex-direction: column;
    }
    .kroom-hero {
        flex: 1 1 100%;
        width: 100%;
    }
    .kroom-features {
        width: 100%;
    }
}