:root {
    --pcb-black: #0A0A0A;
    --pcb-dark: #1A1A1A;
    --trace-silver: #C0C0C0;
    --gold-contact: #FFD700;
    --led-blue: #00D4FF;
    --led-orange: #FF6B35;
    --led-green: #00FF41;
    --text-white: #F5F5F5;
    --text-dim: #A0A0A0;
    --border-color: #2A2A2A;
}

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

body {
    font-family: 'JetBrains Mono', monospace;
    background: var(--pcb-black);
    color: var(--text-white);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* PCB Background Pattern */
.pcb-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: var(--pcb-black);
    background-image:
        repeating-linear-gradient(0deg,
            transparent,
            transparent 50px,
            rgba(192, 192, 192, 0.02) 50px,
            rgba(192, 192, 192, 0.02) 51px),
        repeating-linear-gradient(90deg,
            transparent,
            transparent 50px,
            rgba(192, 192, 192, 0.02) 50px,
            rgba(192, 192, 192, 0.02) 51px);
}

.pcb-background::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%,
            rgba(255, 215, 0, 0.01) 0%,
            transparent 50%),
        radial-gradient(circle at 80% 80%,
            rgba(0, 212, 255, 0.01) 0%,
            transparent 50%);
}

/* Circuit Lines Animation */
.circuit-lines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.circuit-lines::before,
.circuit-lines::after {
    content: '';
    position: absolute;
    background: linear-gradient(90deg,
            transparent,
            rgba(192, 192, 192, 0.1),
            transparent);
    animation: trace-flow 8s linear infinite;
}

.circuit-lines::before {
    width: 2px;
    height: 100%;
    left: 10%;
}

.circuit-lines::after {
    width: 100%;
    height: 2px;
    top: 15%;
}

@keyframes trace-flow {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100%);
    }
}

/* Header Chip Design */
.header-chip {
    margin: 2rem auto;
    max-width: 900px;
    position: relative;
    background: linear-gradient(135deg, var(--pcb-dark), var(--pcb-black));
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 3rem;
    box-shadow:
        0 0 30px rgba(0, 212, 255, 0.1),
        inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.chip-pins {
    position: absolute;
    width: calc(100% - 6rem); /* Soustrait les paddings gauche/droite (3rem * 2) */
    left: 3rem; /* Compense le padding gauche */
    height: 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.chip-pins::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(90deg,
            var(--gold-contact) 0px,
            var(--gold-contact) 8px,
            transparent 8px,
            transparent 20px);
}

.top-pins {
    top: -20px;
}

.bottom-pins {
    bottom: -20px;
}

.header-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.header-content .title {
    font-size: 1.2rem;
    color: var(--led-blue);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-info {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--text-dim);
}

.contact-item {
    position: relative;
    padding-left: 0.5rem;
}

/* LED Indicators */
.led-indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 0.5rem;
    background: var(--led-green);
    box-shadow: 0 0 10px var(--led-green);
    position: relative;
}

.led-indicator.active {
    animation: led-glow 2s ease-in-out infinite;
}

.led-indicator.blink {
    animation: led-blink 1s ease-in-out infinite;
}

@keyframes led-glow {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 10px var(--led-green);
    }

    50% {
        opacity: 0.6;
        box-shadow: 0 0 5px var(--led-green);
    }
}

@keyframes led-blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.2;
    }
}

/* Main Board Layout */
.main-board {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

/* Content Layout - Single Column */
.content-layout {
    display: block;
    position: relative;
}

/* Skills section removed - keeping only tech tags in positions */



/* Component Box Styling */
.component-box {
    background: linear-gradient(135deg,
            rgba(26, 26, 26, 0.95),
            rgba(10, 10, 10, 0.95));
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.component-box::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(45deg,
            var(--gold-contact),
            transparent 30%,
            transparent 70%,
            var(--gold-contact));
    border-radius: 4px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.component-box:hover::before {
    opacity: 0.1;
}

/* Profile text styling */
.profile-text p {
    margin-bottom: 1.2em;
    line-height: 1.6;
}

.profile-text p:last-child {
    margin-bottom: 0;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
}

/* Skills Grid */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}


/* Add animated traces between timeline and skills */
@keyframes trace-pulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}


.skill-category h3 {
    font-size: 1rem;
    color: var(--led-orange);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.skill-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-chip {
    background: var(--pcb-dark);
    border: 1px solid var(--gold-contact);
    border-radius: 20px;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    color: var(--text-white);
    position: relative;
    transition: all 0.3s ease;
}

.skill-chip:hover {
    background: linear-gradient(135deg, var(--pcb-dark), rgba(255, 215, 0, 0.1));
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}









/* Highlight timeline items when hovering corresponding skills */
.timeline-item.highlighted {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 50px;
}

.timeline-connector {
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg,
            var(--gold-contact) 0%,
            var(--trace-silver) 50%,
            var(--gold-contact) 100%);
    box-shadow: 0 0 10px rgba(192, 192, 192, 0.3);
}

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

.timeline-node {
    position: absolute;
    left: -34px;
    top: 20px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gold-contact);
    border: 3px solid var(--pcb-black);
    box-shadow:
        0 0 20px rgba(255, 215, 0, 0.5),
        inset 0 0 5px rgba(255, 255, 255, 0.5);
    z-index: 1;
}

.timeline-content {
    animation: fadeInLeft 0.6s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.job-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.job-title {
    font-size: 1.2rem;
    color: var(--led-blue);
    margin-bottom: 0.5rem;
}

.company {
    font-size: 1rem;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.dates {
    font-size: 0.9rem;
    color: var(--text-dim);
}

.job-description {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: var(--text-white);
}

.job-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--led-blue);
    border-radius: 4px;
    padding: 0.25rem 0.75rem;
    font-size: 0.8rem;
    color: var(--led-blue);
    transition: all 0.3s ease;
}

.tech-tag:hover {
    background: rgba(0, 212, 255, 0.2);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.4);
}

/* Multi-position company styles */
.company-header {
    border-bottom: 2px solid var(--gold-contact);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 1rem;
}

.company-name {
    font-size: 1.3rem;
    color: var(--led-orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Company links styling */
.company-name a {
    color: inherit;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.company-name a:hover {
    color: var(--led-blue);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

/* Subtle underline effect on hover */
.company-name a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--led-blue);
    transition: width 0.3s ease;
}

.company-name a:hover::after {
    width: 100%;
}

/* External link indicator */
.company-name a::before {
    content: '🔗';
    font-size: 0.7em;
    margin-right: 0.3em;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.company-name a:hover::before {
    opacity: 0.6;
}

.company-duration {
    font-size: 1rem;
    color: var(--text-dim);
    font-weight: 400;
}

.positions-list {
    margin: 1.5rem 0;
}

.position-item {
    padding: 1rem 0 1.5rem 1.5rem;
    border-left: 3px solid var(--trace-silver);
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.position-item::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 1.2rem;
    width: 12px;
    height: 12px;
    background: var(--gold-contact);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
    border: 2px solid var(--pcb-black);
}

.position-item:hover {
    border-left-color: var(--led-blue);
    transform: translateX(5px);
}

.position-item:hover::before {
    background: var(--led-blue);
    box-shadow: 0 0 12px rgba(0, 212, 255, 0.7);
}

.position-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.75rem;
    gap: 0.25rem;
}

.position-title {
    font-size: 1.1rem;
    color: var(--led-blue);
    font-weight: 600;
    margin: 0;
}

.position-dates {
    font-size: 0.9rem;
    color: var(--text-dim);
    font-weight: 400;
}

.position-description {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: var(--text-white);
}

.position-description p {
    margin: 0;
}

/* Impact metrics styling */
.impact-metric {
    display: block;
    margin-top: 0.3rem;
    margin-left: 1.5rem;
    font-size: 0.9em;
    color: var(--led-blue);
    font-style: italic;
    opacity: 0.9;
}

/* Education Grid */
.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.education-item h3 {
    font-size: 1.1rem;
    color: var(--led-orange);
    margin-bottom: 0.5rem;
}

.institution {
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.education-item .dates {
    font-size: 0.9rem;
    color: var(--text-dim);
    margin-bottom: 0.5rem;
}

.details {
    font-size: 0.9rem;
    color: var(--text-dim);
    font-style: italic;
}

.certifications-list {
    list-style: none;
    padding-left: 0;
}

.certifications-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-white);
}

.certifications-list li:last-child {
    border-bottom: none;
}

/* Interests Grid */
.interests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.interest-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--pcb-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.interest-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.2);
    border-color: var(--led-blue);
}

.interest-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.interest-item h3 {
    color: var(--led-orange);
    margin-bottom: 0.5rem;
}

.interest-item p {
    font-size: 0.9rem;
    color: var(--text-dim);
}

/* Footer */
.footer-board {
    background: linear-gradient(135deg, var(--pcb-dark), var(--pcb-black));
    border-top: 2px solid var(--border-color);
    padding: 2rem;
    text-align: center;
    margin-top: 4rem;
}

.download-btn {
    background: linear-gradient(135deg, var(--pcb-dark), rgba(255, 215, 0, 0.1));
    border: 2px solid var(--gold-contact);
    color: var(--text-white);
    padding: 1rem 2rem;
    font-size: 1rem;
    font-family: 'JetBrains Mono', monospace;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.download-btn:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), var(--pcb-dark));
    box-shadow:
        0 0 30px rgba(255, 215, 0, 0.4),
        inset 0 0 10px rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}


.footer-info {
    color: var(--text-dim);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    /* No special content-layout rules needed */

}

@media (max-width: 768px) {
    .header-chip {
        padding: 2rem 1rem;
    }

    .chip-pins {
        width: calc(100% - 2rem); /* Ajuste pour le padding mobile (1rem * 2) */
        left: 1rem; /* Compense le padding gauche mobile */
    }

    .header-content h1 {
        font-size: 2rem;
    }

    .contact-info {
        flex-direction: column;
        gap: 0.5rem;
    }

    .main-board {
        padding: 1rem;
    }

    /* Already single column layout */

    
    .skill-experience {
        padding: 1rem;
        position: relative !important; /* Override absolute positioning on mobile */
        top: auto !important;
        left: auto !important;
        width: auto !important;
    }
    


    .timeline {
        padding-left: 30px;
    }

    .timeline-connector {
        left: 10px;
    }

    .timeline-node {
        left: -24px;
    }

    .skills-grid,
    .education-grid,
    .interests-grid {
        grid-template-columns: 1fr;
    }
    
    /* Multi-position responsive adjustments */
    .company-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .company-name {
        font-size: 1.2rem;
    }
    
    .company-duration {
        font-size: 0.9rem;
    }
    
    .position-item {
        padding: 0.75rem 0 1rem 1rem;
        margin-bottom: 1rem;
    }
    
    .position-item::before {
        width: 10px;
        height: 10px;
        left: -6px;
        top: 1rem;
    }
    
    .position-header {
        gap: 0.125rem;
    }
    
    .position-title {
        font-size: 1rem;
    }
    
    .position-dates {
        font-size: 0.85rem;
    }
}

/* Print Styles */
@media print {
    * {
        animation: none !important;
        transition: none !important;
        transform: none !important;
    }

    body {
        background: white !important;
        color: black !important;
        font-family: 'Arial', sans-serif !important;
        line-height: 1.4 !important;
    }

    /* Hide decorative elements */
    .pcb-background,
    .circuit-lines,
    .chip-pins,
    .download-btn,
    .led-indicator {
        display: none !important;
    }

    /* Header adjustments */
    .header-chip {
        background: white !important;
        border: 2px solid black !important;
        box-shadow: none !important;
        margin: 0 0 20px 0 !important;
        padding: 20px !important;
    }

    .header-content h1 {
        color: black !important;
        text-shadow: none !important;
        border: none !important;
        font-size: 24pt !important;
        margin-bottom: 8px !important;
    }

    .header-content .title {
        color: #333 !important;
        font-size: 14pt !important;
        margin-bottom: 15px !important;
    }

    .contact-info {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 15px !important;
        font-size: 10pt !important;
    }

    /* Main content layout */
    .main-board {
        max-width: 100% !important;
        padding: 0 !important;
    }

    /* Already single column layout */

    /* Timeline adjustments */
    .timeline {
        padding-left: 0 !important;
    }

    .timeline-connector,
    .timeline-node {
        display: none !important;
    }

    .timeline-item {
        page-break-inside: avoid;
        margin-bottom: 20px !important;
    }

    /* Component boxes */
    .component-box {
        background: white !important;
        border: 1px solid #ccc !important;
        box-shadow: none !important;
        margin-bottom: 15px !important;
        page-break-inside: avoid;
        padding: 15px !important;
    }

    /* Section titles */
    .section-title {
        color: black !important;
        font-size: 16pt !important;
        border-bottom: 2px solid black !important;
        padding-bottom: 5px !important;
        margin-bottom: 15px !important;
        text-transform: uppercase !important;
    }

    /* Company headers */
    .company-header {
        border-bottom: 2px solid black !important;
        padding-bottom: 10px !important;
        margin-bottom: 15px !important;
    }

    .company-name {
        color: black !important;
        font-size: 14pt !important;
        font-weight: bold !important;
    }
    
    .company-name a {
        color: black !important;
        text-decoration: none !important;
    }
    
    .company-name a::before,
    .company-name a::after {
        display: none !important;
    }

    .company-duration {
        color: #333 !important;
        font-size: 12pt !important;
    }

    /* Positions styling */
    .positions-list {
        margin: 15px 0 !important;
    }

    .position-item {
        margin-bottom: 15px !important;
        padding: 0 0 10px 15px !important;
        border-left: 3px solid black !important;
        page-break-inside: avoid;
    }

    .position-item::before {
        content: '•' !important;
        position: absolute !important;
        left: -8px !important;
        color: black !important;
        font-size: 16pt !important;
        background: none !important;
        width: auto !important;
        height: auto !important;
        border-radius: 0 !important;
        box-shadow: none !important;
    }

    .position-title {
        color: black !important;
        font-size: 12pt !important;
        font-weight: bold !important;
        margin: 0 0 5px 0 !important;
    }

    .position-dates {
        color: #666 !important;
        font-size: 10pt !important;
        margin-bottom: 8px !important;
    }

    .position-description {
        color: black !important;
        font-size: 10pt !important;
        line-height: 1.3 !important;
        margin-bottom: 10px !important;
    }

    /* Legacy job styles (for single positions) */
    .job-title {
        color: black !important;
        font-size: 12pt !important;
        font-weight: bold !important;
    }

    .company,
    .dates {
        color: #666 !important;
        font-size: 10pt !important;
    }

    .job-description {
        color: black !important;
        font-size: 10pt !important;
        line-height: 1.3 !important;
    }

    /* Technology tags */
    .job-tech {
        margin-top: 10px !important;
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 5px !important;
    }

    .tech-tag {
        background: #f0f0f0 !important;
        border: 1px solid #ccc !important;
        color: black !important;
        font-size: 8pt !important;
        padding: 2px 6px !important;
        border-radius: 3px !important;
    }

    /* Education and interests */
    .education-grid,
    .interests-grid {
        display: block !important;
    }

    .education-item,
    .interest-item {
        margin-bottom: 10px !important;
        page-break-inside: avoid;
    }

    .education-item h3,
    .interest-item h3 {
        color: black !important;
        font-size: 11pt !important;
        margin-bottom: 5px !important;
    }

    .institution,
    .details {
        color: #333 !important;
        font-size: 9pt !important;
    }

    /* Profile section */
    .profile-text {
        color: black !important;
        font-size: 10pt !important;
        line-height: 1.4 !important;
    }
    
    .profile-text p {
        margin-bottom: 0.8em;
    }
    
    .profile-text p:last-child {
        margin-bottom: 0;
    }

    /* Links */
    a {
        color: black !important;
        text-decoration: underline !important;
    }

    /* Page breaks */
    .page-break-before {
        page-break-before: always !important;
    }

    .page-break-after {
        page-break-after: always !important;
    }

    .page-break-avoid {
        page-break-inside: avoid !important;
    }
}

/* Printing class for programmatic PDF generation */
body.printing {
    background: white !important;
    color: black !important;
}

body.printing .pcb-background,
body.printing .circuit-lines,
body.printing .particle,
body.printing .chip-pins,
body.printing .led-indicator,
body.printing .download-btn {
    display: none !important;
}

body.printing .component-box {
    background: white !important;
    color: black !important;
    border: 1px solid #ccc !important;
    box-shadow: none !important;
}

body.printing .section-title,
body.printing .company-name,
body.printing .position-title,
body.printing .job-title,
body.printing h1, 
body.printing h2, 
body.printing h3,
body.printing h4,
body.printing p,
body.printing span {
    color: black !important;
    text-shadow: none !important;
}

body.printing * {
    animation: none !important;
    transition: none !important;
    transform: none !important;
}

/* PDF Compact Styles - For single page PDF generation */
#pdf-export {
    display: block !important;
    position: absolute;
    top: -9999px;
    left: -9999px;
    width: 210mm;
    background: white;
    color: black;
    font-family: 'Arial', sans-serif;
    font-size: 9pt;
    line-height: 1.2;
    padding: 0;
    margin: 0;
}

.pdf-page {
    width: 100%;
    height: 297mm;
    padding: 10mm;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 4mm;
}

.pdf-header {
    text-align: center;
    padding: 5mm 0;
    border-bottom: 2px solid black;
    font-size: 11pt;
    font-weight: normal;
    line-height: 1.3;
}

.pdf-header .name {
    font-size: 16pt;
    font-weight: bold;
    margin-bottom: 2mm;
    color: black;
}

.pdf-header .title {
    font-size: 12pt;
    color: #333;
    margin-bottom: 3mm;
}

.pdf-header .contact {
    font-size: 9pt;
    color: #666;
}

.pdf-section {
    margin-bottom: 4mm;
    page-break-inside: avoid;
}

.pdf-section-title {
    font-size: 11pt;
    font-weight: bold;
    color: black;
    border-bottom: 1px solid #ccc;
    padding-bottom: 1mm;
    margin-bottom: 2mm;
    text-transform: uppercase;
}

.pdf-profile {
    font-size: 9pt;
    line-height: 1.3;
    text-align: justify;
    color: black;
}

.pdf-experiences {
    font-size: 9pt;
    line-height: 1.2;
}

.pdf-experience-item {
    margin-bottom: 3mm;
    padding-left: 8mm;
    position: relative;
}

.pdf-experience-item::before {
    content: '•';
    position: absolute;
    left: 2mm;
    font-weight: bold;
    color: black;
}

.pdf-company {
    font-weight: bold;
    color: black;
}

.pdf-dates {
    color: #666;
    font-size: 8pt;
}

.pdf-role {
    font-style: italic;
    color: #333;
}

.pdf-description {
    margin-top: 1mm;
    color: black;
    font-size: 8pt;
    line-height: 1.2;
}

.pdf-skills {
    font-size: 9pt;
    line-height: 1.3;
}

.pdf-skills-inline {
    display: inline;
}

.pdf-skill-category {
    margin-right: 8mm;
    display: inline;
}

.pdf-skill-category strong {
    color: black;
}

.pdf-education {
    font-size: 9pt;
    line-height: 1.2;
}

.pdf-education-item {
    margin-bottom: 2mm;
    padding-left: 6mm;
    position: relative;
}

.pdf-education-item::before {
    content: '•';
    position: absolute;
    left: 0;
    font-weight: bold;
}

.pdf-degree {
    font-weight: bold;
    color: black;
}

.pdf-school {
    color: #333;
    font-size: 8pt;
}

.pdf-interests {
    font-size: 8pt;
    line-height: 1.3;
    color: black;
}

/* Typing Effect */
.typing-effect {
    overflow: hidden;
    border-right: 3px solid var(--led-blue);
    white-space: nowrap;
    animation:
        typing 3.5s steps(40, end),
        blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes blink-caret {

    from,
    to {
        border-color: transparent;
    }

    50% {
        border-color: var(--led-blue);
    }
}