@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Global link styles for dark theme */
:root {
    /* Monochrome link palette for dark theme */
    --link-color: #d0d0d0;           /* light gray by default */
    --link-hover: #ffffff;           /* white on hover */
    --link-underline: rgba(255, 255, 255, 0.28);
}

a {
    color: var(--link-color);
    text-decoration: underline;
    text-decoration-color: var(--link-underline);
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

a:hover {
    color: var(--link-hover);
    text-decoration-color: currentColor;
}

a:visited {
    color: var(--link-color); /* avoid purple visited color on dark */
}

a:focus-visible {
    outline: 2px dashed #aaa;
    outline-offset: 2px;
}

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

/* Header Section */
.header {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-bottom: 1px solid #333;
    position: relative;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.hero-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #ccc;
    font-weight: 300;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #aaa;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.contact-item {
    font-size: 0.9rem;
    color: #ccc;
    display: inline-flex;
    align-items: center;
}

/* Inline SVG icons */
/* External SVG contact icons */
.contact-icon { width: 20px; height: 20px; display: inline-block; vertical-align: middle; margin-right: 8px; }
/* Match theme color for monochrome SVGs using filter on dark background */
.contact-icon { filter: invert(85%) sepia(6%) saturate(0%) hue-rotate(180deg) brightness(95%) contrast(90%); }
.icon-award { width: 22px; height: 22px; }
.icon-award circle { fill: none; stroke: currentColor; stroke-width: 2; }
.icon-award path { fill: none; stroke: currentColor; stroke-width: 2; }

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-links a {
    color: #fff;
    text-decoration: none; /* keep button look for header links */
    padding: 0.5rem 1rem;
    border: 1px solid #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-links a:hover {
    background-color: #fff;
    color: #000;
}

/* Scroll Arrow */
.scroll-arrow {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.scroll-arrow:hover {
    transform: translateX(-50%) translateY(-5px);
}

.arrow-down {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.scroll-text {
    font-size: 0.8rem;
    color: #ccc;
    display: block;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Section Styles */
.section {
    padding: 4rem 0;
    border-bottom: 1px solid #222;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 300;
}

/* About Section */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #ccc;
}

/* Experience Section */
.experience-item {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #333;
}

.experience-item:last-child {
    border-bottom: none;
}

.experience-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.experience-title {
    font-size: 1.3rem;
    font-weight: 500;
}

.experience-company {
    font-size: 1.1rem;
    color: #ccc;
    margin-top: 0.2rem;
}

.experience-date {
    color: #aaa;
    font-size: 0.9rem;
}

.experience-description {
    color: #ccc;
    margin-top: 1rem;
}

.experience-description ul {
    list-style: none;
    padding-left: 0;
}

.experience-description li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.experience-description li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #fff;
}

/* Education Section */
.education-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #333;
}

.education-item:last-child {
    border-bottom: none;
}

.education-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.education-degree {
    font-size: 1.2rem;
    font-weight: 500;
}

.education-school {
    color: #ccc;
    margin-top: 0.2rem;
}

.education-date {
    color: #aaa;
    font-size: 0.9rem;
}

/* Achievements Section */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.achievement-item {
    border: 1px solid #333;
    padding: 2rem;
    border-radius: 5px;
    text-align: center;
    transition: border-color 0.3s ease;
}

.achievement-item:hover {
    border-color: #fff;
}

.achievement-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.achievement-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.achievement-description {
    color: #ccc;
    margin-bottom: 1rem;
}

.achievement-date {
    color: #aaa;
    font-size: 0.9rem;
}

/* Projects Section */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.project-item {
    border: 1px solid #333;
    padding: 2rem;
    border-radius: 5px;
    transition: border-color 0.3s ease;
}

.project-item:hover {
    border-color: #fff;
}

/* Emphasize primary action when hovering project card */
.project-item:hover .project-links a:first-child {
    background-color: #fff;
    color: #000;
    border-color: #fff;
}

.project-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.project-description {
    color: #ccc;
    margin-bottom: 1rem;
}

.project-technologies {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tech-tag {
    background-color: #333;
    padding: 0.3rem 0.8rem;
    border-radius: 3px;
    font-size: 0.8rem;
    color: #fff;
}

.project-links {
    display: flex;
    gap: 1rem;
}

.project-links a {
    color: #fff;
    text-decoration: none; /* keep button look for project links */
    padding: 0.5rem 1rem;
    border: 1px solid #fff;
    border-radius: 3px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.project-links a:hover {
    background-color: #fff;
    color: #000;
}

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

.skill-category {
    text-align: center;
}

.skill-category h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.skill-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.skill-item {
    background-color: #333;
    padding: 0.5rem 1rem;
    border-radius: 3px;
    font-size: 0.9rem;
    color: #fff;
}

/* Project Detail Page Styles */
.project-detail-header {
    text-align: center;
    padding: 4rem 0 2rem;
    border-bottom: 1px solid #333;
}

.project-detail-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.project-detail-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2rem;
}

.back-link {
    color: #fff;
    text-decoration: none; /* keep button look for back link */
    padding: 0.5rem 1rem;
    border: 1px solid #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
    display: inline-block;
    margin-bottom: 2rem;
}

.back-link:hover {
    background-color: #fff;
    color: #000;
}

.project-overview {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.project-main-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.project-main-content h3:first-child {
    margin-top: 0;
}

.project-main-content p {
    color: #ccc;
    margin-bottom: 1rem;
}

.project-main-content ul {
    color: #ccc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.project-sidebar {
    background-color: #111;
    padding: 2rem;
    border-radius: 5px;
    height: fit-content;
}

.project-sidebar h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.project-sidebar p {
    color: #ccc;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.project-tech-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.project-tech-item {
    background-color: #333;
    padding: 0.5rem;
    border-radius: 3px;
    font-size: 0.9rem;
}

.project-screenshots {
    margin: 3rem 0;
}

.project-screenshots h3 {
    margin-bottom: 2rem;
}

/* Enhanced Project Screenshots */
.screenshot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.screenshot-item {
    border: 1px solid #333;
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    background-color: #111;
}

.screenshot-item:hover {
    transform: translateY(-5px);
    border-color: #fff;
}

.image-container {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #222;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.screenshot-item:hover .image-overlay {
    opacity: 1;
}

.zoom-icon {
    font-size: 2rem;
    color: #fff;
    font-family: monospace;
    font-weight: bold;
}

.screenshot-caption {
    padding: 1rem;
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.4;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: #ccc;
}

#lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 5px;
}

.lightbox-caption {
    color: #fff;
    text-align: center;
    margin-top: 1rem;
    font-size: 1rem;
    max-width: 600px;
    line-height: 1.4;
}

/* Footer */
.footer {
    text-align: center;
    padding: 3rem 0;
    border-top: 1px solid #333;
    margin-top: 2rem;
}

.footer p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.footer nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer nav a {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer nav a:hover {
    color: #fff;
}

/* Address styling */
address {
    font-style: normal;
}

address a {
    color: inherit;
    text-decoration: none;
}

address a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content h2 {
        font-size: 1.4rem;
    }

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

    .experience-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .education-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .project-links {
        flex-direction: column;
    }
}

/* === GitHub Dark–style palette and visible enhancements === */
:root {
    --gh-canvas: #0d1117;           /* base background */
    --gh-canvas-subtle: #161b22;    /* panels/cards */
    --gh-border: #30363d;           /* borders */
    --gh-subtle: #8b949e;           /* secondary text */
    --gh-text: #c9d1d9;             /* primary text */
    --accent: #58a6ff;              /* subtle accent */
}

/* Base */
body {
    background-color: var(--gh-canvas);
    color: var(--gh-text);
}
.header, .project-detail-header { border-bottom: 1px solid var(--gh-border); }
.section { border-bottom: 1px solid #21262d; }

/* Header visual gradient overlay */
.header { position: relative; overflow: hidden; }
.header, .section, .footer, .project-detail-header { position: relative; z-index: 1; }
.header::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background:
    /* Blob A - subtle blue, offscreen top-left */
    radial-gradient(1200px 800px at -20% -10%, rgba(88,166,255,0.10), transparent 66%),
    /* Blob B - neutral glow, mid-right */
    radial-gradient(1000px 600px at 120% 40%, rgba(240,246,252,0.04), transparent 62%),
    /* Blob C - blue, bottom center */
    radial-gradient(1400px 800px at 50% 120%, rgba(56,139,253,0.08), transparent 64%);
        filter: blur(42px);
}

/* Subtle noise overlay to mitigate gradient banding */
.header::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feComponentTransfer><feFuncA type='table' tableValues='0 0.02'/></feComponentTransfer></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
    background-size: 200px 200px;
    background-repeat: repeat;
}

/* Global ultra-subtle noise texture across the whole page */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='nn'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feComponentTransfer><feFuncA type='table' tableValues='0 0.018'/></feComponentTransfer></filter><rect width='100%' height='100%' filter='url(%23nn)'/></svg>");
    background-size: 220px 220px;
    background-repeat: repeat;
    z-index: 0;
}

/* Section ambient backgrounds for variation without repetition */
.section {
    background-image:
      radial-gradient(1200px 800px at var(--blob-x, -15%) var(--blob-y, -20%), rgba(88,166,255,0.06), transparent 60%),
      linear-gradient(var(--sheen-angle, 180deg), rgba(255,255,255,0.018), rgba(255,255,255,0));
    background-repeat: no-repeat;
}

/* Vary ambient blob position and sheen angle per section */
.section:nth-of-type(1) { --blob-x: -15%; --blob-y: -20%; --sheen-angle: 180deg; }
.section:nth-of-type(2) { --blob-x: 115%; --blob-y: 30%;  --sheen-angle: 210deg; }
.section:nth-of-type(3) { --blob-x: 50%;  --blob-y: 120%; --sheen-angle: 150deg; }
.section:nth-of-type(4) { --blob-x: -20%; --blob-y: 70%;  --sheen-angle: 200deg; }
.section:nth-of-type(5) { --blob-x: 105%; --blob-y: -10%; --sheen-angle: 170deg; }
.section:nth-of-type(6) { --blob-x: 15%;  --blob-y: 95%;  --sheen-angle: 190deg; }

/* Subtle divider highlight at top of each section */
.section::before {
    content: "";
    position: absolute;
    left: 0; right: 0; top: -1px; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
    pointer-events: none;
}

/* Typography refinements */
.hero-content h2 { color: var(--gh-subtle); }
.hero-content p { color: var(--gh-subtle); }
.contact-item { color: var(--gh-subtle); }
.scroll-text { color: var(--gh-subtle); }
.experience-company, .education-school, .experience-date, .education-date { color: var(--gh-subtle); }
.experience-description, .project-main-content p, .project-main-content ul, .about-content p { color: var(--gh-subtle); }

/* Section heading accent underline */
.section h2 { position: relative; }
.section h2::after {
    content: "";
    display: block;
    width: 64px;
    height: 2px;
    margin: 0.75rem auto 0;
    background: var(--accent);
    opacity: 0.7;
}

/* Cards and surfaces with subtle gradient + shadow */
.achievement-item, .project-item {
    border-color: var(--gh-border);
    background: linear-gradient(180deg, rgba(22,27,34,0.95) 0%, rgba(13,17,23,0.95) 100%);
    box-shadow: 0 1px 0 rgba(240,246,252,0.04) inset, 0 8px 24px rgba(1,4,9,0.4);
}
.achievement-item:hover, .project-item:hover {
    border-color: var(--gh-text);
    box-shadow: 0 1px 0 rgba(240,246,252,0.06) inset, 0 12px 32px rgba(1,4,9,0.6);
}
.project-sidebar {
    background-color: var(--gh-canvas-subtle);
    border: 1px solid var(--gh-border);
}

/* Tags and chips */
.tech-tag, .skill-item, .project-tech-item {
    background-color: #21262d;
    color: var(--gh-text);
    border: 1px solid var(--gh-border);
}

/* Buttons as links */
.social-links a, .project-links a, .back-link {
    border-color: var(--gh-text);
    color: var(--gh-text);
}
.social-links a:hover, .project-links a:hover, .back-link:hover {
    background-color: var(--gh-text);
    color: var(--gh-canvas);
}

/* In-text link hover gets accent for visibility (non-button links inherit base a styles) */
a:hover { color: var(--accent); }

/* Footer subtle text */
.footer .footer-seo p { color: var(--gh-subtle); }

/* --- Add character across sections --- */
/* 1) Experience/Education timeline styling (no HTML change) */
#experience .container,
#education .container { position: relative; }

#experience .container::before,
#education .container::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 0.5rem;
    bottom: 0.5rem;
    width: 2px;
    background: linear-gradient(180deg, rgba(88,166,255,0.18), rgba(88,166,255,0.03));
}

.experience-item,
.education-item {
    position: relative;
    padding-left: 2.25rem; /* space for markers */
}

.experience-item::before,
.education-item::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 0.35rem;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: radial-gradient(circle at 35% 35%, var(--accent), rgba(88,166,255,0.25));
    box-shadow: 0 0 0 2px rgba(88,166,255,0.10);
}

/* 2) Project cards: accent top bar + slight lift on hover */
.project-item {
    position: relative;
    overflow: hidden;
    will-change: transform;
    transition: border-color 0.3s ease, transform 0.25s ease;
}
.project-item::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.65;
    transform: scaleX(0.6);
    transform-origin: left;
    transition: transform 0.4s ease, opacity 0.3s ease;
}
.project-item:hover { transform: translateY(-2px); }
.project-item:hover::before { transform: scaleX(1); opacity: 0.9; }

/* 3) Achievements: soft halo behind emoji icon */
.achievement-icon { position: relative; }
.achievement-icon svg { width: 36px; height: 36px; display: inline-block; }
.achievement-icon .award-img { width: 56px; height: 56px; display: inline-block; object-fit: contain; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.35)); }
.achievement-icon::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(88,166,255,0.20), transparent 60%);
    z-index: -1;
}
/* Override halo per award type for better color emphasis */
.achievement-icon.is-medal::after { background: radial-gradient(circle, rgba(59,130,246,0.16), transparent 60%); }
.achievement-icon.is-first::after { background: radial-gradient(circle, rgba(255,215,0,0.18), transparent 60%); }
.achievement-icon.is-trophy::after { background: radial-gradient(circle, rgba(245,158,11,0.18), transparent 60%); }

/* 4) Skills chips: interactive hover */
.skill-item {
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.skill-item:hover { 
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(1,4,9,0.35);
    border-color: var(--accent);
}

/* 5) Subtle fade-up on section content with reduced-motion respect */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.section .container > * { animation: fadeUp 0.5s ease both; }
.section .container > *:nth-child(2) { animation-delay: 40ms; }
.section .container > *:nth-child(3) { animation-delay: 80ms; }
.section .container > *:nth-child(4) { animation-delay: 120ms; }
.section .container > *:nth-child(5) { animation-delay: 160ms; }
.section .container > *:nth-child(6) { animation-delay: 200ms; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

/* 6) Projects section: ultra-subtle dotted texture overlay (very faint) */
section#projects { position: relative; }
section#projects::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,0.012) 1px, transparent 1.6px);
  background-size: 22px 22px;
}
@media (max-width: 768px) {
  .social-links {
      flex-direction: column;
      align-items: center;
  }

  .project-overview {
      grid-template-columns: 1fr;
  }

  .project-detail-title {
      font-size: 2rem;
  }

  .screenshot-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
  }
  
  .image-container {
      height: 200px;
  }
  
  .lightbox-content {
      max-width: 95%;
      max-height: 95%;
  }
  
  .lightbox-close {
      top: -30px;
      font-size: 1.5rem;
  }
  
  #lightbox-image {
      max-height: 70vh;
  }
}
