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

:root {
    --primary: #ed462d;
    --primary-light: #ff6b52;
    --background: #0a0a0a;
    --background-light: #111317;
    --text: #F0EDE6;
    --text-muted: #888888;
    --accent: #ed462d;
    --border-color: rgba(240, 237, 230, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Effects */
.scanlines {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0) 50%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.1));
    background-size: 100% 4px;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.3;
}
.noise {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.04;
    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.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}
.rgb-fringe {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    pointer-events: none;
    z-index: 9997;
    box-shadow: inset 0 0 100px rgba(237, 70, 45, 0.05);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    font-family: 'Chivo Mono', monospace;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
}

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

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--background);
    overflow: hidden;
}

.hero-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    max-width: 800px;
    opacity: 0.03;
    color: var(--primary);
    pointer-events: none;
    z-index: 1;
}

.hero-matrix-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.matrix-block {
    position: absolute;
    height: 4px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 1px;
    animation: matrixFade linear infinite;
}

@keyframes matrixFade {
    0%, 100% { opacity: 0.05; }
    50% { opacity: 0.6; }
}

.hero-content {
    text-align: center;
    z-index: 1;
    padding: 20px;
}

.hero-subtitle {
    font-family: 'Chivo Mono', monospace;
    font-size: 14px;
    letter-spacing: 8px;
    color: var(--primary);
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(48px, 12vw, 120px);
    font-weight: 900;
    line-height: 1;
    color: var(--primary);
    margin-bottom: 30px;
    text-shadow: 0 0 60px rgba(255, 107, 53, 0.3);
}

.hero-roles {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.role-arrow {
    color: var(--primary);
    font-size: 20px;
}

.role {
    font-family: 'Chivo Mono', monospace;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--text-muted);
}

.hero-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 50px;
}

.hero-tags span {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 6px 12px;
    font-family: 'Chivo Mono', monospace;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 4px;
}

.hero-cta {
    display: inline-block;
    padding: 16px 40px;
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid var(--border-color);
    color: var(--primary);
    text-decoration: none;
    font-family: 'Chivo Mono', monospace;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-cta:hover {
    background: var(--primary);
    color: var(--background);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.hero-scroll span {
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.3; transform: scaleY(0.5); }
}

/* Ticker */
.hero-ticker {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 0;
    background: var(--background-light);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
    white-space: nowrap;
    z-index: 2;
}

.hero-ticker-inner {
    display: inline-block;
    animation: tickerScroll 30s linear infinite;
    font-family: 'Chivo Mono', monospace;
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 2px;
}

.hero-ticker-inner span {
    margin: 0 15px;
}

@keyframes tickerScroll {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-33.33%, 0, 0); }
}

/* Animations */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styles */
section {
    padding: 120px 0;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Chivo Mono', monospace;
    font-size: 14px;
    color: var(--background);
    background: var(--primary);
    padding: 6px 12px;
    letter-spacing: 2px;
    margin-bottom: 0;
    border-radius: 2px;
    line-height: 1;
}

.section-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    margin: 0;
}

/* Typing Cursor Effect */
.cursor-block {
    display: inline-block;
    width: 0.32em;
    height: 0.64em;
    background-color: var(--primary);
    margin-left: 12px;
    opacity: 1;
}

.cursor-block.blinking {
    animation: blinkCursor 1s step-end infinite;
}

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

/* About Section */
.about {
    background: var(--background-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text {
    padding-right: 40px;
    position: sticky;
    top: 120px;
}

.about-intro {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 30px;
    line-height: 1.4;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 16px;
}

.about-info {
    display: flex;
    flex-direction: column;
    gap: 25vh;
    padding-bottom: 10vh;
}

.info-card {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    transition: border-color 0.3s ease;
    position: sticky;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.8);
}

.info-card:nth-child(1) { top: 120px; z-index: 1; }
.info-card:nth-child(2) { top: 140px; z-index: 2; }
.info-card:nth-child(3) { top: 160px; z-index: 3; }

.info-card:hover {
    border-color: var(--primary);
}

.card-number {
    font-family: 'Chivo Mono', monospace;
    color: var(--primary);
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.info-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text);
    letter-spacing: -0.5px;
}

.info-item {
    margin-bottom: 15px;
}

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

.info-title {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}

.info-place,
.info-year,
.info-level {
    font-size: 14px;
    color: var(--text-muted);
}

.interests-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.interest {
    font-size: 14px;
    color: var(--text-muted);
}

/* Experience Section */
.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), transparent);
}

.timeline-item {
    position: relative;
    padding-bottom: 50px;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.timeline-marker {
    position: absolute;
    left: -46px;
    top: 0;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--background), 0 0 0 6px var(--primary);
}

.timeline-content {
    background: rgba(17, 19, 23, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 4px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.timeline-content:hover {
    transform: translateX(10px);
    border-color: var(--primary);
}

.timeline-year {
    display: inline-block;
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-family: 'Chivo Mono', monospace;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 500;
    border-radius: 2px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.timeline-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}

.timeline-role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
}

.timeline-desc {
    color: var(--text-muted);
    font-size: 14px;
}

/* Skills Section */
.skills {
    background: var(--background-light);
}

.skills-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.skills-programs h3,
.skills-qualities h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--primary);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.program-item {
    text-align: center;
    padding: 20px;
    background: var(--background);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.program-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.program-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    background: var(--primary);
    color: var(--background);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    border-radius: 8px;
}

.program-item span {
    font-size: 12px;
    color: var(--text-muted);
}

.qualities-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.quality-item {
    position: relative;
}

.quality-item span {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
}

.quality-bar {
    height: 8px;
    background: var(--background);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.quality-bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 4px;
    transition: width 1s ease;
}

.quality-bar.animated::after {
    width: var(--progress);
}

/* Portfolio Section */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    font-family: 'Chivo Mono', monospace;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--background);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.portfolio-item {
    opacity: 1;
    transform: scale(1);
    transition: all 0.4s ease;
}

.portfolio-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
    position: absolute;
}

.portfolio-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    cursor: pointer;
}

.portfolio-image {
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-category {
    background: var(--primary);
    color: var(--background);
    padding: 4px 12px;
    font-family: 'Chivo Mono', monospace;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 15px;
    border-radius: 2px;
    text-transform: uppercase;
}

.portfolio-overlay h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.portfolio-overlay p {
    font-size: 13px;
    color: var(--text-muted);
}

/* Contact Section */
.contact {
    background: var(--background);
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 120px 0;
}

/* Laser Background */
.laser-lines {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
}

.laser {
    position: absolute;
    height: 3px;
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
    left: -100px;
    animation: shootLaser 8s linear infinite;
    opacity: 0.8;
}

@keyframes shootLaser {
    0% { transform: translateX(0); left: -100%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateX(200vw); opacity: 0; }
}

.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-tag-wrapper {
    margin-bottom: 30px;
}

.contact-tag {
    border: 1px solid rgba(237, 70, 45, 0.3);
    color: var(--primary);
    font-family: 'Chivo Mono', monospace;
    font-size: 11px;
    padding: 8px 20px;
    border-radius: 4px;
    letter-spacing: 2px;
    background: rgba(237, 70, 45, 0.05);
    display: inline-flex;
    align-items: center;
}

.contact-tag .icon {
    font-size: 14px;
    margin-right: 8px;
}

.contact-huge-title {
    font-size: 64px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 20px;
    letter-spacing: -2px;
    line-height: 1.1;
}

.contact-subtitle {
    color: var(--text-muted);
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.contact-details-centered {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.contact-content-centered {
    width: 100%;
    max-width: 500px;
    margin-top: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    font-family: 'Chivo Mono', monospace;
}

.contact-item:hover {
    color: var(--primary);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(17, 19, 23, 0.8);
    border: 1px solid var(--border-color);
    color: var(--text);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.submit-btn-centered {
    padding: 18px;
    background: var(--primary);
    border: none;
    color: var(--background);
    font-family: 'Chivo Mono', monospace;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    border-radius: 4px;
    margin-top: 10px;
}

.submit-btn-centered:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.submit-btn:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

/* Footer */
.footer {
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid var(--background-light);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
}

.footer p {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    color: var(--text);
    font-size: 20px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--primary);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .programs-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--background);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.3s ease;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .about-content,
    .skills-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text {
        padding-right: 0;
    }
    
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-roles {
        flex-direction: column;
    }
    
    .timeline {
        padding-left: 30px;
    }
    
    .timeline-marker {
        left: -36px;
    }
    
    section {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 48px;
    }
    
    .hero-tags span {
        font-size: 10px;
        padding: 6px 12px;
    }
    
    .portfolio-filters {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* Image Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 1;
}

.modal-content {
    width: 1920px;
    height: 1080px;
    max-width: 95vw;
    max-height: 85vh;
    border-radius: 4px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    transform: scale(0.8);
    transition: transform 0.3s ease;
    object-fit: contain;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal.show .modal-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 2001;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--primary);
    text-decoration: none;
}

#modalCaption {
    margin-top: 15px;
    color: var(--text);
    font-family: 'Chivo Mono', monospace;
    font-size: 14px;
    text-align: center;
    letter-spacing: 1px;
}
