:root {
    /* Color System */
    --color-bg: #ffffff;
    --color-primary: #040404;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-highlight_secondary: #3f9af0;
    --color-highlight: #f03f3f;
    --color-highlight-t: rgba(255, 153, 0, 0.1);

    /* Spacing & Layout */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 32px;
    --spacing-xl: 64px;

    /* Borders & Decor */
    --border-width: 2px;
    --border-radius: 0px;
    /* Sharp edges as requested */

    /* Typography */
    --font-heading: 'Orbitron', 'Chakra Petch', sans-serif;
    /* Sci-fi flavor */
    --font-body: 'Rajdhani', sans-serif;
    /* Tech feel but readable */
}

/* Dark Mode override capability (future proofing, though user asked for specific palette initially) */
/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-md);
}

/* Global Generic Link Styles */
a {
    color: #1a0dab;
    /* Standard readable blue */
    text-decoration: underline;
    text-underline-offset: 3px;
    position: relative;
    transition: color 0.3s ease;
}

a:visited {
    color: #660099;
    /* Standard visited purple */
}

a:hover {
    color: var(--color-highlight);
    text-decoration: none;
}

/* UI Link Override - Reset to clean defaults for Interface Elements */
.nav-link,
.nav-link:visited,
.btn-hud,
.btn-hud:visited,
.logo a,
.logo a:visited {
    text-decoration: none;
    color: var(--color-primary);
}

/* HUD / Sci-fi Utilities */
.hud-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-lg);
    position: relative;
    z-index: 2;
}

.hud-panel {
    border: var(--border-width) solid var(--color-primary);
    padding: var(--spacing-lg);
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-lg);
}

/* Corner Brackets Decoration */
.hud-panel::before,
.hud-panel::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: var(--border-width) solid var(--color-highlight);
    transition: all 0.3s ease;
}

.hud-panel::before {
    top: -2px;
    left: -2px;
    border-right: none;
    border-bottom: none;
}

.hud-panel::after {
    bottom: -2px;
    right: -2px;
    border-left: none;
    border-top: none;
}

.hud-panel:hover::before,
.hud-panel:hover::after {
    width: 30px;
    height: 30px;
}

/* Profile Picture logic */
.profile-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid var(--color-primary);
    /* Match highlight color roughly */
    object-fit: cover;
    display: block;
}

.profile-circle:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.bumper-active {
    animation: bumper-pop 0.15s ease-out;
    border-color: var(--color-highlight_secondary) !important;
}

@keyframes bumper-pop {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

/* Navigation */
.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) 0;
    border-bottom: var(--border-width) solid var(--color-primary);
    margin-bottom: var(--spacing-lg);
    /* Reduced margin */
    flex-wrap: wrap;
    /* Allow wrapping */
}

/* Ensure Logo doesn't get crushed */
.logo {
    flex-shrink: 0;
    margin-right: var(--spacing-md);
    display: flex;
    align-items: center;
}

.main-nav {
    position: relative;
    /* Context for absolute toggle */
    width: 100%;
}

.nav-toggle {
    display: none;
    /* Hidden by default on desktop */
}

.nav-links {
    display: flex;
    gap: var(--spacing-sm);
    /* Tighten text links */
    flex-wrap: wrap;
    align-items: center;
}

/* Sticky Nav State */
body.sticky-active .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    /* Center horizontally */
    max-width: 1200px;
    /* Match container */
    z-index: 1000;

    /* Collapsed Style */
    padding: var(--spacing-sm) var(--spacing-lg);
    /* Reduced vertical padding */
    background: rgba(255, 255, 255, 0.95);
    /* High opacity background */
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--color-primary);
    /* Sci-fi accent line */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);

    /* Smooth transition */
    animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    padding: var(--spacing-xs) var(--spacing-sm);
    border: 1px solid transparent;
}

.nav-link:hover,
.nav-link.active {
    border-color: var(--color-highlight);
    color: var(--color-highlight);
    background: var(--color-highlight-t);
}

/* Buttons */
.btn-hud {
    display: inline-block;
    padding: var(--spacing-md) var(--spacing-lg);
    border: var(--border-width) solid var(--color-primary);
    background: transparent;
    color: var(--color-primary);
    font-family: var(--font-heading);
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%);
}

.btn-hud:hover {
    background: var(--color-primary);
    color: var(--color-bg);
}

/* LinkedIn CTA Special */
.btn-linkedin,
.btn-linkedin:visited {
    background: #0077b5;
    color: #fff;
    border-color: #0077b5;
    margin-left: var(--spacing-xl);
    /* Big gap */
    padding: var(--spacing-sm) var(--spacing-md);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    animation: pulse-blue 2s infinite;
}

.btn-linkedin:hover {
    background: #005582;
    border-color: #005582;
    color: #fff;
    animation: none;
}

@keyframes pulse-blue {
    0% {
        box-shadow: 0 0 0 0 rgba(10, 102, 194, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(10, 102, 194, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(10, 102, 194, 0);
    }
}

/* --- MOBILE RESPONSIVENESS --- */
/* Hide Game on Mobile/Small Screens per user request */
@media (max-width: 1024px) {
    #background-canvas {
        display: none !important;
    }

    /* Hide Controls/Score on mobile */
    #game-score,
    #game-stop,
    #game-reset,
    #cursor-hint,
    .btn-hud,
    #zen-exit {
        display: none !important;
    }

    /* Ensure HUD container doesn't block clicks when empty */
    .hud-container {
        pointer-events: auto;
    }

    .main-nav {
        pointer-events: auto;
        /* re-enable for nav */
    }
}


@media (max-width: 768px) {

    .logo a {
        font-size: 1rem !important;
    }

    .logo span {
        font-size: 1rem !important;
    }

    /* Navbar Optimizations */
    .main-nav {
        flex-direction: column;
        align-items: flex-start;
        /* Align for hamburger dropdown */
        padding: 5px 10px;
    }

    .hud-panel {
        width: 100%;
        padding: 10px !important;
    }

    /* Hamburger Menu Logic */
    .nav-toggle {
        display: block;
        /* Show hamburger */
        position: absolute;
        top: 5px;
        right: 15px;
        background: transparent;
        border: none;
        color: var(--color-primary);
        font-size: 1.5rem;
        cursor: pointer;
        z-index: 2000;
    }

    .nav-links {
        display: none;
        /* Hidden by default */
        width: 100%;
        flex-direction: column;
        gap: 15px;
        margin-top: 10px;
        padding-top: 10px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
        /* Show when toggled */
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: 10px;
        text-align: center;
        border: 1px solid var(--color-primary);
    }

    /* Keep LinkedIn/Connect hidden or simplified? User said "single line" */
    /* Let's keep them in the dropdown */

    .btn-linkedin {
        display: none !important;
        /* Hide specialized buttons to declutter */
    }

    /* Hero Centering & Scaling */
    .hero .hud-panel {
        justify-content: center !important;
        text-align: center !important;
        flex-direction: column;
        /* Stack on mobile for better space */
        gap: var(--spacing-md) !important;
    }

    .hero .profile-circle {
        width: 100px !important;
        /* Scale down image */
        height: 100px !important;
    }

    /* Text Overflow Fixes */
    body {
        overflow-x: hidden;
        /* Prevent horizontal scroll */
    }

    .hero h1 {
        font-size: 1.8rem !important;
        /* Scale down title */
        word-wrap: break-word;
    }

    p {
        font-size: 0.95rem;
    }

    /* Ensure hero text container doesn't force left align */
    .hero .hud-panel>div {
        min-width: unset !important;
        flex: unset !important;
        width: 100%;
    }

    /* General Overflow Protection for Panels */
    .hud-panel {
        word-wrap: break-word;
        word-break: break-word;
        /* Ensure long words break */
        hyphens: auto;
    }

    .glitch-text {
        font-size: 2em !important;
        /* Slightly smaller heading */
    }

    /* Project Card Mobile Optimization */
    .project-card h3 {
        font-size: 1.2rem !important;
        /* Reduce from 1.5rem to prevent expansion */
    }

    .tech-stack-mini {
        font-size: 0.7rem !important;
        /* Reduce from 0.8rem */
    }

    /* Fix Status Label Overlap */
    .project-status {
        position: static !important;
        display: inline-block;
        font-size: 0.6rem !important;
        margin-bottom: 4px;
    }
}

/* Footer */
footer {
    text-align: center;
    padding: var(--spacing-xl) 0;
    border-top: var(--border-width) solid var(--color-primary);
    margin-top: var(--spacing-xl);
    font-size: 0.9em;
    color: var(--color-text-light);
}

/* Background Animation Placeholder */
#background-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.8;
    /* Increased from 0.2 to make game visible */
    pointer-events: none;
}

/* Utility */
.text-highlight {
    color: var(--color-highlight);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

@media (max-width: 1200px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }

    /* Removed the premature navbar collapse to column here */
}

/* Hero Section Updates */
.hero {
    min-height: 60vh;
    /* Changed from fixed height to min-height */
    /* Removed fixed 80vh which causes clipping on landscape mobile */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    padding: var(--spacing-xxl) 0;
    /* Add vertical breathing room */
    padding: var(--spacing-xxl) 0;
    /* Add vertical breathing room */
}

/* Ensure Skills Section centers itself in the flex column */
.skills-section {
    align-self: center;
    width: 100%;
    max-width: 800px;
    /* Keep it neat generally */
    margin-top: var(--spacing-xxl);
}

.featured-section {
    align-self: center;
    width: 100%;
    max-width: 1200px;
}

/* Portfolio Specifics */
.project-card h3 {
    margin-bottom: var(--spacing-xs);
    font-size: 1.5rem;
}

.tech-stack-mini {
    font-family: var(--font-heading);
    color: var(--color-highlight);
    font-size: 0.8rem;
    margin-bottom: var(--spacing-md);
}

.project-role {
    border-bottom: 1px solid var(--color-text-light);
    padding-bottom: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-body);
}

/* Project Status Labels */
.project-info {
    position: relative;
    /* For absolute positioning of status */
}

.project-status {
    position: absolute;
    top: 0;
    right: 0;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 2px 6px;
    border: 1px solid currentColor;
    letter-spacing: 1px;
}

.status-published {
    color: #4ade80;
    /* Bright Green */
    border-color: #4ade80;
    box-shadow: 0 0 5px rgba(74, 222, 128, 0.3);
}

.status-soft-launch {
    color: #facc15;
    /* Yellow/Gold */
    border-color: #facc15;
}

.status-in-development {
    color: var(--color-highlight_secondary);
    /* Blue */
    border-color: var(--color-highlight_secondary);
}

.status-killed {
    color: var(--color-highlight);
    /* Red */
    border-color: var(--color-highlight);
    opacity: 0.8;
    text-decoration: padding;
}

.project-desc {
    margin-bottom: var(--spacing-md);
    font-size: 1rem;
}

.project-tech h4 {
    font-size: 1rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-xs);
}

.project-tech ul {
    list-style-type: none;
    padding-left: var(--spacing-sm);
}

.project-tech li::before {
    content: '+ ';
    color: var(--color-highlight);
}

.tech-tag {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-bg);
    padding: 2px 6px;
    font-size: 0.75rem;
    margin-right: 4px;
    font-family: var(--font-heading);
}

/* Carousel Styles */
.carousel {
    position: relative;
    height: 300px;
    /* Fixed height for consistency */
    width: 100%;
    margin-bottom: var(--spacing-md);
    background: #000;
}

.carousel-track-container {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.carousel-track {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
    height: 100%;
    transition: transform 250ms ease-in;
}

.carousel-slide {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
}

.placeholder-img {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-family: var(--font-heading);
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    padding: 10px;
}

.carousel-button--left {
    left: 0;
}

.carousel-button--right {
    right: 0;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    padding: 10px 0;
    position: absolute;
    bottom: 0;
    width: 100%;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    /* Anchor for close button */
    margin: 5vh auto;
    /* Adjusted margin */
    width: 80vh;
    /* Base on viewport height for squareness */
    max-width: 90vw;
    /* Cap width on mobile */
    aspect-ratio: 1 / 1;
    /* Force square aspect ratio */
    background: var(--color-bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
    /* Allow scroll if content is too tall */
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 20px;
    color: var(--color-text-light);
    font-size: 3rem;
    /* Bigger size */
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    z-index: 10;
}

.close-modal:hover {
    color: var(--color-highlight);
}

.carousel-indicator {
    border: 1px solid #fff;
    background: transparent;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    cursor: pointer;
}

.carousel-indicator.current-slide {
    background: var(--color-highlight);
    border-color: var(--color-highlight);
}

/* Art Section Overrides */
.art-item::before,
.art-item::after {
    display: none !important;
    /* Remove red corner brackets */
}

.modal-img-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    /* Prevent spill */
}

/* Skill Bars */
.skills-section {
    margin-top: var(--spacing-xl);
}

.skill-row {
    margin-bottom: var(--spacing-md);
    display: flex;
    flex-wrap: wrap;
    /* allow wrapping on mobile */
    align-items: center;
    justify-content: space-between;
}

.skill-label {
    width: 200px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    padding-right: var(--spacing-sm);
    flex-shrink: 0;
}

.skill-track-container {
    flex-grow: 1;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

/* Sci-fi angular segmented bar */
.skill-bar-track {
    flex-grow: 1;
    height: 24px;
    min-width: 20px;
    background: transparent;
    /* Remove track background to focus on segments */
    /* Remove border on track, move to segments for "floating" feel */
    border: none;
    display: flex;
    padding: 2px;
    gap: 4px;
    /* Explicit gap between segments */
    position: relative;
}

.skill-fill-segment {
    flex: 1;
    height: 100%;
    min-width: 8px;
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid var(--color-text-light);
    transform: skewX(-20deg);
    transition: all 0.3s ease;
}

.skill-fill-segment.active {
    background: var(--color-highlight_secondary);
    border-color: var(--color-primary);
    opacity: 1;
    box-shadow: 0 0 5px rgb(24, 205, 218);
}

.skill-fill-segment.active:hover {
    background: var(--color-bg);
    height: 120%;
}


/* Highlight variations (if used) */
.skill-fill-segment.highlight {
    background: var(--color-highlight_secondary);
    border-color: var(--color-primary);
    box-shadow: 0 0 5px rgb(143, 248, 255, 1);
}

.skill-fill-segment.highlight:hover {
    background: var(--color-bg);
    height: 120%;
}

.skill-meta {
    width: 80px;
    /* Increased width slightly */
    text-align: right;
    font-size: 0.8rem;
    font-family: var(--font-body);
    color: var(--color-text-light);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    margin-left: var(--spacing-lg);
    /* Increased margin to prevent skewed bar overlap */
}

.logo a {
    font-size: 1.5rem !important;
}

.logo span {
    font-size: 1.5rem !important;
}

.skill-percent {
    color: var(--color-highlight_secondary);
    font-weight: bold;
    font-family: var(--font-heading);
}

@media (max-width: 600px) {
    .skill-row {
        flex-direction: column;
        align-items: stretch;
    }

    .skill-label {
        width: 100%;
        margin-bottom: 8px;
    }

    .skill-track-container {
        width: 100%;
    }

    .skill-meta {
        width: auto;
        margin-left: 0;
    }

    .logo a {
        font-size: 1rem !important;
    }

    .logo span {
        font-size: 1rem !important;
    }
}

/* --- CV PAGE STYLES --- */

/* The Printable Page Container (A4 Ratio approx) */
.cv-container {
    display: flex;
    flex-direction: row;
    max-width: 1000px;
    /* Wider for web view, pdf scales it */
    min-height: 1123px;
    /* A4 aspect ratio height ref */
    padding: 0 !important;
    /* Reset hud-panel padding for full bleeds if wanted, or keep it */
    overflow: hidden;
    background: #fff;
    color: #333;
    /* We want the CV to look clean, maybe less "hud" inside, but "hud" border outside */
}

/* Sidebar (Left) */
.cv-sidebar {
    width: 35%;
    background-color: var(--color-primary);
    color: var(--color-bg);
    padding: var(--spacing-lg) var(--spacing-md);
    display: flex;
    flex-direction: column;
}

/* Main Content (Right) */
.cv-main {
    width: 65%;
    padding: var(--spacing-lg);
    background-color: #fff;
}

/* CV Profile */
.cv-profile-section {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.cv-profile-img {
    width: 120px;
    height: 120px;
    margin: 0 auto var(--spacing-md) auto;
    border-color: var(--color-bg);
    /* White border on dark bg */
}

.cv-name {
    color: var(--color-bg);
    /* White text */
    font-size: 2rem;
    margin-bottom: var(--spacing-xs);
    line-height: 1;
}

.cv-title {
    color: var(--color-highlight);
    font-size: 1.1rem;
    font-family: var(--font-body);
    /* Clean read */
    margin-bottom: var(--spacing-md);
}

.cv-tagline {
    font-style: italic;
    opacity: 0.8;
    font-size: 0.9rem;
    margin-bottom: var(--spacing-lg);
}

.cv-contact-info {
    text-align: left;
    font-size: 0.9rem;
    line-height: 1.8;
}

.cv-contact-info i {
    width: 20px;
    text-align: center;
    margin-right: 8px;
    color: var(--color-highlight);
}

/* CV Specific Section Helpers */
.cv-section {
    margin-bottom: var(--spacing-lg);
}

.cv-section-title {
    font-size: 1.2rem;
    border-bottom: 2px solid var(--color-highlight);
    padding-bottom: 4px;
    margin-bottom: var(--spacing-md);
    /* Inverted color for sidebar? */
}

.cv-sidebar .cv-section-title {
    color: var(--color-bg);
    border-color: var(--color-bg);
}

/* CV Skills (Sidebar) */
.cv-skill-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 12px;
}

.cv-skill-label {
    font-size: 0.9rem;
    margin-bottom: 4px;
    font-weight: 600;
}

.cv-skill-bar {
    height: 8px;
    width: 100%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

.cv-skill-fill {
    height: 100%;
    background: var(--color-highlight);
    border-radius: 2px;
}

/* CV Main Content Styles */
.cv-text {
    font-size: 1rem;
    color: #444;
}

.cv-job-item {
    margin-bottom: var(--spacing-md);
}

.cv-job-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 4px;
}

.cv-job-title {
    font-size: 1.1rem;
    color: var(--color-primary);
    margin-bottom: 0;
}

.cv-job-date {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--color-text-light);
    font-weight: 700;
}

.cv-job-company {
    font-weight: 700;
    color: var(--color-highlight_secondary);
    margin-bottom: 8px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
}

.cv-job-desc {
    padding-left: 20px;
    list-style-type: square;
}

.cv-job-desc li {
    margin-bottom: 4px;
    color: #555;
    font-size: 0.95rem;
}

.cv-job-desc li::marker {
    color: var(--color-highlight);
}

/* Responsive CV for Mobile Viewing (Stacking) */
@media (max-width: 768px) {
    .cv-container {
        flex-direction: column;
        height: auto;
    }

    .cv-sidebar,
    .cv-main {
        width: 100%;
    }

    .cv-sidebar {
        text-align: center;
        /* Center profile on mobile */
    }

    .cv-contact-info {
        text-align: center;
        /* Center contact info too */
    }

    .cv-skill-bar {
        background: rgba(255, 255, 255, 0.3);
        /* Slightly more visible on dark */
    }
}

/* Compact Job Header Styles for CV */
.cv-job-title-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
    flex-grow: 1;
}

.cv-job-title {
    font-size: 1rem;
    /* Reduced from 1.1rem */
}

.cv-job-company-inline {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-highlight_secondary);
    /* Optional: distinct color? Or just Bold? User said 'at least bold'. keeping it simple. */
}

.cv-job-date {
    font-size: 0.85rem;
    /* Reduced from 0.9rem */
}

.cv-role-separator {
    font-size: 0.8rem;
}

/* Mobile Game Disable */
@media (max-width: 768px) {
    #background-canvas {
        display: none !important;
    }
}