:root {
    --bg-color: #1A1A1A;
    --text-primary: #D1D5DB;
    --text-secondary: #9ca3af;
    /* Slightly darker than primary for secondary text */
    --accent-blue: #D4AF37;
    --default-btn-color: #D4AF37;
    --accent-blue-glow: rgba(212, 175, 55, 0.4);
    --accent-gradient: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    /* Gold/Yellow gradient */
    --strava-orange: #fc4c02;
    /* Apple Frosted Glass - Dark Mode */
    --glass-bg: rgba(26, 26, 26, 0.35);
    /* Noch etwas transparenter */
    /* Adjusted to new background */
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-blur: blur(40px);
    --shadow-color: rgba(0, 0, 0, 0.6);
    --glass-reflection: inset 0 1px 1px rgba(255, 255, 255, 0.15), inset 0 0 20px rgba(255, 255, 255, 0.02);
    --nav-scrolled: rgba(26, 26, 26, 0.8);
    --panel-bg-1: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(26, 26, 26, 0.7));
    --panel-bg-2: linear-gradient(225deg, rgba(255, 255, 255, 0.05), rgba(26, 26, 26, 0.6));
    --bag-bg-1: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent);
    --bag-bg-2: linear-gradient(225deg, rgba(212, 175, 55, 0.08), transparent);
    --transition: all 0.3s ease;
}

body.light-mode {
    --bg-color: #FDFCFB;
    --text-primary: #3E3B39;
    --text-secondary: #5a5755;
    /* Slightly lighter than primary for secondary text */
    --accent-blue: #6B8E23;
    --default-btn-color: #6B8E23;
    --accent-blue-glow: rgba(107, 142, 35, 0.2);
    --accent-gradient: linear-gradient(135deg, #6B8E23 0%, #556b2f 100%);
    /* Olive green gradient */
    /* Apple Frosted Glass - Light Mode */
    --glass-bg: rgba(253, 252, 251, 0.65);
    /* Adjusted to new background */
    --glass-border: rgba(255, 255, 255, 1);
    --glass-blur: blur(50px);
    --shadow-color: rgba(62, 59, 57, 0.08);
    --glass-reflection: inset 0 1px 1px rgba(255, 255, 255, 1), inset 0 0 20px rgba(255, 255, 255, 0.5);
    --nav-scrolled: rgba(253, 252, 251, 0.8);
    --panel-bg-1: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(245, 245, 240, 0.95));
    --panel-bg-2: linear-gradient(225deg, rgba(107, 142, 35, 0.1), rgba(255, 255, 255, 0.95));
    --bag-bg-1: linear-gradient(135deg, rgba(0, 0, 0, 0.02), transparent);
    --bag-bg-2: linear-gradient(225deg, rgba(107, 142, 35, 0.05), transparent);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
    /* Hide default cursor */
}

html {
    scroll-behavior: smooth;
}

/* Pill Navigation */
.pill-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    /* Icons touch each other slightly like a pill */
    background: var(--glass-bg);
    /* Glassmorphism base */
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: 50px;
    padding: 5px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px var(--shadow-color);
    position: relative;
    list-style: none;
}

.pill-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    height: 46px;
    border-radius: 23px;
    gap: 8px;
    color: var(--text-secondary);
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    /* Negative margin to overlap slightly like the reference */
    margin: 0 -2px;
    background: transparent;
    z-index: 1;
}

.pill-nav .nav-text {
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.pill-nav a:hover:not(.active) {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.15);
    /* Subtle glass highlight */
    z-index: 2;
    /* Bring hovered above others */
    transform: scale(1.05);
}

.pill-nav a.active {
    color: var(--bg-color);
    /* Inverted icon color */
    background: var(--text-primary);
    /* Solid background */
    z-index: 3;
    /* Highest z-index for active */
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

body.light-mode .pill-nav a:hover:not(.active) {
    color: var(--text-primary);
    background: rgba(0, 0, 0, 0.08);
}

body.light-mode .pill-nav a.active {
    color: var(--bg-color);
    background: var(--text-primary);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.pill-nav svg {
    width: 22px;
    height: 22px;
    transition: transform 0.3s ease;
}

.pill-nav a:hover svg {
    transform: scale(1.1);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

body {
    background-color: var(--bg-color);
    background-image:
        radial-gradient(circle at 10% 40%, rgba(212, 175, 55, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 90% 70%, rgba(184, 134, 11, 0.08) 0%, transparent 60%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-attachment: fixed;
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
    transition: background-color 0.5s ease, color 0.5s ease;
}

body.light-mode {
    background-image:
        radial-gradient(circle at 20% 30%, rgba(107, 142, 35, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(85, 107, 47, 0.06) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

::selection {
    background-color: var(--accent-blue-glow);
    /* Dezentere Farbe für Textmarkierung */
    color: var(--text-primary);
}

/* Noise Overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.03;
    /* Very subtle */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

body.light-mode .noise-overlay {
    opacity: 0.04;
}

/* Sticky Side Navigation */
.side-nav {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 8900;
    /* Below cursor and top nav, above content */
}

@media (max-width: 1024px) {
    .side-nav {
        display: none;
        /* Hide on smaller screens */
    }
}

.side-nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--glass-border);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.side-nav-dot::before {
    content: attr(title);
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: var(--nav-scrolled);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.side-nav-dot:hover {
    transform: scale(1.5);
    background-color: var(--accent-blue);
    box-shadow: 0 0 10px var(--accent-blue-glow);
}

.side-nav-dot:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.side-nav-dot.active {
    background-color: var(--accent-blue);
    transform: scale(1.3);
    box-shadow: 0 0 10px var(--accent-blue-glow);
}

.side-nav-dot.active::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 1px solid var(--accent-blue);
    border-radius: 50%;
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* Minimalist Magnetic Cursor */
.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent-blue);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    /* CSS transform handles movement for high performance */
    transform: translate(-50%, -50%);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1),
        height 0.3s cubic-bezier(0.16, 1, 0.3, 1),
        background-color 0.3s,
        border-color 0.3s,
        mix-blend-mode 0.3s;
}

/* Base outline transition for smooth lag implemented in JS */

h1,
h2,
h3,
h4 {
    font-weight: 600;
    line-height: 1.2;
}

.italic-speed {
    font-style: italic;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.speed-text {
    font-family: 'Syncopate', sans-serif;
    font-size: 3rem;
    text-transform: uppercase;
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.3), 0 0 20px rgba(0, 119, 255, 0.2);
}

body.light-mode .speed-text {
    color: var(--accent-blue);
    text-shadow: none;
}

.accent-text {
    color: var(--accent-blue);
    text-shadow: 0 0 20px var(--accent-blue-glow);
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    /* Slightly softer Apple-like corners */
    box-shadow: 0 10px 40px var(--shadow-color), var(--glass-reflection);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 4rem 1.5rem;
    }
}

/* Nav */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9000;
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
    /* Make the taskbar fully visible and solid/glass right from the top */
    background: var(--nav-scrolled);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

body.light-mode .navbar {
    background: var(--nav-scrolled);
}

.navbar .nav-container {
    width: 100%;
    padding: 2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: padding 0.5s ease;
}

.navbar.scrolled {
    background: var(--nav-scrolled);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.navbar.scrolled .nav-container {
    padding: 1rem 3rem;
}

.scroll-progress-container {
    height: 3px;
    width: 100%;
    background: transparent;
    position: absolute;
    bottom: 0;
    left: 0;
}

.scroll-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--accent-gradient);
    box-shadow: 0 0 10px var(--accent-blue-glow);
    transition: width 0.1s ease;
}

.logo {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
    filter: drop-shadow(0 0 5px rgba(14, 165, 233, 0.2));
}

.logo:hover {
    transform: scale(1.05) rotate(-2deg);
    filter: drop-shadow(0 0 15px var(--accent-blue-glow));
}

@keyframes logoSpinPulse {
    0% {
        transform: scale(1) rotate(0deg);
    }

    50% {
        transform: scale(1.2) rotate(180deg);
        filter: drop-shadow(0 0 30px var(--accent-blue));
    }

    100% {
        transform: scale(1) rotate(360deg);
    }
}

.logo.logo-spin {
    animation: logoSpinPulse 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0;
}

.theme-toggle-btn {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    box-shadow: 0 5px 15px var(--shadow-color);
    cursor: none;
    color: var(--text-primary);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    width: 44px;
    height: 44px;
}

.theme-toggle-btn:hover::before {
    opacity: 1;
    transform: scale(1);
}

.theme-icon-container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.theme-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.3s ease;
}

.theme-toggle-btn:hover .theme-icon {
    color: var(--accent-blue);
}

/* Set up the two paths */
.path-dark,
.path-light {
    transition: var(--transition);
    transform-origin: center;
}

/* Default (Dark Mode active = Heartbeat showing, Sun hidden) */
.path-dark {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.path-light {
    opacity: 0;
    transform: scale(0.5) rotate(-90deg);
}

/* When Light Mode is active = Sun showing, Heartbeat hidden */
body.light-mode .path-dark {
    opacity: 0;
    transform: scale(0.5) rotate(90deg);
}

body.light-mode .path-light {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

/* Rotate the whole icon container slightly on toggle for extra pop */
body.light-mode .theme-icon {
    transform: rotate(360deg);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: var(--transition);
    cursor: none;
    border: none;
}

.btn-primary {
    background: var(--accent-gradient);
    color: #000;
    box-shadow: 0 4px 15px var(--accent-blue-glow);
    border: 1px solid transparent;
}

.btn-primary:hover {
    box-shadow: 0 6px 25px var(--accent-blue-glow);
    transform: translateY(-3px) scale(1.02);
    color: #fff;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--accent-blue);
    color: var(--accent-blue);
}

.btn-outline:hover {
    background: var(--accent-blue);
    color: #000;
    box-shadow: 0 0 20px var(--accent-blue-glow);
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    position: relative;
    padding: 0 10%;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 50vw;
    height: 100vh;
    background: radial-gradient(circle at right center, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    opacity: 0;
    transform: translateX(-50px);
    /* Softer, more luxurious float-in */
    animation: slideInSpeed 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 0.5s;
    position: relative;
    z-index: 2;
}

/* Hero Portrait Image Setup */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hero-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    /* Softly blends the bottom of the cut-out image into the background */
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-image-container:hover .hero-image {
    transform: scale(1.05);
    /* Slight zoom on hover */
}

.hero-image-backdrop {
    position: absolute;
    top: 10%;
    left: 10%;
    right: 10%;
    bottom: 0;
    background: var(--accent-gradient);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    filter: blur(50px);
    opacity: 0.4;
    animation: blobMorph 8s infinite alternate ease-in-out;
    z-index: 1;
}

@keyframes blobMorph {
    0% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        transform: scale(1);
    }

    100% {
        border-radius: 60% 40% 30% 70% / 60% 50% 40% 50%;
        transform: scale(1.05);
    }
}

/* Global Animations */
@keyframes slideInSpeed {
    0% {
        opacity: 0;
        transform: translateX(-100px) skewX(10deg);
        filter: blur(10px);
    }

    100% {
        opacity: 1;
        transform: translateX(0) skewX(0);
        filter: blur(0);
    }
}

@keyframes fadeInBlur {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.92);
        filter: blur(12px);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes slideUpSpeed {
    0% {
        opacity: 0;
        transform: translateY(80px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.anim-fade-in-blur {
    opacity: 0;
    will-change: transform, opacity, filter;
}

.anim-fade-in-blur.visible {
    animation: fadeInBlur 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.anim-slide-up {
    opacity: 0;
    will-change: transform, opacity;
}

.anim-slide-up.visible {
    animation: slideUpSpeed 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.anim-delay-1 {
    animation-delay: 0.1s;
}

.anim-delay-2 {
    animation-delay: 0.2s;
}

.anim-delay-3 {
    animation-delay: 0.3s;
}

.anim-delay-4 {
    animation-delay: 0.4s;
}

.hero-title {
    font-size: clamp(4rem, 8vw, 8rem);
    margin-bottom: 0;
    line-height: 0.9;
    letter-spacing: -3px;
    margin-left: -5px;
}

.hero-subtitle {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 300;
    margin-top: 1rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
    max-width: 600px;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 500px;
    position: relative;
    padding-left: 20px;
}

.hero-desc::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    height: calc(100% - 20px);
    width: 2px;
    background: var(--accent-blue);
}

/* Sections */
.section-header {
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header.center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.line {
    width: 60px;
    height: 3px;
    background: var(--accent-blue);
    box-shadow: 0 0 10px var(--accent-blue-glow);
}

/* About - Unique Bento Box Style */
.about-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, minmax(200px, auto));
    gap: 1.5rem;
}

.about-card {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-card:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

/* Entferne den blauen Glow oder sonstige Pseudo-Elemente komplett */
.about-card::after {
    display: none;
}

.about-card:nth-child(1) {
    grid-column: span 4;
    grid-row: 1;
}

.about-card:nth-child(2) {
    grid-column: span 8;
    grid-row: 1;
    background: var(--panel-bg-1);
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 2rem 1rem;
}

.text-card {
    grid-column: span 12;
    grid-row: 2;
    text-align: left;
    align-items: flex-start;
    padding: 4rem;
    background: var(--panel-bg-2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.text-card:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.text-card p {
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--text-primary);
    font-weight: 300;
    max-width: 900px;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

.text-card:hover p {
    color: #ffffff;
    text-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
}

body.light-mode .text-card:hover p {
    color: #000000;
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
}

.text-card p strong {
    color: var(--accent-blue);
    font-weight: 400;
}

@media (max-width: 768px) {
    .text-card {
        padding: 2.5rem;
    }

    .text-card p {
        font-size: 1.15rem;
    }
}

.card-label {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.card-value {
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1;
    color: var(--text-primary);
    font-family: 'Syncopate', sans-serif;
    word-break: break-word;
    /* Prevent long words from breaking the box */
}

@media (max-width: 768px) {
    .about-card {
        padding: 2rem;
    }
}

.about-card:nth-child(2) .card-value {
    color: var(--text-primary);
}

/* Timeline - Alternating Layout */
.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--accent-blue), transparent);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    width: 50%;
    opacity: 0;
    /* Soft, floating reveal */
    transition: all 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.timeline-item.left {
    left: 0;
    padding-right: 50px;
    transform: translateX(-50px) translateY(20px);
}

.timeline-item.right {
    left: 50%;
    padding-left: 50px;
    transform: translateX(50px) translateY(20px);
}

.timeline-item.visible {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

.timeline-dot {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--bg-color);
    border: 4px solid var(--accent-blue);
    box-shadow: 0 0 15px var(--accent-blue-glow);
    z-index: 2;
    transition: var(--transition);
}

.timeline-item.left .timeline-dot {
    right: -10px;
}

.timeline-item.right .timeline-dot {
    left: -10px;
}

.timeline-item:hover .timeline-dot {
    background: var(--accent-blue);
    transform: translateY(-50%) scale(1.3);
}

.timeline-content {
    padding: 2.5rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item:hover .timeline-content {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

/* Arrow pointers for the cards */
.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-style: solid;
}

.timeline-item.left .timeline-content::before {
    right: -15px;
    border-width: 15px 0 15px 15px;
    border-color: transparent transparent transparent var(--glass-border);
}

.timeline-item.right .timeline-content::before {
    left: -15px;
    border-width: 15px 15px 15px 0;
    border-color: transparent var(--glass-border) transparent transparent;
}

.timeline-date {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--accent-blue-glow);
    color: var(--text-primary);
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(14, 165, 233, 0.3);
}

@media (max-width: 768px) {
    .timeline-container::before {
        left: 30px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 80px;
        padding-right: 0;
    }

    .timeline-item.left,
    .timeline-item.right {
        left: 0;
        transform: translateX(0) translateY(20px);
    }

    .timeline-item.left .timeline-dot,
    .timeline-item.right .timeline-dot {
        left: 20px;
        right: auto;
    }

    .timeline-item.left .timeline-content::before,
    .timeline-item.right .timeline-content::before {
        left: -15px;
        border-width: 15px 15px 15px 0;
        border-color: transparent var(--glass-border) transparent transparent;
    }
}

/* Cycling */
/* Sports Dual Section */
.sports-dual {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.sport-card {
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
}

.sport-card:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.sport-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px var(--accent-blue-glow));
}

.sport-image-container {
    width: 100%;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    position: relative;
}

.sport-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sport-card:hover .sport-image {
    transform: scale(1.05);
}

.sport-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--accent-blue);
}

.sport-card p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Two Bags */
.split-screen {
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    min-height: 400px;
    position: relative;
}

.separator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--bg-color);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-style: italic;
    color: var(--accent-blue);
    z-index: 10;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
    pointer-events: none;
}

.split-screen:hover .separator,
.split-screen-container:hover .separator {
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.3);
    transform: translate(-50%, -50%) scale(1.1);
}

.bag-panel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    transition: var(--transition);
    position: relative;
}

.bag-panel:hover {
    flex: 1.2;
}

.medic-bag {
    background: var(--bag-bg-1);
}

.saddle-bag {
    background: var(--bag-bg-2);
}

.bag-content h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.bag-items {
    list-style: none;
}

.bag-items li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.bag-items li:last-child {
    border-bottom: none;
}

/* Two Worlds Section */
.two-worlds {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.split-screen-container {
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    min-height: 500px;
    position: relative;
    margin-top: 3rem;
}

.world-panel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
}

.world-panel:hover {
    flex: 1.4;
}

.nursing-panel {
    background: var(--panel-bg-1);
}

.nursing-panel .panel-content {
    margin-right: 40px;
}

.sports-panel {
    background: var(--panel-bg-2);
}

.sports-panel .panel-content {
    margin-left: 40px;
}

.panel-content {
    position: relative;
    z-index: 2;
    max-width: 400px;
    opacity: 0.8;
    transform: scale(0.95);
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.world-panel:hover .panel-content {
    opacity: 1;
    transform: scale(1);
}

.world-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.2));
}

.world-image-container {
    width: 100%;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.world-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: transform 0.7s ease;
}

.world-panel:hover .world-image {
    transform: scale(1.08);
}

.sports-panel .world-icon {
    filter: drop-shadow(0 0 15px var(--accent-blue-glow));
}

.world-panel h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.sports-panel h3 {
    color: var(--accent-blue);
}

.world-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.world-traits {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.world-traits li {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    border: 1px solid var(--glass-border);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.sports-panel .world-traits li {
    border-color: rgba(0, 229, 255, 0.2);
    color: var(--accent-blue);
}

@media (max-width: 900px) {
    .split-screen-container {
        flex-direction: column;
    }

    .separator {
        display: none;
    }

    .world-panel {
        min-height: 400px;
    }

    .nursing-panel .panel-content,
    .sports-panel .panel-content {
        margin: 0;
    }

    /* Mobile Timeline Adjustments */
    .timeline-container::before {
        left: 30px;
        transform: none;
    }

    .timeline-item {
        width: 100%;
        margin-bottom: 3rem;
    }

    .timeline-item.left,
    .timeline-item.right {
        left: 0;
        padding-left: 70px;
        padding-right: 0;
        transform: translateX(-30px) translateY(20px);
    }

    .timeline-item.visible {
        transform: translateX(0) translateY(0);
    }

    .timeline-item.left .timeline-dot,
    .timeline-item.right .timeline-dot {
        left: 20px;
        right: auto;
    }

    .timeline-item.left .timeline-content::before,
    .timeline-item.right .timeline-content::before {
        left: -15px;
        right: auto;
        border-width: 15px 15px 15px 0;
        border-color: transparent var(--glass-border) transparent transparent;
    }

    /* Mobile About Section Adjustments */
    .about-card {
        padding: 2rem;
    }

    .about-card:nth-child(1),
    .about-card:nth-child(2),
    .text-card {
        grid-column: span 12;
    }

    .about-card:nth-child(2) {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
}

/* Strava Integration - Bento Style */
.strava-section {
    position: relative;
    padding-bottom: 6rem;
}

.strava-bento {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    padding: 4rem;
    background: linear-gradient(135deg, rgba(252, 76, 2, 0.05), var(--glass-bg));
    border-color: rgba(252, 76, 2, 0.2);
    position: relative;
    overflow: hidden;
}

.strava-bento::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(252, 76, 2, 0.1) 0%, transparent 60%);
    transform: rotate(-15deg);
    pointer-events: none;
}

.strava-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.strava-pulse {
    position: relative;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(252, 76, 2, 0.3);
    animation: stravaPulse 3s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.pulse-ring.delay {
    animation-delay: 1.5s;
}

@keyframes stravaPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.pulse-core {
    position: relative;
    width: 100px;
    height: 100px;
    background: var(--strava-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(252, 76, 2, 0.6);
    z-index: 2;
}

.strava-icon-large {
    width: 45px;
    height: 45px;
    color: white;
}

.strava-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.strava-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.strava-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 400px;
}

.strava-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-item {
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(252, 76, 2, 0.1);
    display: flex;
    flex-direction: column;
}

body.light-mode .stat-item {
    background: rgba(255, 255, 255, 0.5);
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: 0.3rem;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Syncopate', sans-serif;
}

.stat-value.highlight {
    color: var(--strava-orange);
}

.strava-orange-btn {
    background: var(--strava-orange);
    color: #fff;
    box-shadow: 0 0 20px rgba(252, 76, 2, 0.3);
    align-self: flex-start;
}

.strava-orange-btn:hover {
    background: #fff;
    color: var(--strava-orange);
    box-shadow: 0 0 30px rgba(252, 76, 2, 0.5);
}

/* Strava Loading Screen Overlay */
.glass-loader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.glass-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80%;
    max-width: 600px;
}

.loader-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--accent-blue);
    text-align: center;
    text-shadow: 0 0 20px var(--accent-blue-glow);
}

.mountain-scene {
    position: relative;
    width: 100%;
    height: 120px;
    margin-bottom: 2rem;
    overflow: hidden;
    border-bottom: 2px solid var(--glass-border);
}

.mountain-svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
}

.loader-bike {
    position: absolute;
    bottom: 2px;
    left: -10%;
    width: 40px;
    height: 40px;
    color: var(--accent-blue);
    filter: drop-shadow(0 0 10px var(--accent-blue-glow));
}

/* 3-second journey reproducing a mountain climb */
@keyframes rideMountain {
    0% {
        left: -10%;
        bottom: 2px;
        transform: rotate(0deg);
    }

    15% {
        left: 15%;
        bottom: 2px;
        transform: rotate(0deg);
    }

    30% {
        left: 31%;
        bottom: 35px;
        transform: rotate(-35deg);
    }

    45% {
        left: 45%;
        bottom: 12px;
        transform: rotate(45deg);
    }

    60% {
        left: 60%;
        bottom: 60px;
        transform: rotate(-30deg);
    }

    75% {
        left: 71%;
        bottom: 25px;
        transform: rotate(50deg);
    }

    85% {
        left: 85%;
        bottom: 2px;
        transform: rotate(0deg);
    }

    100% {
        left: 110%;
        bottom: 2px;
        transform: rotate(0deg);
    }
}

.loader-bike.riding {
    animation: rideMountain 2.8s linear forwards;
}

.loader-progress-bar {
    width: 100%;
    height: 4px;
    background: var(--glass-bg);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.loader-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--accent-gradient);
    box-shadow: 0 0 15px var(--accent-blue-glow);
}

@keyframes loadProgress {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

.loader-progress-fill.loading {
    animation: loadProgress 2.8s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

@media (max-width: 768px) {
    .strava-bento {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
        text-align: center;
    }

    .strava-content {
        align-items: center;
    }

    .strava-orange-btn {
        align-self: center;
    }
}

/* Footer */
.footer {
    border-top: 1px solid var(--glass-border);
    padding: 6rem 0 2rem;
    text-align: center;
}

.footer h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.footer p {
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 3rem;
}

.email-link {
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent-blue);
    text-decoration: none;
    position: relative;
    display: inline-block;
    margin-bottom: 5rem;
}

.email-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-blue);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.email-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-card:nth-child(1),
    .about-card:nth-child(2),
    .text-card {
        grid-column: span 1;
    }

    .split-screen {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 3rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .speed-text {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .split-screen-container {
        flex-direction: column;
    }

    .world-panel {
        width: 100%;
        height: 60px;
    }
}

/* --- THEMS --- */
:root[data-theme="blue"] {
    --accent-blue: #0ea5e9;
    --accent-blue-glow: rgba(14, 165, 233, 0.4);
    --accent-gradient: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
}

:root[data-theme="blue"] body.light-mode {
    --accent-blue: #0284c7;
    --accent-blue-glow: rgba(2, 132, 199, 0.2);
    --accent-gradient: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
}

:root[data-theme="green"] {
    --accent-blue: #10b981;
    --accent-blue-glow: rgba(16, 185, 129, 0.4);
    --accent-gradient: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

:root[data-theme="green"] body.light-mode {
    --accent-blue: #059669;
    --accent-blue-glow: rgba(5, 150, 105, 0.2);
    --accent-gradient: linear-gradient(135deg, #059669 0%, #047857 100%);
}

:root[data-theme="purple"] {
    --accent-blue: #8b5cf6;
    --accent-blue-glow: rgba(139, 92, 246, 0.4);
    --accent-gradient: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
}

:root[data-theme="purple"] body.light-mode {
    --accent-blue: #6d28d9;
    --accent-blue-glow: rgba(109, 40, 217, 0.2);
    --accent-gradient: linear-gradient(135deg, #6d28d9 0%, #4c1d95 100%);
}

:root[data-theme="red"] {
    --accent-blue: #ef4444;
    --accent-blue-glow: rgba(239, 68, 68, 0.4);
    --accent-gradient: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
}

:root[data-theme="red"] body.light-mode {
    --accent-blue: #b91c1c;
    --accent-blue-glow: rgba(185, 28, 28, 0.2);
    --accent-gradient: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
}

/* --- SETTINGS PANEL --- */
.settings-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 9990;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.settings-overlay.active {
    opacity: 1;
    visibility: visible;
}

.settings-panel {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    max-width: 100vw;
    height: 100vh;
    background: var(--nav-scrolled);
    z-index: 9995;
    transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    padding: 2rem;
    border-radius: 0;
    border: none;
    border-left: 1px solid var(--glass-border);
}

.settings-panel.active {
    right: 0;
}

.settings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--glass-border);
}

.settings-header h3 {
    font-family: 'Syncopate', sans-serif;
    font-size: 1.2rem;
    margin: 0;
    text-shadow: none;
}

.settings-close {
    background: transparent;
    border: none;
    color: var(--text-primary);
    transition: transform 0.3s ease, color 0.3s ease;
}

.settings-close:hover {
    transform: rotate(90deg);
    color: var(--accent-blue);
}

.settings-section {
    margin-bottom: 2rem;
}

.settings-section h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.color-options {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.color-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--btn-color);
    border: 2px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.color-btn.active {
    border-color: var(--text-primary);
    transform: scale(1.1);
    box-shadow: 0 0 15px var(--btn-color);
}

.color-btn:hover {
    transform: scale(1.1);
}

/* Toggles */
.toggle-switch {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    cursor: none;
}

.toggle-switch input {
    display: none;
}

.toggle-switch .slider {
    width: 50px;
    height: 26px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 34px;
    position: relative;
    transition: 0.4s;
    border: 1px solid var(--glass-border);
}

body.light-mode .toggle-switch .slider {
    background-color: rgba(0, 0, 0, 0.1);
}

.toggle-switch .slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 3px;
    background-color: var(--text-primary);
    transition: 0.4s;
    border-radius: 50%;
}

.toggle-switch input:checked+.slider {
    background-color: var(--accent-blue);
}

.toggle-switch input:checked+.slider:before {
    transform: translateX(24px);
    background-color: #000;
}