/* ===== CSS Variables - Dark Dashboard Theme ===== */
/* Following James Robinson's Dark Mode Design Guide:
   - Cool-shifted dark backgrounds (blue-tinted for nighttime feel)
   - Increased saturation in darker colors for richness
   - Edge lighting for dimensionality
   - Lighter foreground elements for depth hierarchy
   - Avoid pure black/white for better readability
*/
:root {
    /* Dark Mode Colors - Cool-shifted (blue-tinted) dark grays 
       Darker = more saturated, as per perceptual guidelines */
    --bg-primary: #0f1114;          /* Darkest - slightly blue-shifted */
    --bg-secondary: #151920;        /* Cool dark gray */
    --bg-tertiary: #1c2028;         /* Elevated surface */
    --bg-card: #1a1e26;             /* Card background - cooler tint */
    --bg-card-hover: #232830;       /* Brighter on hover for depth */
    --bg-elevated: #262b35;         /* Modal/elevated elements are lighter */
    
    /* Text Colors - Off-white, not pure white to avoid halo effect */
    --text-primary: #E2E4E8;        /* Main text - slightly warm white */
    --text-secondary: #9CA3AF;      /* Secondary - cool gray */
    --text-muted: #6B7280;          /* Muted - subtle */
    
    /* Accent Colors - Can be more saturated in dark mode 
       but still muted enough to not "vibrate" */
    --accent-blue: #6BA3D6;         /* Primary accent - cool blue */
    --accent-green: #6EBF8B;        /* Success/active - muted teal-green */
    --accent-purple: #A78BDB;       /* Highlight - soft purple */
    --accent-orange: #E8A87C;       /* Warm accent - muted coral */
    --accent-red: #E07A7A;          /* Error/alert - soft red */
    --accent-cyan: #6BCCD6;         /* Info - cool cyan */
    --accent-yellow: #D4B85A;       /* Warning - muted gold */
    --accent-teal: #5FB3AA;         /* Alternative - teal */
    
    /* Gradients - Subtle, cool-shifted */
    --gradient-blue: linear-gradient(135deg, #4A7BA7, #6BA3D6);
    --gradient-green: linear-gradient(135deg, #4A9668, #6EBF8B);
    --gradient-purple: linear-gradient(135deg, #7E65B8, #A78BDB);
    --gradient-orange: linear-gradient(135deg, #C4825A, #E8A87C);
    --gradient-header: linear-gradient(90deg, #6BA3D6, #A78BDB, #6EBF8B);
    
    /* Borders - Subtle edge lighting effect */
    --border-color: #2D333B;        /* Main border */
    --border-color-light: #3D444D;  /* Lighter for edge lighting */
    --border-glow: rgba(107, 163, 214, 0.15); /* Subtle blue glow for edges */
    
    /* Effects - Stronger shadows needed in dark mode for depth */
    --glow-blue: 0 0 20px rgba(107, 163, 214, 0.15);
    --glow-green: 0 0 20px rgba(110, 191, 139, 0.15);
    --card-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    --edge-light: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* ===== Light Mode Theme ===== */
[data-theme="light"] {
    /* Light Mode Colors - Warm, professional */
    --bg-primary: #f8fafc;          /* Off-white background */
    --bg-secondary: #f1f5f9;        /* Subtle gray */
    --bg-tertiary: #e2e8f0;         /* Elevated surface */
    --bg-card: #ffffff;             /* Pure white cards */
    --bg-card-hover: #f8fafc;       /* Subtle hover */
    --bg-elevated: #ffffff;         /* Modal/elevated elements */
    
    /* Text Colors - Dark grays for readability */
    --text-primary: #1e293b;        /* Near black */
    --text-secondary: #475569;      /* Medium gray */
    --text-muted: #94a3b8;          /* Light gray */
    
    /* Accent Colors - More vibrant for light mode */
    --accent-blue: #2563eb;         /* Primary accent - vibrant blue */
    --accent-green: #16a34a;        /* Success - green */
    --accent-purple: #7c3aed;       /* Highlight - purple */
    --accent-orange: #ea580c;       /* Warm accent - orange */
    --accent-red: #dc2626;          /* Error - red */
    --accent-cyan: #0891b2;         /* Info - cyan */
    --accent-yellow: #ca8a04;       /* Warning - gold */
    --accent-teal: #0d9488;         /* Alternative - teal */
    
    /* Gradients - Vibrant */
    --gradient-blue: linear-gradient(135deg, #2563eb, #3b82f6);
    --gradient-green: linear-gradient(135deg, #16a34a, #22c55e);
    --gradient-purple: linear-gradient(135deg, #7c3aed, #8b5cf6);
    --gradient-orange: linear-gradient(135deg, #ea580c, #f97316);
    --gradient-header: linear-gradient(90deg, #2563eb, #7c3aed, #16a34a);
    
    /* Borders */
    --border-color: #e2e8f0;        /* Light border */
    --border-color-light: #cbd5e1;  /* Slightly darker */
    --border-glow: rgba(37, 99, 235, 0.1);
    
    /* Effects - Softer shadows for light mode */
    --glow-blue: 0 0 20px rgba(37, 99, 235, 0.1);
    --glow-green: 0 0 20px rgba(22, 163, 74, 0.1);
    --card-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    --edge-light: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
}

a {
    text-decoration: none;
    color: var(--accent-blue);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-cyan);
    text-shadow: 0 0 10px rgba(88, 166, 255, 0.5);
}

ul {
    list-style: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Hero Section - Dashboard Header ===== */
.hero {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    padding: 60px 24px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple), var(--accent-green));
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at top left, rgba(88, 166, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(163, 113, 247, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* ===== Decorative Bar Chart Background ===== */
.hero-bars {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-evenly;
    padding: 0 5%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.08;
}

.hero-bars .bar {
    width: 4%;
    max-width: 40px;
    height: var(--height, 50%);
    background: linear-gradient(
        to top,
        var(--accent-blue),
        var(--accent-purple)
    );
    border-radius: 4px 4px 0 0;
    transform-origin: bottom;
    animation: barGrow 1.5s ease-out var(--delay, 0s) forwards;
    transform: scaleY(0);
}

@keyframes barGrow {
    0% {
        transform: scaleY(0);
        opacity: 0;
    }
    100% {
        transform: scaleY(1);
        opacity: 1;
    }
}

/* Light mode adjustments */
[data-theme="light"] .hero-bars {
    opacity: 0.06;
}

[data-theme="light"] .hero-bars .bar {
    background: linear-gradient(
        to top,
        var(--accent-blue),
        var(--accent-purple)
    );
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.profile-image {
    margin-bottom: 24px;
       text-align: center;
    display: flex;
    justify-content: center;
}

.profile-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--gradient-blue);
    border: 3px solid var(--accent-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: 700;
    color: white;
    box-shadow: var(--glow-blue);
}

.profile-photo {
    width: 120px;
    height: 120px;
    max-width: 120px;
    max-height: 120px;
    min-width: 120px;
    min-height: 120px;
    border-radius: 50%;
    border: 3px solid var(--accent-blue);
    object-fit: cover;
    object-position: center 20%;
    box-shadow: var(--glow-blue);
    display: block;
}

.hero h1 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--text-primary), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--accent-green);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.tagline::before {
    content: '●';
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.contact-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    padding: 10px 18px;
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent-blue);
    color: var(--text-primary);
    box-shadow: var(--glow-blue);
}

/* ===== Navigation - Dashboard Nav ===== */
.main-nav {
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.main-nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px;
    padding: 12px 20px;
}

.main-nav a {
    color: var(--text-secondary);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.main-nav a:hover {
    color: var(--text-primary);
    background: var(--bg-tertiary);
    border-color: var(--border-color);
}

/* Active nav link state */
.main-nav a.active {
    color: var(--accent-blue);
    background: rgba(107, 163, 214, 0.1);
    border-color: var(--accent-blue);
}

[data-theme="light"] .main-nav a.active {
    color: var(--accent-blue);
    background: rgba(37, 99, 235, 0.1);
    border-color: var(--accent-blue);
}

/* ===== Nav Buttons Container ===== */
.nav-buttons {
    position: absolute;
    right: 20px;
    display: flex;
    gap: 10px;
    align-items: center;
}

/* ===== Language Toggle Pill ===== */
.lang-toggle-pill {
    position: relative;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 3px;
    cursor: pointer;
    display: flex;
    align-items: center;
    height: 32px;
    transition: all 0.3s ease;
}

.lang-toggle-pill:hover {
    border-color: var(--border-color-light);
    box-shadow: var(--edge-light);
}

.lang-option {
    position: relative;
    z-index: 2;
    font-size: 0.75rem;
    font-weight: 600;
    width: 32px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--text-muted);
    border-radius: 50px;
}

.lang-option:hover {
    color: var(--text-secondary);
}

/* Active language - NL is default */
.lang-option[data-lang="nl"] {
    color: var(--text-primary);
}

.lang-option[data-lang="en"] {
    color: var(--text-muted);
}

/* When English is active */
[data-lang="en"] .lang-option[data-lang="nl"] {
    color: var(--text-muted);
}

[data-lang="en"] .lang-option[data-lang="en"] {
    color: var(--text-primary);
}

/* Slider background pill */
.lang-slider {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 32px;
    height: 26px;
    background: var(--accent-primary);
    border-radius: 50px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    opacity: 0.2;
}

/* Move slider to right when English is active */
[data-lang="en"] .lang-slider {
    transform: translateX(32px);
}

/* ===== Theme Toggle Button ===== */
.theme-toggle {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    line-height: 1;
}

.theme-toggle:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-color-light);
    transform: scale(1.05);
}

/* Show sun icon in dark mode (to switch to light) */
.theme-icon-light {
    display: none;
}

.theme-icon-dark {
    display: inline;
}

/* Show moon icon in light mode (to switch to dark) */
[data-theme="light"] .theme-icon-light {
    display: inline;
}

[data-theme="light"] .theme-icon-dark {
    display: none;
}

/* ===== Sections ===== */
.section {
    padding: 60px 24px;
}

.section-alt {
    background-color: var(--bg-secondary);
}

.section h2 {
    font-size: 1.75rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.section h2::before {
    content: '';
    width: 40px;
    height: 3px;
    background: var(--gradient-blue);
    border-radius: 2px;
}

.section h2::after {
    content: '';
    width: 40px;
    height: 3px;
    background: var(--gradient-blue);
    border-radius: 2px;
}

/* ===== Stats Dashboard ===== */
.stats-dashboard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    /* Edge lighting for dimensionality */
    box-shadow: var(--edge-light), 0 1px 3px rgba(0, 0, 0, 0.3);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
}

.stat-card.blue::before { background: var(--gradient-blue); }
.stat-card.green::before { background: var(--gradient-green); }
.stat-card.purple::before { background: var(--gradient-purple); }
.stat-card.orange::before { background: var(--gradient-orange); }

.stat-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-color-light);
    background: var(--bg-card-hover);
    box-shadow: var(--edge-light), var(--card-shadow);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.stat-card.blue .stat-value { color: var(--accent-blue); }
.stat-card.green .stat-value { color: var(--accent-green); }
.stat-card.purple .stat-value { color: var(--accent-purple); }
.stat-card.orange .stat-value { color: var(--accent-orange); }

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== About Section ===== */
.intro-text {
    font-size: 1.1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.intro-text strong {
    color: var(--accent-blue);
}

.highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    position: relative;
    z-index: 1;
}

.highlight-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 28px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    /* Edge lighting effect */
    box-shadow: var(--edge-light), 0 1px 3px rgba(0, 0, 0, 0.3);
}

.highlight-card:hover {
    border-color: var(--border-color-light);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: var(--edge-light), var(--card-shadow);
}

.highlight-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 16px;
}

.highlight-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

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

/* ===== Hexagon Grid Background (About & Skills Sections) ===== */
#over-mij,
#vaardigheden {
    position: relative;
    overflow: hidden;
}

.hexagon-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    opacity: 0.05;
    z-index: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 20px 0;
}

.hex-row {
    display: flex;
    justify-content: space-evenly;
    gap: 12px;
}

.hex-row.offset {
    margin-left: 35px;
}

.hex {
    width: 60px;
    height: 35px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    flex-shrink: 0;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    animation: hexPulse 4s ease-in-out infinite;
}

.hex:nth-child(odd) {
    animation-delay: -2s;
}

@keyframes hexPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

[data-theme="light"] .hexagon-bg {
    opacity: 0.03;
}

/* ===== Growth Line Background (Experience Section) ===== */
#werkervaring {
    position: relative;
    overflow: hidden;
}

.growth-line-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.growth-line-bg svg {
    width: 100%;
    height: 100%;
}

.growth-line {
    fill: none;
    stroke: var(--accent-green);
    stroke-width: 0.3;
    opacity: 0.15;
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: drawLine 3s ease-out forwards;
}

.growth-line-fill {
    fill: url(#growthGradient);
    opacity: 0.03;
}

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

[data-theme="light"] .growth-line {
    opacity: 0.12;
}

[data-theme="light"] .growth-line-fill {
    opacity: 0.02;
}

/* ===== Radial Pulse Background (Contact Section) ===== */
#contact {
    position: relative;
    overflow: hidden;
}

.radial-pulse-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid var(--accent-purple);
    border-radius: 50%;
    opacity: 0;
    animation: pulseExpand 4s ease-out infinite;
}

.pulse-ring:nth-child(1) {
    animation-delay: 0s;
}

.pulse-ring:nth-child(2) {
    animation-delay: 1.3s;
}

.pulse-ring:nth-child(3) {
    animation-delay: 2.6s;
}

@keyframes pulseExpand {
    0% {
        width: 50px;
        height: 50px;
        opacity: 0.3;
    }
    100% {
        width: 600px;
        height: 600px;
        opacity: 0;
    }
}

[data-theme="light"] .pulse-ring {
    border-color: var(--accent-blue);
}

/* ===== Skills Section - Dashboard Grid ===== */
.skills-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

.skill-category {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.skill-category:hover {
    border-color: var(--border-color-light);
    background: var(--bg-card-hover);
    box-shadow: var(--edge-light), var(--card-shadow);
}

.skill-category h3 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.skill-category h3::before {
    content: '▸';
    color: var(--accent-green);
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skill-tag {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.skill-tag:hover {
    border-color: var(--border-color-light);
    background: var(--bg-elevated);
    color: var(--accent-blue);
}

.skill-tag.language {
    border-color: var(--accent-green);
    color: var(--accent-green);
}

/* ===== Timeline / Work Experience ===== */
.timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent-blue), var(--accent-purple), var(--accent-green));
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 32px;
}

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

.timeline-marker {
    position: absolute;
    left: 12px;
    top: 0;
    width: 18px;
    height: 18px;
    background: var(--accent-blue);
    border-radius: 50%;
    border: 3px solid var(--bg-primary);
    box-shadow: 0 0 0 3px var(--accent-blue), var(--glow-blue);
}

.timeline-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: 12px;
    transition: all 0.3s ease;
    /* Edge lighting */
    box-shadow: var(--edge-light), 0 1px 3px rgba(0, 0, 0, 0.3);
}

.timeline-content:hover {
    border-color: var(--border-color-light);
    background: var(--bg-card-hover);
    box-shadow: var(--edge-light), var(--card-shadow);
}

.timeline-header {
    margin-bottom: 16px;
}

.timeline-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.timeline-header .company {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--accent-blue);
    margin-bottom: 8px;
}

.timeline-header .period {
    display: inline-block;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--accent-green);
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    margin-right: 8px;
}

.timeline-header .location {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.company-description {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.responsibilities h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-purple);
    margin: 20px 0 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.responsibilities h4::before {
    content: '◆';
    font-size: 0.7rem;
}

.responsibilities ul,
.timeline-content > ul {
    list-style: none;
    padding-left: 0;
}

.responsibilities li,
.timeline-content > ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.responsibilities li::before,
.timeline-content > ul li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Client Grid for BI section */
.subsection-intro {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
    padding: 16px;
    background: var(--bg-tertiary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.client-region {
    padding: 12px;
    background: var(--bg-card);
    border-radius: 8px;
    border-left: 3px solid var(--accent-blue);
}

.client-region strong {
    display: block;
    margin-bottom: 6px;
    color: var(--text-primary);
    font-size: 0.85rem;
}

.client-region .client-list {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.client-region.global {
    grid-column: 1 / -1;
    border-left-color: var(--accent-teal);
    background: rgba(95, 179, 170, 0.08);
}

/* ===== Education Section ===== */
.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.education-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    /* Edge lighting */
    box-shadow: var(--edge-light), 0 1px 3px rgba(0, 0, 0, 0.3);
}

.education-card:hover {
    border-color: var(--border-color-light);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: var(--edge-light), var(--card-shadow);
}

.education-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.education-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.education-card .institution {
    color: var(--accent-purple);
    font-weight: 500;
    margin-bottom: 4px;
    font-size: 0.9rem;
}

.education-card .period {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
}

/* ===== Hobby's Section ===== */
.hobbies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.hobby-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s ease;
    /* Edge lighting */
    box-shadow: var(--edge-light), 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hobby-card:hover {
    border-color: var(--border-color-light);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: var(--edge-light), var(--card-shadow);
}

.hobby-card.featured {
    background: linear-gradient(135deg, var(--bg-card), var(--bg-tertiary));
    border-left: 3px solid var(--accent-blue);
}

@media (min-width: 768px) {
    .hobby-card.featured {
        grid-column: span 2;
    }

    .hobby-card.featured:nth-of-type(2) {
        grid-column: span 1;
    }
}

.hobby-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.hobby-content h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.hobby-content .organization {
    color: var(--accent-blue);
    font-weight: 500;
    margin-bottom: 4px;
    font-size: 0.9rem;
}

.hobby-content .period {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 8px;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
}

.hobby-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.hobby-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}

.hobby-tag {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    color: var(--accent-cyan);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

.hobby-list {
    list-style: none;
    padding: 0;
    margin: 8px 0;
}

.hobby-list li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 6px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.hobby-list li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: 700;
}

.hobby-list li strong {
    color: var(--text-primary);
}

/* ===== Projects Section ===== */
.section-intro {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.project-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 28px;
    transition: all 0.3s ease;
    box-shadow: var(--edge-light), 0 1px 3px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.project-card:hover {
    border-color: var(--accent-blue);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: var(--edge-light), var(--card-shadow), var(--glow-blue);
}

.project-card.featured {
    border-color: var(--accent-green);
    background: linear-gradient(135deg, var(--bg-card), rgba(63, 185, 80, 0.05));
}

.project-card.featured:hover {
    border-color: var(--accent-green);
    box-shadow: var(--edge-light), var(--card-shadow), var(--glow-green);
}

.project-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.project-icon {
    font-size: 2rem;
}

.project-badge {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 20px;
    background: var(--bg-tertiary);
    color: var(--accent-blue);
    border: 1px solid var(--border-color);
}

.project-card.featured .project-badge {
    color: var(--accent-green);
    border-color: var(--accent-green);
    background: rgba(63, 185, 80, 0.1);
}

.project-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.project-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 16px;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.project-tag {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

.project-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-blue);
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.github-icon {
    font-size: 1.1rem;
}

.project-card:hover .project-link {
    color: var(--text-primary);
}

/* ===== Contact Section ===== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 28px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    /* Edge lighting */
    box-shadow: var(--edge-light), 0 1px 3px rgba(0, 0, 0, 0.3);
}

.contact-card:hover {
    border-color: var(--border-color-light);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: var(--edge-light), var(--card-shadow);
}

.contact-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 12px;
}

.contact-card h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-card a,
.contact-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-card a:hover {
    color: var(--accent-blue);
}

/* ===== Footer ===== */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    text-align: center;
    padding: 24px;
}

.footer p {
    font-size: 0.85rem;
}

/* ===== Dashboard Activity Indicator ===== */
.activity-bar {
    display: flex;
    gap: 2px;
    height: 20px;
    align-items: flex-end;
    justify-content: center;
    margin: 8px 0;
}

.activity-bar span {
    width: 4px;
    background: var(--accent-green);
    border-radius: 2px;
    animation: activity 1.5s ease-in-out infinite;
}

.activity-bar span:nth-child(1) { height: 40%; animation-delay: 0s; }
.activity-bar span:nth-child(2) { height: 70%; animation-delay: 0.2s; }
.activity-bar span:nth-child(3) { height: 50%; animation-delay: 0.4s; }
.activity-bar span:nth-child(4) { height: 90%; animation-delay: 0.6s; }
.activity-bar span:nth-child(5) { height: 60%; animation-delay: 0.8s; }

@keyframes activity {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .hero {
        padding: 40px 20px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .profile-placeholder {
        width: 100px;
        height: 100px;
        font-size: 32px;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
    }

    /* Hide bar chart on tablet/mobile for cleaner look */
    .hero-bars,
    .hexagon-bg,
    .growth-line-bg,
    .radial-pulse-bg {
        display: none;
    }

    .main-nav {
        flex-direction: column;
        padding: 12px 16px;
        gap: 12px;
    }

    .main-nav ul {
        gap: 4px;
        flex-wrap: wrap;
        justify-content: center;
        padding: 8px 0;
    }

    .main-nav a {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    /* Fix buttons overlap - make position relative */
    .nav-buttons {
        position: relative;
        right: auto;
        justify-content: center;
        order: -1;
        padding-bottom: 8px;
        border-bottom: 1px solid var(--border-color);
        width: 100%;
    }

    .section {
        padding: 40px 16px;
    }

    .section h2 {
        font-size: 1.4rem;
    }

    .timeline::before {
        left: 12px;
    }

    .timeline-item {
        padding-left: 44px;
    }

    .timeline-marker {
        left: 6px;
        width: 14px;
        height: 14px;
    }

    .hobby-card {
        flex-direction: column;
        text-align: center;
    }

    .hobby-card.featured {
        grid-column: span 1;
    }

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

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

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

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    .contact-item {
        width: 100%;
        justify-content: center;
    }

    .main-nav ul {
        gap: 4px;
    }

    .main-nav a {
        padding: 10px 14px;
        font-size: 0.8rem;
    }

    .stats-dashboard {
        grid-template-columns: 1fr;
    }

    .stat-card {
        padding: 16px;
    }

    .stat-value {
        font-size: 1.75rem;
    }

    .timeline-content h3 {
        font-size: 1rem;
    }

    .timeline-content h4 {
        font-size: 0.85rem;
    }

    .hobby-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* ===== Scrollbar Styling ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--border-color);
}

/* ===== Selection Styling ===== */
::selection {
    background: var(--accent-blue);
    color: white;
}

/* ===== Download Section ===== */
.download-section {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

/* ===== Download PDF Button ===== */
.download-pdf-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--gradient-blue);
    border: 1px solid var(--accent-blue);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--edge-light), 0 2px 8px rgba(0, 0, 0, 0.3);
}

.download-pdf-btn:hover {
    background: var(--bg-elevated);
    border-color: var(--border-color-light);
    transform: translateY(-2px);
    box-shadow: var(--edge-light), var(--card-shadow);
}

.download-pdf-btn:active {
    transform: translateY(0);
}

.download-pdf-btn .icon {
    font-size: 1.1rem;
}

/* ===== Print Styles for PDF Export ===== */
@media print {
    /* A4 page setup */
    @page {
        size: A4;
        margin: 10mm;
    }
    
    /* Reset for print */
    * {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }
    
    body {
        background: white !important;
        color: #1a1a1a !important;
        font-size: 9pt;
        line-height: 1.3;
    }
    
    /* Hide non-essential elements for compact PDF */
    .main-nav,
    .download-pdf-btn,
    .download-section,
    .activity-bar,
    .footer,
    .stats-dashboard,
    .highlights,
    .theme-toggle,
    .lang-toggle-pill,
    .nav-buttons,
    #contact {
        display: none !important;
    }
    
    /* Reset dark mode colors for print */
    .hero,
    .section,
    .section-alt {
        background: white !important;
        padding: 8px 0 !important;
    }
    
    .hero {
        padding: 12px 0 !important;
    }
    
    .hero::before,
    .hero::after {
        display: none !important;
    }
    
    /* Compact hero */
    .profile-image {
        display: none !important;
    }
    
    .hero h1 {
        background: none !important;
        -webkit-text-fill-color: #1a1a1a !important;
        color: #1a1a1a !important;
        font-size: 18pt;
        margin-bottom: 2px !important;
    }
    
    .tagline {
        color: #1e40af !important; /* Darker blue for print */
        font-size: 10pt !important;
        margin-bottom: 2px !important;
    }
    
    .tagline::before {
        display: none !important;
    }
    
    .subtitle {
        font-size: 9pt !important;
        margin-bottom: 8px !important;
    }
    
    .contact-info {
        gap: 6px !important;
    }
    
    /* Hide LinkedIn in print */
    .linkedin-item {
        display: none !important;
    }
    
    .contact-item {
        padding: 4px 10px !important;
        font-size: 8pt !important;
        background: #f3f4f6 !important;
        border-color: #e5e7eb !important;
        color: #1a1a1a !important; /* Darker text */
    }
    
    .subtitle,
    .intro-text,
    p,
    li {
        color: #1a1a1a !important; /* Pure dark for print */
        font-size: 9pt !important;
    }
    
    .intro-text {
        margin-bottom: 12px !important;
    }
    
    /* Compact section headers - prevent orphaned headers */
    .section h2 {
        color: #1a1a1a !important;
        font-size: 11pt;
        border-bottom: 2px solid #1e40af; /* Darker blue */
        padding-bottom: 4px;
        margin-bottom: 10px !important;
        page-break-after: avoid !important;
        break-after: avoid !important;
    }
    
    /* Ensure sections stay together with their headers */
    .section {
        page-break-before: auto !important;
        break-before: auto !important;
    }
    
    .section h2::before,
    .section h2::after {
        display: none !important;
    }
    
    /* Compact skills - inline layout */
    .skills-container {
        display: block !important;
    }
    
    .skill-category {
        background: transparent !important;
        border: none !important;
        padding: 4px 0 !important;
        margin-bottom: 4px !important;
        box-shadow: none !important;
    }
    
    .skill-category h3 {
        font-size: 9pt !important;
        color: #1a1a1a !important; /* Dark text for print */
        font-weight: 600 !important;
        margin-bottom: 4px !important;
        padding-bottom: 2px !important;
        border-bottom: none !important;
        page-break-after: avoid !important;
        break-after: avoid !important;
    }
    
    .skill-category h3::before {
        display: none !important;
    }
    
    .skill-tags {
        gap: 4px !important;
    }
    
    .skill-tag {
        background: #f3f4f6 !important;
        border: 1px solid #d1d5db !important;
        color: #1a1a1a !important; /* Dark text for print */
        padding: 2px 6px !important;
        font-size: 8pt !important;
    }
    
    /* Compact timeline */
    .timeline {
        max-width: 100% !important;
    }
    
    .timeline::before {
        display: none !important;
    }
    
    .timeline-marker {
        display: none !important;
    }
    
    .timeline-item {
        padding-left: 0 !important;
        margin-bottom: 10px !important;
        page-break-inside: avoid !important;
        break-inside: avoid !important;
    }
    
    .timeline-content {
        background: transparent !important;
        border: none !important;
        border-left: 2px solid #2563eb !important;
        border-radius: 0 !important;
        padding: 4px 0 4px 12px !important;
        box-shadow: none !important;
    }
    
    .timeline-header {
        margin-bottom: 6px !important;
        page-break-after: avoid !important;
        break-after: avoid !important;
    }
    
    .timeline-header h3 {
        font-size: 10pt !important;
        color: #1a1a1a !important;
        margin-bottom: 2px !important;
        page-break-after: avoid !important;
        break-after: avoid !important;
    }
    
    .timeline-header .company {
        font-size: 9pt !important;
        color: #1a1a1a !important; /* Dark text for print */
        font-weight: 500 !important;
        margin-bottom: 2px !important;
    }
    
    .timeline-header .period {
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
        font-size: 8pt !important;
        color: #1a1a1a !important; /* Dark text for print */
    }
    
    .company-description {
        font-size: 8pt !important;
        margin-bottom: 6px !important;
        padding-bottom: 6px !important;
        color: #1a1a1a !important; /* Dark text for print */
    }
    
    .responsibilities h4 {
        font-size: 9pt !important;
        margin: 8px 0 4px !important;
        color: #1a1a1a !important; /* Dark text for print */
        font-weight: 600 !important;
        page-break-after: avoid !important;
        break-after: avoid !important;
    }
    
    .responsibilities {
        page-break-inside: avoid !important;
        break-inside: avoid !important;
    }
    
    .responsibilities li,
    .timeline-content > ul li {
        font-size: 8pt !important;
        margin-bottom: 2px !important;
        padding-left: 12px !important;
    }
    
    /* Client grid compact */
    .client-grid {
        background: transparent !important;
        padding: 8px !important;
        gap: 6px !important;
        border: 1px solid #e5e7eb !important;
    }
    
    .client-region {
        padding: 6px !important;
        background: transparent !important;
    }
    
    .client-region strong {
        font-size: 8pt !important;
        color: #1a1a1a !important; /* Dark text for print */
        font-weight: 600 !important;
    }
    
    .client-region .client-list {
        font-size: 7pt !important;
        color: #1a1a1a !important; /* Dark text for print */
    }
    
    /* Compact education - grid */
    .education-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
    }
    
    .education-card {
        background: transparent !important;
        border: none !important;
        border-left: 2px solid #8b5cf6 !important;
        border-radius: 0 !important;
        padding: 4px 0 4px 10px !important;
        text-align: left !important;
        box-shadow: none !important;
    }
    
    .education-icon {
        display: none !important;
    }
    
    .education-card h3 {
        font-size: 9pt !important;
        margin-bottom: 1px !important;
        color: #1a1a1a !important; /* Dark text for print */
    }
    
    .education-card .institution {
        font-size: 8pt !important;
        color: #1a1a1a !important; /* Dark text for print */
    }
    
    .education-card .period {
        font-size: 7pt !important;
        color: #1a1a1a !important; /* Dark text for print */
    }
    
    /* Compact hobbies - smaller grid */
    .hobbies-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 6px !important;
    }
    
    .hobby-card {
        background: transparent !important;
        border: none !important;
        padding: 4px !important;
        gap: 8px !important;
        box-shadow: none !important;
    }
    
    .hobby-card.featured {
        grid-column: span 1 !important;
        background: transparent !important;
        border: none !important;
        border-left: none !important;
    }
    
    .hobby-icon {
        font-size: 1rem !important;
    }
    
    .hobby-content h3 {
        font-size: 9pt !important;
        margin-bottom: 1px !important;
        color: #1a1a1a !important;
    }
    
    .hobby-content .organization {
        font-size: 8pt !important;
        color: #1a1a1a !important; /* Dark text for print */
    }
    
    .hobby-content .period {
        font-size: 7pt !important;
        margin-bottom: 2px !important;
        color: #1a1a1a !important; /* Dark text for print */
    }
    
    .hobby-content p {
        font-size: 8pt !important;
        margin-bottom: 0 !important;
        color: #1a1a1a !important; /* Dark text for print */
    }
    
    .hobby-list {
        margin: 2px 0 !important;
    }
    
    .hobby-list li {
        font-size: 7pt !important;
        margin-bottom: 1px !important;
        color: #1a1a1a !important; /* Dark text for print */
    }
    
    .hobby-list li strong {
        color: #1a1a1a !important; /* Dark text for print */
    }
    
    .hobby-tags {
        display: none !important;
    }
    
    /* Page break control - keep headers with their content */
    .section {
        page-break-inside: auto !important;
    }
    
    /* Keep these elements together on same page */
    .timeline-item,
    .education-card,
    .hobby-card,
    .skill-category {
        page-break-inside: avoid !important;
        break-inside: avoid !important;
    }
    
    /* Keep headers attached to following content */
    h2, h3, h4 {
        page-break-after: avoid !important;
        break-after: avoid !important;
        orphans: 3;
        widows: 3;
    }
    
    /* Prevent single lines at end/start of pages */
    p, li {
        orphans: 2;
        widows: 2;
    }
    
    /* Reduce margins */
    .container {
        max-width: 100% !important;
        padding: 0 !important;
    }
    
    /* Projects section - text-based layout for print */
    .projects-grid {
        display: block !important;
    }
    
    .project-card {
        display: block !important;
        background: transparent !important;
        border: none !important;
        border-left: 2px solid #10b981 !important;
        border-radius: 0 !important;
        padding: 4px 0 4px 12px !important;
        margin-bottom: 8px !important;
        box-shadow: none !important;
        text-decoration: none !important;
    }
    
    .project-card.featured {
        border-left-color: #f59e0b !important;
    }
    
    .project-header {
        display: none !important;
    }
    
    .project-card h3 {
        font-size: 10pt !important;
        color: #1a1a1a !important;
        margin-bottom: 2px !important;
    }
    
    .project-card p {
        font-size: 8pt !important;
        color: #1a1a1a !important;
        margin-bottom: 4px !important;
    }
    
    .project-tags {
        display: inline !important;
    }
    
    .project-tag {
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
        font-size: 7pt !important;
        color: #4b5563 !important;
    }
    
    .project-tag::after {
        content: ", ";
    }
    
    .project-tag:last-child::after {
        content: "";
    }
    
    .project-link {
        display: none !important;
    }
    
    .section-intro {
        font-size: 8pt !important;
        color: #1a1a1a !important;
        margin-bottom: 10px !important;
    }
}
