/* ==================== Design Tokens ==================== */
:root {
    /* Travel-Inspired Color Palette - Sunset, Ocean, Desert, Adventure */
    --color-base-bg: #faf9f7;
    --color-base-surface: #ffffff;
    --color-base-text: #1a202c;
    --color-base-text-muted: #4a5568;

    /* Travel Theme Accents */
    --color-accent-1: #e07a3f;
    /* Sunset Orange */
    --color-accent-2: #2a9d8f;
    /* Ocean Teal */
    --color-accent-3: #f4a261;
    /* Warm Sand */
    --color-accent-light: #fef4ed;
    /* Pale Sunset */

    /* Functional Colors */
    --color-shadow: rgba(224, 122, 63, 0.12);
    --color-border: rgba(224, 122, 63, 0.15);
    --color-hover: rgba(224, 122, 63, 0.08);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #e07a3f 0%, #2a9d8f 100%);
    --gradient-hero: linear-gradient(135deg, #e07a3f 0%, #f4a261 50%, #2a9d8f 100%);
    --gradient-card: linear-gradient(135deg, rgba(224, 122, 63, 0.95) 0%, rgba(42, 157, 143, 0.95) 100%);

    /* Spacing Scale */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.05), 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 24px rgba(0, 0, 0, 0.08), 0 4px 8px rgba(0, 0, 0, 0.06);
    --shadow-theme: 0 10px 30px var(--color-shadow), 0 4px 10px rgba(0, 0, 0, 0.06);

    /* Typography */
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
    --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
    --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
    --text-lg: clamp(1.125rem, 1.05rem + 0.35vw, 1.25rem);
    --text-xl: clamp(1.25rem, 1.15rem + 0.5vw, 1.5rem);
    --text-2xl: clamp(1.5rem, 1.3rem + 1vw, 2rem);
    --text-3xl: clamp(2rem, 1.6rem + 2vw, 2.5rem);
    --text-4xl: clamp(2.5rem, 2rem + 2.5vw, 3.5rem);

    /* Weights */
    --weight-normal: 400;
    --weight-medium: 500;
    --weight-semibold: 600;
    --weight-bold: 700;
}

/* ==================== Reset & Base ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-sans);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--color-base-text);
    background: var(--color-base-bg);
    background-image:
        radial-gradient(circle at 15% 15%, rgba(224, 122, 63, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 85% 85%, rgba(42, 157, 143, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(244, 162, 97, 0.02) 0%, transparent 70%);
    background-attachment: fixed;
    overflow-x: hidden;
    letter-spacing: -0.005em;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-accent-1);
    color: white;
    padding: var(--space-sm) var(--space-md);
    text-decoration: none;
    border-radius: var(--radius-md);
    z-index: 100;
    font-weight: var(--weight-semibold);
}

.skip-link:focus {
    top: var(--space-sm);
    left: var(--space-sm);
}

/* ==================== Navigation ==================== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.85);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    backdrop-filter: blur(12px) saturate(180%);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    z-index: 50;
    transition: all 0.3s ease;
}

nav .nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--space-md) var(--space-xl);
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
}

.brand {
    font-size: var(--text-xl);
    font-weight: var(--weight-bold);
    color: var(--color-accent-1);
    text-decoration: none;
    letter-spacing: -0.02em;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    position: relative;
}

.brand::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.brand:hover::after {
    width: 100%;
}

.breadcrumb {
    display: flex;
    align-items: center;
    list-style: none;
    gap: var(--space-sm);
    margin: 0;
    flex-wrap: wrap;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.breadcrumb li::after {
    content: "→";
    color: var(--color-base-text-muted);
    opacity: 0.5;
    font-size: var(--text-sm);
}

.breadcrumb li:last-child::after {
    content: none;
}

.breadcrumb a {
    color: var(--color-base-text-muted);
    text-decoration: none;
    font-size: var(--text-sm);
    transition: all 0.3s ease;
    position: relative;
}

.breadcrumb a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--color-accent-1);
}

.breadcrumb a:hover::after {
    width: 100%;
}

/* ==================== Main Container ==================== */
main {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

/* ==================== Hero Section ==================== */
.hero {
    position: relative;
    padding: var(--space-4xl) var(--space-xl) var(--space-3xl);
    background: linear-gradient(180deg, rgba(254, 244, 237, 0.5), var(--color-base-bg));
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(90deg,
            transparent,
            transparent 49px,
            rgba(224, 122, 63, 0.03) 49px,
            rgba(224, 122, 63, 0.03) 50px),
        repeating-linear-gradient(0deg,
            transparent,
            transparent 49px,
            rgba(42, 157, 143, 0.03) 49px,
            rgba(42, 157, 143, 0.03) 50px);
    pointer-events: none;
    opacity: 0.6;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.hero-text h1 {
    font-size: var(--text-4xl);
    font-weight: var(--weight-bold);
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-md);
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {

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

    50% {
        background-position: 100% 50%;
    }
}

.hero-text h3 {
    font-size: var(--text-lg);
    color: var(--color-base-text-muted);
    font-weight: var(--weight-normal);
    margin-bottom: var(--space-lg);
}

.hero-text h3 a {
    color: var(--color-accent-2);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    font-weight: var(--weight-medium);
}

.hero-text h3 a:hover {
    color: var(--color-accent-1);
    border-bottom-color: var(--color-accent-1);
}

/* ==================== SVG Illustration ==================== */
.hero-illustration {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.compass-svg {
    width: 100%;
    height: 100%;
    max-width: 500px;
}

.compass-outer {
    transform-origin: center;
    animation: rotateCompass 30s linear infinite;
}

.compass-inner {
    transform-origin: center;
    animation: rotateCompassReverse 20s linear infinite;
}

.compass-needle {
    transform-origin: center;
    animation: swingNeedle 4s ease-in-out infinite;
}

.wave-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawWave 3s ease-out forwards;
}

.floating-dot {
    animation: floatDot 3s ease-in-out infinite;
}

.plane-icon {
    animation: flyAcross 8s ease-in-out infinite;
    transform-origin: center;
}

@keyframes rotateCompass {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotateCompassReverse {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

@keyframes swingNeedle {

    0%,
    100% {
        transform: rotate(-5deg);
    }

    50% {
        transform: rotate(5deg);
    }
}

@keyframes drawWave {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes floatDot {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes flyAcross {

    0%,
    100% {
        transform: translate(0, 0) rotate(45deg);
    }

    50% {
        transform: translate(30px, -20px) rotate(45deg);
    }
}

/* ==================== Decorative Divider ==================== */
.section-divider {
    width: 120px;
    height: 4px;
    background: var(--gradient-primary);
    margin: var(--space-2xl) auto;
    border-radius: var(--radius-full);
    position: relative;
}

.section-divider::before,
.section-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: var(--color-accent-2);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(42, 157, 143, 0.4);
}

.section-divider::before {
    left: -24px;
}

.section-divider::after {
    right: -24px;
}

/* ==================== Content Section ==================== */
.content-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--space-3xl) var(--space-xl);
}

.section-title {
    font-size: var(--text-3xl);
    font-weight: var(--weight-bold);
    color: var(--color-accent-1);
    margin-bottom: var(--space-xl);
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60%;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

/* ==================== Card Grid ==================== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-2xl);
    list-style: none;
    justify-items: center;
}

.drawing-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(254, 244, 237, 0.9) 100%);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-theme);
    border: 2px solid var(--color-border);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    isolation: isolate;
    width: 100%;
    max-width: 450px;
}

/* Top accent border */
.drawing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 1;
}

.drawing-card:hover::before {
    transform: scaleX(1);
}

/* Corner frame decorations */
.drawing-card::after {
    content: '';
    position: absolute;
    inset: 12px;
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    pointer-events: none;
    transition: all 0.4s ease;
    z-index: 3;
}

.drawing-card:hover::after {
    border-color: rgba(224, 122, 63, 0.4);
    inset: 8px;
    box-shadow: 0 0 20px rgba(224, 122, 63, 0.3) inset;
}

.drawing-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(224, 122, 63, 0.3), 0 15px 25px rgba(42, 157, 143, 0.25);
    border-color: rgba(224, 122, 63, 0.5);
}

.drawing-card a {
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
}

/* ==================== Card Icon - Fixed Aspect Ratio with Better SVG Visibility ==================== */
.card-icon-wrapper {
    position: relative;
    width: 100%;
    height: 350px;
    /* Fixed height for uniform card sizes */
    overflow: hidden;
    background: linear-gradient(135deg,
            rgba(224, 122, 63, 0.15) 0%,
            rgba(42, 157, 143, 0.15) 50%,
            rgba(244, 162, 97, 0.15) 100%);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

/* Subtle pattern overlay for depth */
.card-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(90deg,
            transparent,
            transparent 19px,
            rgba(224, 122, 63, 0.04) 19px,
            rgba(224, 122, 63, 0.04) 20px),
        repeating-linear-gradient(0deg,
            transparent,
            transparent 19px,
            rgba(42, 157, 143, 0.04) 19px,
            rgba(42, 157, 143, 0.04) 20px);
    z-index: 1;
    pointer-events: none;
    opacity: 0.6;
    transition: opacity 0.4s ease;
}

.drawing-card:hover .card-icon-wrapper::before {
    opacity: 0.9;
}

/* Animated scan line effect */
.card-icon-wrapper::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg,
            transparent,
            rgba(224, 122, 63, 0.2),
            transparent);
    z-index: 2;
    pointer-events: none;
}

.drawing-card:hover .card-icon-wrapper::after {
    animation: travelScan 2s ease-in-out;
}

@keyframes travelScan {
    0% {
        top: -100%;
    }

    100% {
        top: 100%;
    }
}

.card-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
    /* Reduced padding so image takes more space */
    z-index: 2;
}

/* SVG image styling with subtle background for visibility */
.card-icon img {
    width: 90%;
    /* Image takes 90% of card space */
    height: 90%;
    object-fit: contain;
    /* Subtle white background for SVG visibility with reduced border radius */
    background: radial-gradient(ellipse at center,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(255, 255, 255, 0.90) 60%,
            rgba(255, 255, 255, 0.85) 80%,
            transparent 100%);
    border-radius: 12%;
    /* Much smaller border radius instead of 50% circle */
    padding: var(--space-lg);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.drawing-card:hover .card-icon img {
    transform: scale(1.08) rotate(2deg);
    filter: drop-shadow(0 8px 20px rgba(224, 122, 63, 0.3));
    background: radial-gradient(ellipse at center,
            rgba(255, 255, 255, 0.98) 0%,
            rgba(255, 255, 255, 0.95) 60%,
            rgba(255, 255, 255, 0.90) 80%,
            transparent 100%);
}

/* Corner frame elements */
.corner-frame {
    position: absolute;
    z-index: 3;
    pointer-events: none;
    transition: all 0.4s ease;
}

.corner-tl {
    top: 16px;
    left: 16px;
    width: 30px;
    height: 30px;
    border-top: 3px solid rgba(224, 122, 63, 0.4);
    border-left: 3px solid rgba(224, 122, 63, 0.4);
}

.corner-tr {
    top: 16px;
    right: 16px;
    width: 30px;
    height: 30px;
    border-top: 3px solid rgba(42, 157, 143, 0.4);
    border-right: 3px solid rgba(42, 157, 143, 0.4);
}

.corner-bl {
    bottom: 80px;
    /* Adjusted for new card layout with text section */
    left: 16px;
    width: 30px;
    height: 30px;
    border-bottom: 3px solid rgba(42, 157, 143, 0.4);
    border-left: 3px solid rgba(42, 157, 143, 0.4);
}

.corner-br {
    bottom: 80px;
    /* Adjusted for new card layout with text section */
    right: 16px;
    width: 30px;
    height: 30px;
    border-bottom: 3px solid rgba(224, 122, 63, 0.4);
    border-right: 3px solid rgba(224, 122, 63, 0.4);
}

.drawing-card:hover .corner-frame {
    border-color: rgba(224, 122, 63, 0.8);
    box-shadow: 0 0 15px rgba(224, 122, 63, 0.5);
}

.drawing-card:hover .corner-tl,
.drawing-card:hover .corner-br {
    width: 40px;
    height: 40px;
}

.drawing-card:hover .corner-tr,
.drawing-card:hover .corner-bl {
    width: 40px;
    height: 40px;
    border-color: rgba(42, 157, 143, 0.8);
    box-shadow: 0 0 15px rgba(42, 157, 143, 0.5);
}

/* ==================== Card Text ==================== */
.card-text {
    text-align: center;
    width: 100%;
    padding: var(--space-lg) var(--space-xl);
    background: linear-gradient(to top,
            rgba(255, 255, 255, 0.98) 0%,
            rgba(254, 244, 237, 0.95) 100%);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(224, 122, 63, 0.2);
    position: relative;
}

.card-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    opacity: 0;
    transition: all 0.4s ease;
}

.drawing-card:hover .card-text::before {
    opacity: 1;
    width: 100px;
}

.card-text span {
    font-size: var(--text-xl);
    font-weight: var(--weight-bold);
    color: var(--color-base-text);
    transition: all 0.3s ease;
    display: block;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.drawing-card:hover .card-text span {
    color: var(--color-accent-1);
    text-shadow: 0 0 20px rgba(224, 122, 63, 0.3);
    letter-spacing: 2px;
}

/* ==================== Footer ==================== */
footer {
    background: linear-gradient(180deg, transparent, rgba(224, 122, 63, 0.05));
    border-top: 1px solid var(--color-border);
    padding: var(--space-3xl) var(--space-xl) var(--space-xl);
    margin-top: var(--space-4xl);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.footer-info h4 {
    font-size: var(--text-lg);
    font-weight: var(--weight-semibold);
    color: var(--color-accent-1);
    margin-bottom: var(--space-md);
}

.footer-info p {
    color: var(--color-base-text-muted);
    font-size: var(--text-sm);
    line-height: 1.7;
}

.language-selector {
    background: rgba(255, 255, 255, 0.6);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.language-selector h4 {
    font-size: var(--text-base);
    font-weight: var(--weight-semibold);
    color: var(--color-accent-2);
    margin-bottom: var(--space-md);
}

.language-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    list-style: none;
}

.language-links a {
    color: var(--color-base-text-muted);
    text-decoration: none;
    font-size: var(--text-sm);
    padding: var(--space-xs) var(--space-md);
    background: rgba(224, 122, 63, 0.1);
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
    border: 1px solid transparent;
    font-weight: var(--weight-medium);
}

.language-links a:hover {
    background: var(--color-accent-1);
    color: white;
    border-color: var(--color-accent-1);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(224, 122, 63, 0.3);
}

.footer-bottom {
    max-width: 1400px;
    margin: var(--space-2xl) auto 0;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-border);
    text-align: center;
    color: var(--color-base-text-muted);
    font-size: var(--text-sm);
}

/* ==================== Responsive Design ==================== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .hero-illustration {
        order: -1;
        height: 300px;
    }

    .card-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .card-icon-wrapper {
        height: 320px;
    }
}

@media (max-width: 768px) {
    nav .nav-container {
        flex-direction: column;
        gap: var(--space-md);
        padding: var(--space-md);
        align-items: flex-start;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .card-icon-wrapper {
        height: 300px;
    }

    .hero {
        padding: var(--space-2xl) var(--space-md) var(--space-xl);
    }

    .content-section {
        padding: var(--space-2xl) var(--space-md);
    }
}

/* ==================== Reduced Motion ==================== */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ==================== Focus Styles for Accessibility ==================== */
a:focus,
button:focus {
    outline: 3px solid var(--color-accent-1);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

/* Remove focus outline for mouse users */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
    outline: none;
}

#langlist {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-lg, 1rem);
    padding: 0;
    margin: 0;
}

#langlist li {
    position: relative;
}

#langlist a {
    text-decoration: none;
    color: var(--text-muted, inherit);
    font-size: var(--text-sm, 0.95rem);
    letter-spacing: 0.08em;
    padding: var(--space-sm, 0.5rem) var(--space-md, 1rem);
    border-radius: 8px;
    transition: all 0.3s ease;
    display: block;
    background: rgba(212, 165, 116, 0.06);
    border: 1px solid rgba(212, 165, 116, 0.15);
    white-space: nowrap;
}

#langlist a:hover {
    background: rgba(212, 165, 116, 0.12);
    border-color: rgba(212, 165, 116, 0.3);
    color: var(--baltic-deep-amber, currentColor);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm, 0 4px 12px rgba(0, 0, 0, 0.12));
}

#langlist .highlight a {
    background: linear-gradient(135deg, var(--baltic-deep-teal, #0f766e), var(--baltic-amber, #d4a574));
    color: var(--baltic-cream, #fffaf0);
    border-color: var(--baltic-deep-amber, #b7791f);
}
