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

:root {
    --tech-blue: #a8c9d1;
    --tech-blue-dark: #6ba3b8;
    --tech-blue-light: #8ab4f8;
    --art-gold: #c9a961;
    --art-gold-dark: #8b7355;
    --art-gold-light: #ffb86c;
    --bg-dark: #0a0a0a;
    --bg-hero: linear-gradient(to right, #0f1116 0%, #14171f 35%, #1a1f2e 70%, #1f2a3f 100%);
    --text-light: #e8e8e8;
    --text-secondary: #a0a0a0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ===================================
   DOWNLOAD CV BUTTON
   =================================== */
.cv-download-btn {
    position: fixed;
    top: 2rem;
    right: 2rem;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05rem;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    backdrop-filter: blur(10px);
    background: linear-gradient(135deg, rgba(168, 201, 209, 0.15), rgba(201, 169, 97, 0.15));
}

.cv-download-btn:hover {
    color: var(--text-light);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(168, 201, 209, 0.2);
}

.cv-download-btn:active {
    color: #81e6d9;
    border-color: #4fd1c5;
    background: linear-gradient(135deg, rgba(79, 209, 197, 0.2), rgba(129, 230, 217, 0.15));
    transform: translateY(1px);
    box-shadow: 0 0 20px rgba(79, 209, 197, 0.3);
}

/* ===================================
   HERO SECTION - FIRST VIEW
   =================================== */
.hero-section {
    min-height: 75vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--bg-hero);
    position: relative;
    padding: 2rem;
}

/* Bottom blend gradient - fades hero into dual section */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20%;
    background: linear-gradient(to bottom,
        transparent 0%,
        rgba(10, 10, 10, 0.4) 60%,
        rgba(10, 10, 10, 0.7) 100%
    );
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    text-align: center;
    z-index: 1;
    animation: fadeInScale 1.2s ease-out;
}

.hero-social-links {
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    z-index: 10;
}

.hero-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-social-link svg {
    width: 18px;
    height: 18px;
    transition: all 0.3s ease;
}

.hero-social-link:nth-child(1):hover {
    color: var(--tech-blue);
    transform: translateY(-3px);
}

.hero-social-link:nth-child(2):hover {
    color: #4fd1c5;
    transform: translateY(-3px);
}

.hero-social-link:nth-child(3):hover {
    color: var(--art-gold);
    transform: translateY(-3px);
}

.hero-social-link:nth-child(4):hover {
    color: #81e6d9;
    transform: translateY(-3px);
}

.hero-name {
    font-family: 'Outfit', 'Syne', sans-serif;
    font-size: clamp(3.5rem, 10vw, 8rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 0.9;
    margin-bottom: 0.3rem;
    color: #ffffff;
}

.hero-lastname {
    font-family: 'Outfit', 'Syne', sans-serif;
    font-size: clamp(1rem, 3vw, 2rem);
    font-weight: 300;
    color: #999999;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
}

.hero-tagline {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(0.8rem, 1.5vw, 1rem);
    color: #666666;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

@keyframes fadeInScale {
    from {
    opacity: 0;
        transform: scale(0.96) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    z-index: 1;
    animation: fadeIn 2s ease-out 1s backwards;
}

.scroll-text {
    font-size: 0.95rem;
    color: rgba(129, 230, 217, 0.7);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
}

.scroll-arrow {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(129, 230, 217, 0.08);
    border: 2px solid rgba(129, 230, 217, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 2s ease-in-out infinite;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(129, 230, 217, 0.1);
}

.scroll-arrow svg {
    width: 28px;
    height: 28px;
    color: rgba(129, 230, 217, 0.8);
}

.scroll-indicator:hover .scroll-arrow {
    background: rgba(129, 230, 217, 0.15);
    border-color: rgba(129, 230, 217, 0.5);
    transform: translateY(5px);
    box-shadow: 0 0 30px rgba(129, 230, 217, 0.2);
}

.scroll-indicator:active .scroll-arrow {
    background: rgba(79, 209, 197, 0.3);
    border-color: #4fd1c5;
    transform: translateY(8px);
    box-shadow: 0 0 40px rgba(79, 209, 197, 0.4);
}

.scroll-indicator:hover .scroll-text {
    color: rgba(129, 230, 217, 0.9);
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
}

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

/* ===================================
   DUAL IDENTITY SECTION
   =================================== */
.dual-section {
    min-height: 100vh;
    position: relative;
}

.dual-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom,
        rgba(10, 10, 10, 0.5) 0%,
        rgba(10, 10, 10, 0.2) 50%,
        transparent 100%
    );
    z-index: 0;
    pointer-events: none;
}

.dual-container {
    display: flex;
    min-height: 100vh;
    position: relative;
    z-index: 0;
}

/* Side styling */
.side {
    flex: 1;
    min-height: 100vh;
    padding: 4rem 4rem 4rem;
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
}

.side-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Tech side (left) - Blue theme */
.tech-side {
    background: linear-gradient(135deg,
        rgba(10, 10, 10, 1) 0%,
        rgba(20, 35, 45, 0.15) 50%,
        rgba(10, 10, 10, 1) 100%);
    border-right: 1px solid rgba(168, 201, 209, 0.03);
}

.tech-side::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(45deg, transparent 48%, rgba(168, 201, 209, 0.02) 50%, transparent 52%);
    background-size: 50px 50px;
    pointer-events: none;
    opacity: 0.5;
}

.tech-side .side-title {
    font-family: 'Outfit', 'Syne', sans-serif;
    font-size: 3.5rem;
    font-weight: 500;
    letter-spacing: -0.02rem;
    color: var(--tech-blue);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--tech-blue) 0%, var(--tech-blue-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInLeft 1s ease-out;
}

.tech-side .side-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-secondary);
    letter-spacing: 0.1rem;
    margin-bottom: 3rem;
    animation: fadeInLeft 1.2s ease-out;
}

/* Art side (right) - Gold theme blended with homepage */
.art-side {
    background: linear-gradient(135deg,
        rgba(10, 10, 10, 1) 0%,
        rgba(18, 32, 42, 0.15) 25%,
        rgba(20, 35, 45, 0.15) 50%,
        rgba(18, 32, 42, 0.15) 75%,
        rgba(10, 10, 10, 1) 100%);
    border-left: 1px solid rgba(168, 201, 209, 0.03);
}

.art-side::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(45deg, transparent 48%, rgba(168, 201, 209, 0.015) 50%, transparent 52%);
    background-size: 50px 50px;
    pointer-events: none;
    opacity: 0.4;
}

.art-side .side-title {
    font-family: 'Outfit', 'Syne', sans-serif;
    font-size: 3.5rem;
    font-weight: 500;
    letter-spacing: -0.02rem;
    color: var(--art-gold);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--art-gold) 0%, var(--art-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInRight 1s ease-out;
}

.art-side .side-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-secondary);
    letter-spacing: 0.1rem;
    margin-bottom: 3rem;
    animation: fadeInRight 1.2s ease-out;
}

/* Section styling */
.section {
    margin-bottom: 4rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-section-inner {
    opacity: 1;
    animation: none;
}

.technical-skills-section {
    position: relative;
    overflow: visible;
}

.section:nth-child(1) { animation-delay: 0.2s; }
.section:nth-child(2) { animation-delay: 0.4s; }
.section:nth-child(3) { animation-delay: 0.6s; }
.section:nth-child(4) { animation-delay: 0.8s; }
.section:nth-child(5) { animation-delay: 1s; }

.section-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05rem;
}

.tech-side .section-heading {
    color: var(--tech-blue-dark);
}

.art-side .section-heading {
    color: var(--art-gold-dark);
}

/* Code block styling */
.code-block {
    background: rgba(20, 35, 45, 0.4);
    border: 1px solid rgba(168, 201, 209, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    font-family: 'Fira Code', monospace;
    font-size: 0.9rem;
    line-height: 1.8;
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.code-block:hover {
    border-color: rgba(168, 201, 209, 0.5);
    box-shadow: 0 0 30px rgba(168, 201, 209, 0.1);
}

.code-line {
    display: block;
    color: var(--text-secondary);
}

.keyword {
    color: var(--tech-blue-light);
}

.variable {
    color: var(--tech-blue);
}

.property {
    color: #9cdcfe;
}

.string {
    color: #ce9178;
}

/* Skills list */
.skills-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.skill-item {
    background: rgba(168, 201, 209, 0.08);
    border: 1px solid rgba(168, 201, 209, 0.2);
    border-radius: 6px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.skill-item:hover {
    background: rgba(168, 201, 209, 0.15);
    border-color: rgba(168, 201, 209, 0.4);
    transform: translateX(4px);
}

/* Skill popup */
.skill-popup {
    position: fixed;
    transform: scale(0.9);
    background: rgba(15, 17, 22, 0.98);
    border: 1px solid rgba(168, 201, 209, 0.4);
    border-radius: 8px;
    padding: 1.5rem 2.5rem 1.5rem 1.5rem;
    max-width: 400px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
        opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10000;
    pointer-events: none;
}

.skill-popup.active {
        opacity: 1;
    visibility: visible;
        transform: scale(1);
    pointer-events: all;
}

.skill-popup h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--tech-blue);
    margin-bottom: 0.75rem;
}

.skill-popup p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.popup-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(168, 201, 209, 0.1);
    border: 1px solid rgba(168, 201, 209, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    color: var(--text-secondary);
}

.popup-close:hover {
    background: rgba(168, 201, 209, 0.2);
    border-color: rgba(168, 201, 209, 0.5);
    transform: rotate(90deg);
}

/* Philosophy card */
.philosophy-card {
    background: rgba(20, 35, 45, 0.3);
    border-left: 3px solid var(--tech-blue);
    padding: 1.5rem;
    border-radius: 4px;
}

.philosophy-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.philosophy-card p:last-child {
    margin-bottom: 0;
}

/* Journey timeline */
.journey-timeline {
    position: relative;
    padding-left: 2rem;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom,
        var(--tech-blue) 0%,
        var(--tech-blue-dark) 50%,
        var(--tech-blue) 100%);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: calc(-2rem + 1px);
    transform: translateX(-50%);
    top: 0.3rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--tech-blue);
    box-shadow: 0 0 20px rgba(168, 201, 209, 0.6);
}

.timeline-content h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--tech-blue);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.timeline-item.current-location .timeline-marker {
    width: 16px;
    height: 16px;
    background: var(--tech-blue);
    box-shadow: 0 0 25px rgba(168, 201, 209, 0.8), 0 0 40px rgba(168, 201, 209, 0.4);
    animation: currentLocationPulse 2s ease-in-out infinite;
}

@keyframes currentLocationPulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 0 25px rgba(168, 201, 209, 0.8), 0 0 40px rgba(168, 201, 209, 0.4);
    }
    50% {
        transform: translateX(-50%) scale(1.2);
        box-shadow: 0 0 35px rgba(168, 201, 209, 1), 0 0 60px rgba(168, 201, 209, 0.6);
    }
}

.location-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.6rem;
    background: rgba(168, 201, 209, 0.15);
    border: 1px solid rgba(168, 201, 209, 0.4);
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--tech-blue);
    letter-spacing: 0.05rem;
    text-transform: uppercase;
}

/* Languages grid */
.languages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.language-card {
    background: rgba(168, 201, 209, 0.05);
    border: 1px solid rgba(168, 201, 209, 0.15);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    cursor: default;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.language-card:hover {
    background: rgba(168, 201, 209, 0.1);
    border-color: rgba(168, 201, 209, 0.3);
    transform: translateY(-4px);
}

.lang-flag {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    display: block;
}

.language-card span {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
}

.language-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-5px);
    background: rgba(15, 17, 22, 0.98);
    border: 1px solid rgba(168, 201, 209, 0.3);
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
    color: var(--tech-blue);
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    pointer-events: none;
    z-index: 1000;
}

.language-card:hover .language-tooltip {
        opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-10px);
}

.language-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: rgba(168, 201, 209, 0.3);
}

/* Art statement */
.art-statement {
    background: rgba(45, 35, 20, 0.3);
    border-left: 3px solid var(--art-gold);
    padding: 1.5rem;
    border-radius: 4px;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.brush-stroke {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.statement-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-style: italic;
    position: relative;
    z-index: 1;
}

/* Art description */
.art-description p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.portfolio-item {
        opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.portfolio-item:nth-child(1) { animation-delay: 0.1s; }
.portfolio-item:nth-child(2) { animation-delay: 0.2s; }
.portfolio-item:nth-child(3) { animation-delay: 0.3s; }
.portfolio-item:nth-child(4) { animation-delay: 0.4s; }

.portfolio-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 169, 97, 0.15);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 169, 97, 0.4);
    box-shadow: 0 8px 30px rgba(201, 169, 97, 0.2);
}

.art-preview {
    width: 100%;
    height: 220px;
    position: relative;
    overflow: hidden;
    background: rgba(20, 20, 20, 0.5);
}

.art-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.portfolio-card:hover .art-preview img {
    transform: scale(1.05);
}

.portfolio-cta {
    text-align: center;
    margin-top: 2rem;
}

.view-portfolio-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: rgba(201, 169, 97, 0.2);
    border: 1px solid var(--art-gold);
    border-radius: 4px;
    color: var(--art-gold);
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 0.05rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.view-portfolio-btn:hover {
    background: var(--art-gold);
    color: var(--bg-dark);
    box-shadow: 0 0 30px rgba(201, 169, 97, 0.4);
}

.view-portfolio-btn:active {
    background: linear-gradient(135deg, #4fd1c5, #81e6d9);
    border-color: #4fd1c5;
    color: var(--bg-dark);
    transform: translateY(2px);
    box-shadow: 0 0 25px rgba(79, 209, 197, 0.5);
}

/* Globe Container */
.globe-container {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

#globeCanvas {
    width: 100%;
    max-width: 220px;
    height: 220px;
    border-radius: 50%;
    background: #0a0a0f;
    box-shadow:
        0 0 60px rgba(100, 150, 200, 0.4),
        0 0 100px rgba(100, 150, 200, 0.2),
        inset 0 0 20px rgba(0, 0, 0, 0.8);
    cursor: grab;
    transition: transform 0.3s ease;
}

#globeCanvas:active {
    cursor: grabbing;
}

.globe-caption {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
    color: rgba(201, 169, 97, 0.9);
    font-weight: 500;
    letter-spacing: 0.05em;
}

.caption-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.caption-icon {
    font-size: 1.2rem;
}

.caption-separator {
    opacity: 0.5;
}

.travel-inspiration {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(201, 169, 97, 0.85);
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    font-style: italic;
    padding: 0 1rem;
}

/* Center divider */
.divider {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 100vh;
    z-index: 100;
    display: flex;
    align-items: flex-start;
    padding-top: 25vh;
    justify-content: center;
    pointer-events: none;
        opacity: 0;
    transition: opacity 0.5s ease;
}

.divider.visible {
        opacity: 1;
}

.divider-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom,
        transparent 0%,
        var(--tech-blue) 20%,
        rgba(168, 201, 209, 0.5) 40%,
        rgba(201, 169, 97, 0.5) 60%,
        var(--art-gold) 80%,
        transparent 100%
    );
    opacity: 0.6;
}

.divider-handle {
    position: relative;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--tech-blue) 0%, var(--art-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    cursor: ew-resize;
    box-shadow: 0 0 20px rgba(168, 201, 209, 0.3), 0 0 20px rgba(201, 169, 97, 0.3);
    transition: all 0.3s ease;
    animation: pulseGlow 3s ease-in-out infinite;
}

.divider-handle:hover {
    transform: scale(1.2);
    box-shadow: 0 0 35px rgba(168, 201, 209, 0.4), 0 0 35px rgba(201, 169, 97, 0.4);
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(168, 201, 209, 0.3), 0 0 20px rgba(201, 169, 97, 0.3);
    }
    50% {
        box-shadow: 0 0 28px rgba(168, 201, 209, 0.35), 0 0 28px rgba(201, 169, 97, 0.35);
    }
}

.handle-icon {
    font-size: 1rem;
    color: var(--bg-dark);
    font-weight: 700;
}

/* Blend overlay effect */
.blend-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background: radial-gradient(circle at 50% 50%,
        rgba(168, 201, 209, 0.05) 0%,
        transparent 30%,
        rgba(201, 169, 97, 0.05) 100%
    );
    mix-blend-mode: screen;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.blend-overlay.active {
        opacity: 1;
}

/* Image Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.lightbox-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    display: block;
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: #f1f1f1;
    font-size: 50px;
    font-weight: 300;
    transition: 0.3s;
    cursor: pointer;
    z-index: 10000;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--art-gold);
    transform: scale(1.1);
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ===================================
   FOOTER
   =================================== */
.site-footer {
    position: relative;
    padding: 1.5rem 2rem;
    background: rgb(10, 10, 10);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-copyright {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.02rem;
    position: absolute;
    left: 2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.03rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-icon {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--text-light);
}

.footer-link:nth-child(1):hover {
    color: var(--tech-blue);
}

.footer-link:nth-child(1):hover .footer-icon {
    color: var(--tech-blue);
    transform: scale(1.1);
}

.footer-link:nth-child(2):hover {
    color: #4fd1c5;
}

.footer-link:nth-child(2):hover .footer-icon {
    color: #4fd1c5;
    transform: scale(1.1);
}

.footer-link:nth-child(3):hover {
    color: var(--art-gold);
}

.footer-link:nth-child(3):hover .footer-icon {
    color: var(--art-gold);
    transform: scale(1.1);
}

.footer-link:nth-child(4):hover {
    color: #81e6d9;
}

.footer-link:nth-child(4):hover .footer-icon {
    color: #81e6d9;
    transform: scale(1.1);
}

/* ===================================
   CHAT BOX
   =================================== */
.chat-toggle {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.chat-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transform: scale(1.05);
}

.chat-toggle:active {
    background: rgba(79, 209, 197, 0.2);
    border-color: #4fd1c5;
    color: #81e6d9;
    transform: scale(0.98);
    box-shadow: 0 0 20px rgba(79, 209, 197, 0.4);
}

.chat-toggle svg {
    width: 28px;
    height: 28px;
}

.chat-notification {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 22px;
    height: 22px;
    background: var(--tech-blue);
    border: 2px solid var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    color: #ffffff;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(168, 201, 209, 0.7);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 6px rgba(168, 201, 209, 0);
    }
}

.chat-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 450px;
    height: 620px;
    background: rgba(26, 58, 46, 0.95);
    border: 1px solid rgba(168, 201, 209, 0.3);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    z-index: 1001;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.6), 0 0 40px rgba(168, 201, 209, 0.1);
}

.chat-container.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.chat-header {
    padding: 1.5rem 1.75rem;
    border-bottom: 1px solid rgba(168, 201, 209, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
    font-weight: 500;
    letter-spacing: 0.01em;
    font-size: 1.05rem;
}

.chat-close {
    background: none;
    border: none;
    color: #999999;
    font-size: 1.8rem;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
    line-height: 1;
}

.chat-close:hover {
    color: #ffffff;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.chat-messages::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.chat-message {
    max-width: 80%;
    padding: 0.9rem 1.2rem;
    border-radius: 10px;
    font-size: 1rem;
    line-height: 1.6;
    animation: messageSlideIn 0.3s ease;
}

@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bot-message {
    background: rgba(168, 201, 209, 0.12);
    color: #e8e8e8;
    align-self: flex-start;
    border: 1px solid rgba(168, 201, 209, 0.3);
}

.user-message {
    background: linear-gradient(135deg, var(--tech-blue) 0%, var(--tech-blue-dark) 100%);
    color: #ffffff;
    align-self: flex-end;
    border: 1px solid var(--tech-blue);
}

.chat-message p {
    margin: 0;
}

.chat-message a {
    color: var(--tech-blue);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.chat-message a:hover {
    color: var(--tech-blue-light);
}

.user-message a {
    color: #ffffff;
    text-decoration-color: rgba(255, 255, 255, 0.5);
}

.user-message a:hover {
    text-decoration-color: #ffffff;
}

.chat-input-container {
    padding: 1rem 1.25rem 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 0.75rem;
}

.chat-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(168, 201, 209, 0.3);
    border-radius: 10px;
    padding: 0.85rem 1.15rem;
    color: #ffffff;
    font-size: 1rem;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.3s ease;
}

.chat-input:focus {
    outline: none;
    border-color: var(--tech-blue);
    background: rgba(168, 201, 209, 0.08);
}

.chat-input::placeholder {
    color: #666666;
}

.chat-send {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--tech-blue) 0%, var(--tech-blue-dark) 100%);
    border: 1px solid var(--tech-blue);
    border-radius: 10px;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chat-send:hover {
    background: linear-gradient(135deg, var(--tech-blue-light) 0%, var(--tech-blue) 100%);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(168, 201, 209, 0.4);
}

.chat-send:active {
    background: linear-gradient(135deg, #4fd1c5, #81e6d9);
    border-color: #4fd1c5;
    transform: scale(0.95);
    box-shadow: 0 0 15px rgba(79, 209, 197, 0.5);
}

.chat-send svg {
    width: 20px;
    height: 20px;
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* ===================================
   SCROLLBAR
   =================================== */
.side::-webkit-scrollbar {
    width: 8px;
}

.tech-side::-webkit-scrollbar-track {
    background: rgba(20, 35, 45, 0.2);
}

.tech-side::-webkit-scrollbar-thumb {
    background: rgba(168, 201, 209, 0.3);
    border-radius: 4px;
}

.tech-side::-webkit-scrollbar-thumb:hover {
    background: rgba(168, 201, 209, 0.5);
}

.art-side::-webkit-scrollbar-track {
    background: rgba(45, 35, 20, 0.2);
}

.art-side::-webkit-scrollbar-thumb {
    background: rgba(201, 169, 97, 0.3);
    border-radius: 4px;
}

.art-side::-webkit-scrollbar-thumb:hover {
    background: rgba(201, 169, 97, 0.5);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Large tablets and small desktops */
@media (max-width: 1200px) {
    .side {
        padding: 4rem 3rem 3rem;
    }
    
    .tech-side .side-title,
    .art-side .side-title {
        font-size: 3rem;
    }
    
    .portfolio-grid {
        gap: 1.25rem;
    }
    
    .art-preview {
        height: 180px;
    }
}

@media (max-width: 1024px) {
    .dual-container {
        flex-direction: column;
    }

    .side {
        min-height: auto;
        padding: 4rem 3rem 3rem;
        width: 100% !important;
        flex: 1 1 auto !important;
    }

    .tech-side {
        border-right: none;
        border-bottom: 1px solid rgba(168, 201, 209, 0.2);
    }

    .art-side {
        border-left: none;
        border-top: 1px solid rgba(201, 169, 97, 0.2);
    }

    .divider {
        display: none !important;
    }

    .skills-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .languages-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .skill-popup {
        width: 90%;
        max-width: 400px;
        padding: 1.5rem;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) scale(0.9);
    }

    .skill-popup.active {
        transform: translate(-50%, -50%) scale(1);
    }

    .skill-popup h3 {
        font-size: 1.1rem;
        padding-right: 2rem;
    }

    .skill-popup p {
        font-size: 0.9rem;
    }
    
    .hero-social-links {
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    /* Hero section adjustments */
    .hero-section {
        padding: 1.5rem;
        min-height: 80vh;
    }
    
    .hero-social-links {
        top: 1.25rem;
        gap: 1rem;
    }
    
    .hero-social-link {
        width: 28px;
        height: 28px;
    }
    
    .hero-social-link svg {
        width: 16px;
        height: 16px;
    }
    
    .hero-name {
        font-size: clamp(2.8rem, 12vw, 5rem);
    }
    
    .hero-lastname {
        font-size: clamp(0.9rem, 2.5vw, 1.5rem);
        letter-spacing: 0.1em;
    }
    
    .hero-tagline {
        font-size: clamp(0.7rem, 1.2vw, 0.9rem);
        letter-spacing: 0.15em;
    }
    
    /* Download CV button - keep at top right but smaller */
    .cv-download-btn {
        top: 1rem;
        right: 1rem;
        font-size: 0.75rem;
        padding: 0.5rem 0.9rem;
    }
    
    .scroll-indicator {
        bottom: 5rem;
    }
    
    .scroll-text {
        font-size: 0.8rem;
    }
    
    .scroll-arrow {
        width: 44px;
        height: 44px;
    }
    
    .scroll-arrow svg {
        width: 22px;
        height: 22px;
    }

    .side {
        padding: 3rem 1.5rem 2.5rem;
        width: 100% !important;
        flex: 1 1 auto !important;
    }

    .side-content {
        max-width: 100%;
    }

    .tech-side .side-title,
    .art-side .side-title {
        font-size: 2.25rem;
    }

    .tech-side .side-subtitle,
    .art-side .side-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .section {
        margin-bottom: 2.5rem;
    }

    .section-heading {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .code-block {
        font-size: 0.75rem;
        padding: 1rem;
        margin-top: 1.5rem;
    }
    
    .code-line {
        white-space: normal;
        word-break: break-word;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .art-preview {
        height: 200px;
    }
    
    .view-portfolio-btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Footer responsive */
    .site-footer {
        padding: 1.25rem 1rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-copyright {
        position: static;
        order: 2;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem 1.5rem;
    }
    
    .footer-link {
        font-size: 0.8rem;
    }
    
    .footer-icon {
        width: 18px;
        height: 18px;
    }

    .skills-list {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .skill-item {
        padding: 0.65rem 0.9rem;
        font-size: 0.85rem;
    }

    .languages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .language-card {
        padding: 0.75rem;
    }
    
    .lang-flag {
        font-size: 2rem;
    }

    .journey-timeline {
        padding-left: 1.5rem;
    }
    
    .timeline-content h3 {
        font-size: 1rem;
        flex-wrap: wrap;
    }
    
    .timeline-content p {
        font-size: 0.85rem;
    }
    
    .location-badge {
        font-size: 0.6rem;
        padding: 0.2rem 0.5rem;
    }
    
    .philosophy-card {
        padding: 1.25rem;
    }
    
    .philosophy-card p {
        font-size: 0.9rem;
    }
    
    .art-statement {
        padding: 1.25rem;
    }
    
    .statement-text {
        font-size: 1rem;
    }
    
    .art-description p {
        font-size: 0.9rem;
    }
    
    /* Globe container */
    .globe-container {
        margin-top: 1.5rem;
        gap: 1rem;
    }
    
    #globeCanvas {
        max-width: 180px;
        height: 180px;
    }
    
    .globe-caption {
        font-size: 0.85rem;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .travel-inspiration {
        font-size: 0.85rem;
    }

    /* Chat container */
    .chat-container {
        width: calc(100vw - 2rem);
        height: 65vh;
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
    }
    
    .chat-header {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .chat-messages {
        padding: 1rem;
    }
    
    .chat-message {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        max-width: 85%;
    }
    
    .chat-input-container {
        padding: 0.75rem 1rem 1rem;
    }
    
    .chat-input {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .chat-send {
        width: 40px;
        height: 40px;
    }

    .chat-toggle {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
    }

    .chat-toggle svg {
        width: 22px;
        height: 22px;
    }
    
    .chat-notification {
        width: 18px;
        height: 18px;
        font-size: 0.6rem;
    }
}

@media (max-width: 480px) {
    /* Hero adjustments for small screens */
    .hero-section {
        min-height: 85vh;
        padding: 1rem;
    }
    
    .hero-social-links {
        top: 1rem;
        gap: 0.75rem;
    }
    
    .hero-social-link {
        width: 26px;
        height: 26px;
    }
    
    .hero-social-link svg {
        width: 14px;
        height: 14px;
    }
    
    .hero-name {
        font-size: clamp(2.2rem, 14vw, 3.5rem);
    }
    
    .hero-lastname {
        font-size: clamp(0.8rem, 3vw, 1.2rem);
        margin-bottom: 1rem;
    }
    
    .hero-tagline {
        font-size: 0.65rem;
        letter-spacing: 0.12em;
        padding: 0 0.5rem;
    }
    
    .cv-download-btn {
        font-size: 0.7rem;
        padding: 0.4rem 0.75rem;
    }
    
    .scroll-indicator {
        bottom: 4.5rem;
    }
    
    .scroll-text {
        font-size: 0.7rem;
        letter-spacing: 0.15em;
    }
    
    .scroll-arrow {
        width: 38px;
        height: 38px;
    }
    
    .scroll-arrow svg {
        width: 18px;
        height: 18px;
    }

    .side {
        padding: 2rem 1rem 1.5rem;
        width: 100% !important;
        flex: 1 1 auto !important;
    }

    .tech-side .side-title,
    .art-side .side-title {
        font-size: 1.75rem;
    }

    .tech-side .side-subtitle,
    .art-side .side-subtitle {
        font-size: 0.85rem;
        letter-spacing: 0.05rem;
        margin-bottom: 1.5rem;
    }

    .section {
        margin-bottom: 2rem;
    }

    .section-heading {
        font-size: 1.1rem;
    }

    .code-block {
        font-size: 0.65rem;
        padding: 0.75rem;
        line-height: 1.6;
    }
    
    .skill-popup {
        width: 95%;
        padding: 1.25rem;
    }
    
    .skill-popup h3 {
        font-size: 1rem;
    }
    
    .skill-popup p {
        font-size: 0.85rem;
    }

    .languages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .language-card {
        padding: 0.6rem;
    }
    
    .lang-flag {
        font-size: 1.75rem;
        margin-bottom: 0.35rem;
    }
    
    .language-card span {
        font-size: 0.8rem;
    }
    
    .journey-timeline {
        padding-left: 1.25rem;
    }
    
    .timeline-marker {
        left: calc(-1.25rem + 1px);
        width: 10px;
        height: 10px;
    }
    
    .timeline-content h3 {
        font-size: 0.95rem;
    }
    
    .timeline-content p {
        font-size: 0.8rem;
    }
    
    .art-preview {
        height: 180px;
    }
    
    .view-portfolio-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }
    
    #globeCanvas {
        max-width: 150px;
        height: 150px;
    }
    
    .globe-caption {
        font-size: 0.75rem;
    }
    
    .travel-inspiration {
        font-size: 0.8rem;
        padding: 0 0.5rem;
    }

    /* Footer for very small screens */
    .site-footer {
        padding: 1rem 0.75rem;
    }

    .footer-links {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem 1rem;
    }
    
    .footer-link {
        font-size: 0.75rem;
        gap: 0.35rem;
    }
    
    .footer-icon {
        width: 16px;
        height: 16px;
    }
    
    .footer-copyright {
        font-size: 0.6rem;
    }
    
    /* Chat for small screens */
    .chat-container {
        width: calc(100vw - 1rem);
        height: 60vh;
        bottom: 0.5rem;
        right: 0.5rem;
        left: 0.5rem;
        border-radius: 12px;
    }
    
    .chat-toggle {
        bottom: 0.75rem;
        right: 0.75rem;
        width: 44px;
        height: 44px;
    }
    
    .chat-toggle svg {
        width: 20px;
        height: 20px;
    }
}

/* Extra small screens (very narrow phones) */
@media (max-width: 360px) {
    .hero-name {
        font-size: 2rem;
    }
    
    .hero-lastname {
        font-size: 0.75rem;
    }
    
    .hero-tagline {
        font-size: 0.55rem;
        letter-spacing: 0.1em;
    }
    
    .hero-social-links {
        gap: 0.5rem;
    }
    
    .hero-social-link {
        width: 22px;
        height: 22px;
    }
    
    .hero-social-link svg {
        width: 12px;
        height: 12px;
    }
    
    .side {
        padding: 1.5rem 0.75rem 1.25rem;
    }
    
    .tech-side .side-title,
    .art-side .side-title {
        font-size: 1.5rem;
    }
    
    .code-block {
        font-size: 0.6rem;
        padding: 0.6rem;
    }
    
    .footer-link span {
        display: none;
    }
    
    .footer-links {
        gap: 1rem;
    }
    
    .footer-icon {
        width: 20px;
        height: 20px;
    }
}
