/* Professional Tech Portfolio - Modern & Clean */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 20px;
}

:root {
    /* Monochrome palette to match logo */
    --tech-primary: #f5f5f5;           /* Light accent (logo white) */
    --tech-primary-dark: #e5e5e5;      /* Slightly darker light grey */
    --tech-cyan: #d4d4d4;              /* Neutral secondary accent */
    --tech-purple: #a3a3a3;            /* Muted mid grey */
    --tech-accent: #ffffff;            /* Strong highlight */
    --tech-warning: #f5f5f5;           /* Keep subtle, not saturated */
    --tech-bg: #050505;                /* Deep nearly-black background */
    --tech-dark: #000000;              /* Darkest background */
    --tech-surface: #111111;           /* Card/surface color */
    --tech-surface-light: #1a1a1a;     /* Lighter surface */
    --tech-border: #262626;            /* Subtle border */
    --tech-border-accent: #f5f5f5;     /* Accent border (light) */
    --tech-text: #f5f5f5;              /* Primary text */
    --tech-text-secondary: #a3a3a3;    /* Secondary text */
    --tech-text-bright: #ffffff;       /* Bright accent text */
    --tech-shadow: rgba(255, 255, 255, 0.08); /* Subtle light shadow/glow */
    --tech-glow: rgba(255, 255, 255, 0.25);   /* Stronger glow */
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    background: var(--tech-dark);
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: 0 0, 0 0;
    color: var(--tech-text);
    overflow-x: hidden;
    min-height: 100vh;
    line-height: 1.7;
    position: relative;
    font-weight: 400;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(6, 182, 212, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: backgroundPulse 25s ease-in-out infinite;
}

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

/* Clean professional container */
.crt-screen {
    position: relative;
    min-height: 100vh;
    background: transparent;
    padding: 20px;
    animation: none;
    z-index: 1;
}

/* Subtle tech grid overlay */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        transparent 50%,
        rgba(59, 130, 246, 0.008) 50%
    );
    background-size: 100% 12px;
    pointer-events: none;
    z-index: 1001;
    animation: none;
    opacity: 0.2;
}

/* Subtle tech grid pattern */
.scanlines::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.015) 1px, transparent 1px);
    background-size: 80px 80px;
    animation: gridMove 40s linear infinite;
    pointer-events: none;
    opacity: 0.5;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(80px, 80px); }
}

/* Retro background decorative elements */
.retro-background-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.retro-background-elements::before,
.retro-background-elements::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--tech-primary);
    border-radius: 50%;
    box-shadow: 
        200px 300px 0 0 rgba(59, 130, 246, 0.25),
        800px 150px 0 0 rgba(6, 182, 212, 0.2),
        1200px 600px 0 0 rgba(139, 92, 246, 0.15),
        400px 800px 0 0 rgba(59, 130, 246, 0.2),
        1500px 400px 0 0 rgba(6, 182, 212, 0.15),
        600px 1000px 0 0 rgba(139, 92, 246, 0.15),
        1000px 900px 0 0 rgba(59, 130, 246, 0.15),
        300px 500px 0 0 rgba(6, 182, 212, 0.15),
        1400px 800px 0 0 rgba(139, 92, 246, 0.2),
        700px 200px 0 0 rgba(59, 130, 246, 0.15);
    animation: starsTwinkle 10s ease-in-out infinite;
}

.retro-background-elements::after {
    animation-delay: 5s;
    box-shadow: 
        300px 200px 0 0 rgba(6, 182, 212, 0.25),
        900px 500px 0 0 rgba(139, 92, 246, 0.15),
        1300px 200px 0 0 rgba(59, 130, 246, 0.15),
        500px 700px 0 0 rgba(6, 182, 212, 0.2),
        1600px 600px 0 0 rgba(139, 92, 246, 0.12),
        700px 1100px 0 0 rgba(59, 130, 246, 0.15),
        1100px 300px 0 0 rgba(6, 182, 212, 0.15),
        250px 600px 0 0 rgba(139, 92, 246, 0.15),
        1350px 950px 0 0 rgba(59, 130, 246, 0.15),
        850px 350px 0 0 rgba(6, 182, 212, 0.15);
}

@keyframes starsTwinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.2); }
}

/* Circuit board lines */
.retro-background-elements {
    background-image: 
        linear-gradient(90deg, transparent 0%, rgba(59, 130, 246, 0.04) 50%, transparent 100%),
        linear-gradient(0deg, transparent 0%, rgba(6, 182, 212, 0.04) 50%, transparent 100%);
    background-size: 200px 200px, 200px 200px;
    background-position: 0 0, 0 0;
    animation: circuitMove 50s linear infinite;
}

@keyframes circuitMove {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 200px 200px, -200px -200px; }
}

/* Floating geometric shapes */
body::after {
    content: '';
    position: fixed;
    top: 10%;
    right: 5%;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(59, 130, 246, 0.08);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: floatShape1 18s ease-in-out infinite;
}

@keyframes floatShape1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.1; }
    50% { transform: translate(-50px, 100px) rotate(180deg); opacity: 0.3; }
}

/* Add more shapes via CSS */
.crt-screen::before {
    content: '';
    position: fixed;
    bottom: 15%;
    left: 8%;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(6, 182, 212, 0.08);
    transform: rotate(45deg);
    pointer-events: none;
    z-index: 0;
    animation: floatShape2 22s ease-in-out infinite;
}

@keyframes floatShape2 {
    0%, 100% { transform: translate(0, 0) rotate(45deg); opacity: 0.1; }
    50% { transform: translate(80px, -120px) rotate(225deg); opacity: 0.25; }
}

.crt-screen::after {
    content: '';
    position: fixed;
    top: 60%;
    right: 12%;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(139, 92, 246, 0.08);
    border-radius: 8px;
    pointer-events: none;
    z-index: 0;
    animation: floatShape3 20s ease-in-out infinite;
}

@keyframes floatShape3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.1; }
    50% { transform: translate(-100px, 80px) rotate(90deg); opacity: 0.25; }
}

/* Terminal-style lines */
.terminal-lines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.terminal-lines::before,
.terminal-lines::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 200px;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(59, 130, 246, 0.08),
        transparent
    );
    animation: terminalLine1 15s linear infinite;
}

.terminal-lines::before {
    left: 15%;
    animation-delay: 0s;
}

.terminal-lines::after {
    left: 85%;
    animation-delay: 7s;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(6, 182, 212, 0.08),
        transparent
    );
}

@keyframes terminalLine1 {
    0% { top: -200px; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100vh; opacity: 0; }
}

/* Hexagon pattern overlay */
.retro-background-elements {
    position: relative;
}

.retro-background-elements::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(59, 130, 246, 0.015) 2px,
            rgba(59, 130, 246, 0.015) 4px
        ),
        repeating-linear-gradient(
            60deg,
            transparent,
            transparent 2px,
            rgba(6, 182, 212, 0.015) 2px,
            rgba(6, 182, 212, 0.015) 4px
        ),
        repeating-linear-gradient(
            120deg,
            transparent,
            transparent 2px,
            rgba(139, 92, 246, 0.015) 2px,
            rgba(139, 92, 246, 0.015) 4px
        );
    opacity: 0.3;
    pointer-events: none;
    animation: hexPatternMove 25s linear infinite;
}

@keyframes hexPatternMove {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(50px, 50px) rotate(360deg); }
}

/* Corner brackets */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background-image: 
        linear-gradient(to right, rgba(59, 130, 246, 0.08) 0px, transparent 2px),
        linear-gradient(to bottom, rgba(59, 130, 246, 0.08) 0px, transparent 2px),
        linear-gradient(to left, rgba(59, 130, 246, 0.08) 0px, transparent 2px),
        linear-gradient(to top, rgba(59, 130, 246, 0.08) 0px, transparent 2px);
    background-size: 100% 2px, 2px 100%, 100% 2px, 2px 100%;
    background-position: top, right, bottom, left;
    background-repeat: no-repeat;
    opacity: 0.2;
}

/* Minimal noise texture */
.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.015;
    pointer-events: none;
    z-index: 999;
}

/* Professional header */
.retro-header {
    text-align: center;
    padding: 60px 20px 50px;
    border: 1px solid var(--tech-border);
    background: linear-gradient(135deg, rgba(26, 31, 58, 0.9) 0%, rgba(5, 8, 22, 0.95) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    margin-bottom: 50px;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(59, 130, 246, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    position: relative;
    border-top: 2px solid var(--tech-border-accent);
}

.retro-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--tech-primary), var(--tech-cyan), var(--tech-primary), transparent);
    border-radius: 12px 12px 0 0;
    box-shadow: 0 0 15px var(--tech-primary), 0 0 30px rgba(59, 130, 246, 0.3);
}

.terminal-prompt {
    font-size: 1rem;
    margin-bottom: 15px;
    opacity: 0.5;
    font-family: 'Courier New', monospace;
}

.prompt-text {
    color: var(--tech-cyan);
}

.cursor-blink {
    animation: blink 1.5s infinite;
    color: var(--tech-cyan);
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

/* Profile Photo */
.profile-photo-container {
    margin: 10px auto 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 300px;
    width: 100%;
}

.profile-photo {
    width: 100%;
    height: auto;
    max-width: 360px;
    max-height: 260px;
    border-radius: 0;
    border: none;
    object-fit: contain;
    object-position: center;
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-shadow: none;
    transition: all 0.3s ease;
    background: transparent;
    padding: 0;
    display: block;
}

.profile-photo:hover {
    border-color: transparent;
    box-shadow: none;
    transform: scale(1.03);
}

/* Fallback if image doesn't load */
.profile-photo:not([src]),
.profile-photo[src=""] {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(6, 182, 212, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-photo:not([src])::after,
.profile-photo[src=""]::after {
    content: '👤';
    font-size: 4rem;
    opacity: 0.5;
}

.retro-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    color: var(--tech-cyan);
    letter-spacing: 0.5px;
    margin: 10px 0;
    font-weight: 500;
}

.retro-tagline {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--tech-text-secondary);
    font-style: normal;
    margin: 20px 0;
    letter-spacing: 0.3px;
    opacity: 0.9;
    font-weight: 400;
}

.header-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
}

.meta-item {
    color: var(--tech-text-secondary);
    padding: 8px 20px;
    border: 1px solid var(--tech-border);
    background: var(--tech-surface);
    border-radius: 20px;
    opacity: 0.9;
    font-weight: 500;
    transition: all 0.3s ease;
}

.meta-item:hover {
    border-color: var(--tech-border-accent);
    background: var(--tech-surface-light);
    color: var(--tech-text);
}

/* Professional navigation */
.retro-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
    padding: 0 20px;
}

.retro-btn {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.9rem, 1.6vw, 1rem);
    background: var(--tech-surface);
    color: var(--tech-text);
    border: 1px solid var(--tech-border);
    padding: 12px 24px;
    cursor: pointer;
    text-transform: none;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    border-radius: 8px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.retro-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.5s ease;
}

.retro-btn:hover::before {
    left: 100%;
}

.retro-btn:hover {
    background: var(--tech-surface-light);
    color: var(--tech-text-bright);
    border-color: var(--tech-border-accent);
    box-shadow: 0 4px 12px var(--tech-shadow);
    transform: translateY(-2px);
}

.retro-btn.active {
    background: linear-gradient(135deg, #f5f5f5, #d4d4d4);
    color: #000000;
    border-color: #f5f5f5;
    box-shadow: 
        0 4px 16px var(--tech-glow),
        0 0 20px rgba(59, 130, 246, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Content Sections */
.content-container {
    max-width: 1200px;
    margin: 0 auto;
}

.content-section {
    display: none;
    animation: fadeIn 0.5s ease;
    scroll-margin-top: 20px;
}

.content-section.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Smooth scroll for all anchor links */
a[href^="#"] {
    scroll-behavior: smooth;
}

/* Smooth scroll for project links */
.project-link {
    transition: all 0.3s ease;
}

/* Smooth scroll container */
body {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.crt-screen {
    scroll-behavior: smooth;
}

.retro-box {
    border: 1px solid var(--tech-border);
    background: rgba(26, 31, 58, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(59, 130, 246, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    position: relative;
    transition: all 0.3s ease;
}

.retro-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--tech-primary), var(--tech-cyan), transparent);
    border-radius: 12px 12px 0 0;
    opacity: 0.8;
    pointer-events: none;
}

.retro-box:hover {
    border-color: var(--tech-border-accent);
    background: rgba(26, 31, 58, 0.92);
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(59, 130, 246, 0.1),
        0 0 0 1px rgba(59, 130, 246, 0.15);
    transform: translateY(-2px);
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--tech-text-bright);
    margin-bottom: 30px;
    font-weight: 700;
    border-bottom: 2px solid var(--tech-border);
    padding-bottom: 15px;
    position: relative;
    text-shadow: 0 0 30px rgba(59, 130, 246, 0.25), 0 0 60px rgba(59, 130, 246, 0.1);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--tech-primary), var(--tech-cyan));
    box-shadow: 0 0 10px var(--tech-primary), 0 0 20px rgba(59, 130, 246, 0.3);
}

.terminal-text {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    line-height: 1.8;
    color: var(--tech-text);
    font-weight: 400;
}

/* Clean professional heading - no glitch effect on text */
.glitch {
    position: relative;
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.3rem, 2.8vw, 1.8rem);
    color: var(--tech-text-bright);
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Glitch pseudo-elements disabled - keeping text clean */
/*
.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
*/


/* Professional title */
.retro-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--tech-text-bright), var(--tech-cyan), var(--tech-text-bright));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 25px 0 15px;
    letter-spacing: -0.02em;
    position: relative;
    animation: titleGradient 5s ease infinite;
    filter: drop-shadow(0 0 30px rgba(59, 130, 246, 0.3));
}

@keyframes titleGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}


.ascii-art {
    margin: 25px 0;
    color: var(--retro-purple);
    font-size: 0.7rem;
    overflow-x: auto;
    opacity: 0.7;  /* More subtle */
}

.bio-section {
    margin: 25px 0;
    padding: 25px;
    border-left: 3px solid var(--tech-primary);
    background: var(--tech-dark);
    border-radius: 8px;
}

/* Logo Carousel */
.logo-carousel-container {
    margin: 30px 0;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.logo-carousel {
    display: flex;
    animation: scrollLogos 30s linear infinite;
    gap: 40px;
    align-items: center;
}

.logo-item {
    flex-shrink: 0;
    width: 150px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--tech-surface);
    border-radius: 12px;
    padding: 15px;
    border: 1px solid var(--tech-border);
    transition: all 0.3s ease;
}

.logo-item:hover {
    border-color: var(--tech-border-accent);
    box-shadow: 0 4px 12px var(--tech-shadow);
    transform: translateY(-5px);
    background: var(--tech-surface-light);
}

.logo-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.8);
    transition: all 0.3s ease;
}

.logo-item:hover .logo-image {
    filter: grayscale(0%) brightness(1);
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.logo-carousel-container:hover .logo-carousel {
    animation-play-state: paused;
}

.bio-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--tech-cyan);
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Professional project cards */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.project-card {
    border: 1px solid var(--tech-border);
    background: rgba(26, 31, 58, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--tech-primary), var(--tech-cyan));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

/* Animated border glow effect */
.project-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--tech-primary), 
        var(--tech-cyan), 
        var(--tech-purple), 
        var(--tech-primary));
    background-size: 400% 400%;
    border-radius: 14px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: borderGlow 3s ease infinite;
}

@keyframes borderGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.project-card:hover::before {
    transform: scaleX(1);
}

.project-card:hover::after {
    opacity: 0.6;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4), 
        0 0 30px rgba(59, 130, 246, 0.15),
        0 0 0 1px var(--tech-border-accent);
    border-color: var(--tech-border-accent);
    background: rgba(37, 43, 71, 0.9);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 1.15rem;
}

.card-icon {
    color: var(--tech-primary);
    font-size: 1.1rem;
}

.card-title {
    color: var(--tech-text-bright);
    font-weight: 600;
    font-size: 1.3rem;
}

.project-type {
    font-size: 0.7rem;
    color: var(--tech-cyan);
    margin-left: auto;
    padding: 5px 14px;
    border: 1px solid var(--tech-border-accent);
    border-radius: 12px;
    background: rgba(59, 130, 246, 0.1);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-content {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--tech-text);
}

.project-problem,
.project-solution {
    margin: 10px 0;
    line-height: 1.7;
}

.project-details {
    margin: 18px 0;
    padding: 18px;
    background: var(--tech-dark);
    border: 1px solid var(--tech-border);
    border-radius: 8px;
    border-left: 3px solid var(--tech-primary);
}

.project-role,
.project-outcome {
    margin: 10px 0;
    font-size: 0.95rem;
}

.tech-stack {
    color: var(--tech-cyan);
    font-size: 0.9rem;
    margin-top: 12px;
    font-weight: 500;
    font-family: 'Courier New', monospace;
}

.project-links {
    display: flex;
    gap: 12px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.project-link {
    color: var(--tech-cyan);
    text-decoration: none;
    padding: 10px 20px;
    border: 1px solid var(--tech-border-accent);
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
    background: var(--tech-surface);
}

.project-link:hover {
    background: linear-gradient(135deg, #f5f5f5, #d4d4d4);
    color: #000000;
    border-color: #f5f5f5;
    box-shadow: 0 4px 12px var(--tech-shadow);
    transform: translateY(-2px);
}

.project-image-placeholder {
    margin-top: 18px;
    padding: 20px;
    border: 2px dashed var(--tech-border);
    text-align: center;
    color: var(--retro-purple);
    font-size: 0.9rem;
    border-radius: 6px;
}

.project-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.project-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    border: 1px solid var(--tech-border);
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    background: var(--tech-dark);
    display: block;
}

.project-image:hover {
    border-color: var(--tech-border-accent);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 0 1px var(--tech-border-accent);
    transform: scale(1.02);
}

/* Skills */
.skills-category {
    margin: 35px 0;
}

.category-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: var(--tech-cyan);
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.skills-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 20px;
}

.skill-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.skill-name {
    font-size: 1.15rem;
    color: var(--tech-text-bright);
    font-weight: 600;
}

.skill-bar {
    width: 100%;
    height: 32px;
    border: 1px solid var(--tech-border);
    background: var(--tech-dark);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.skill-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--tech-primary), var(--tech-cyan));
    box-shadow: 0 0 12px var(--tech-shadow);
    animation: fillBar 1.5s ease-out, skillPulse 2s ease-in-out infinite 1.5s;
    border-radius: 7px;
    position: relative;
}

.skill-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.2) 50%, 
        transparent 100%);
    animation: skillShine 2s ease-in-out infinite;
    border-radius: 7px;
}

@keyframes fillBar {
    from { width: 0; }
}

@keyframes skillPulse {
    0%, 100% { 
        box-shadow: 0 0 12px var(--tech-shadow);
    }
    50% { 
        box-shadow: 0 0 20px var(--tech-glow), 0 0 30px rgba(6, 182, 212, 0.3);
    }
}

@keyframes skillShine {
    0% { transform: translateX(-100%); }
    50%, 100% { transform: translateX(200%); }
}

/* Page-wide glitch effect - disabled for cleaner text readability */
/* Background glitch effects remain active via .glitch-bars element */
/*
@keyframes pageGlitch {
    0%, 100% { 
        filter: hue-rotate(0deg);
    }
    25% { 
        filter: hue-rotate(90deg);
    }
    50% { 
        filter: hue-rotate(180deg);
    }
    75% { 
        filter: hue-rotate(270deg);
    }
}
*/

.skill-note {
    font-size: 0.9rem;
    color: var(--tech-text-secondary);
    font-style: italic;
    margin-top: 8px;
    display: block;
    opacity: 0.8;
}

.skills-grid,
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 18px;
}

.skill-tag,
.tool-item {
    padding: 12px 20px;
    border: 1px solid var(--tech-border);
    background: var(--tech-surface);
    text-align: center;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-radius: 8px;
    font-weight: 500;
    color: var(--tech-text);
}

.skill-tag:hover,
.tool-item:hover {
    background: var(--tech-surface-light);
    color: var(--tech-text-bright);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--tech-shadow);
    border-color: var(--tech-border-accent);
}

/* Process */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 25px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 30px;
    border: 1px solid var(--tech-border);
    background: rgba(26, 31, 58, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    border-radius: 12px;
    border-left: 3px solid var(--tech-primary);
}

.process-step:hover {
    border-color: var(--tech-border-accent);
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(59, 130, 246, 0.15),
        -3px 0 15px rgba(59, 130, 246, 0.2);
    background: rgba(37, 43, 71, 0.9);
    transform: translateX(5px);
    border-left-color: var(--tech-cyan);
}

.step-number {
    font-family: 'Inter', sans-serif;
    font-size: 2.2rem;
    color: var(--tech-primary);
    min-width: 70px;
    text-align: center;
    font-weight: 800;
    background: linear-gradient(135deg, var(--tech-primary), var(--tech-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    color: var(--tech-text-bright);
    margin-bottom: 12px;
    font-weight: 600;
}

.step-description {
    flex: 1;
    line-height: 1.7;
    color: var(--tech-text);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.testimonial-card {
    padding: 35px;
    border: 1px solid var(--tech-border);
    background: var(--tech-surface);
    border-radius: 12px;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--tech-border-accent);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
}

.testimonial-card::before {
    content: '"';
    font-family: Georgia, serif;
    font-size: 4rem;
    color: var(--tech-primary);
    position: absolute;
    top: 15px;
    left: 25px;
    opacity: 0.15;
}

.testimonial-quote {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--tech-text);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--tech-border);
}

.author-name {
    color: var(--tech-text-bright);
    font-weight: 600;
    font-size: 1.05rem;
}

.author-role {
    color: var(--tech-text-secondary);
    font-size: 0.9rem;
}

.testimonial-placeholder {
    padding: 30px;
    border: 2px dashed var(--tech-border);
    text-align: center;
    color: var(--retro-purple);
    font-style: italic;
    border-radius: 8px;
}

/* Contact */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 35px;
}

.contact-item {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 1.05rem;
}

.contact-label {
    color: var(--tech-cyan);
    font-weight: 600;
}

.contact-value {
    color: var(--tech-text);
}

.contact-value a {
    color: var(--tech-cyan);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.contact-value a:hover {
    color: var(--tech-text-bright);
    border-bottom-color: var(--tech-cyan);
}

.retro-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 25px;
}

.retro-input,
.retro-textarea {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    background: var(--tech-dark);
    color: var(--tech-text);
    border: 1px solid var(--tech-border);
    padding: 14px 18px;
    outline: none;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.retro-input:focus,
.retro-textarea:focus {
    border-color: var(--tech-border-accent);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background: var(--tech-surface);
}

.retro-textarea {
    min-height: 150px;
    resize: vertical;
}

.retro-btn-submit {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    background: linear-gradient(135deg, #f5f5f5, #d4d4d4);
    color: #000000;
    border: 1px solid #f5f5f5;
    padding: 14px 32px;
    cursor: pointer;
    text-transform: none;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    align-self: flex-start;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 4px 12px var(--tech-shadow);
}

.retro-btn-submit:hover {
    background: linear-gradient(135deg, #ffffff, #e5e5e5);
    box-shadow: 0 6px 20px var(--tech-glow);
    transform: translateY(-2px);
}

/* Footer */
.retro-footer {
    text-align: center;
    padding: 50px 20px;
    margin-top: 80px;
    border-top: 1px solid var(--tech-border);
    font-size: 0.95rem;
    color: var(--tech-text-secondary);
    background: var(--tech-dark);
}

.footer-legal {
    font-size: 0.85rem;
    color: var(--tech-text-secondary);
    margin: 10px 0;
    opacity: 0.8;
}

.footer-credits {
    font-size: 0.8rem;
    color: var(--tech-text-secondary);
    margin-top: 15px;
    opacity: 0.6;
}

.footer-credits a {
    color: var(--tech-cyan);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-credits a:hover {
    color: var(--tech-text-bright);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .crt-screen {
        padding: 15px;
    }
    
    .retro-nav {
        flex-direction: column;
        align-items: stretch;
    }
    
    .retro-btn {
        width: 100%;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .retro-box {
        padding: 25px;
    }
    
    .process-step {
        flex-direction: column;
        gap: 15px;
    }
    
    .step-number {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .retro-title {
        font-size: 1.8rem;
    }
    
    .retro-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .terminal-text {
        font-size: 1rem;
    }
}

/* Matrix Code Rain - with center fade for readability */
.matrix-rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    mask-image: linear-gradient(
        to right,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 0.6) 15%,
        rgba(0, 0, 0, 0.1) 30%,
        rgba(0, 0, 0, 0) 50%,
        rgba(0, 0, 0, 0.1) 70%,
        rgba(0, 0, 0, 0.6) 85%,
        rgba(0, 0, 0, 1) 100%
    );
    -webkit-mask-image: linear-gradient(
        to right,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 0.6) 15%,
        rgba(0, 0, 0, 0.1) 30%,
        rgba(0, 0, 0, 0) 50%,
        rgba(0, 0, 0, 0.1) 70%,
        rgba(0, 0, 0, 0.6) 85%,
        rgba(0, 0, 0, 1) 100%
    );
}

.matrix-column {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: rgba(59, 130, 246, 0.2);
    line-height: 1.3;
    white-space: pre;
    text-shadow: 0 0 5px rgba(59, 130, 246, 0.3);
}

@keyframes matrixFall {
    0% { top: -100%; opacity: 0; }
    10% { opacity: 0.25; }
    90% { opacity: 0.25; }
    100% { top: 100vh; opacity: 0; }
}

/* Circuit Board Pattern */
.circuit-board {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.15;
    mask-image: radial-gradient(
        ellipse 80% 80% at 50% 50%,
        transparent 20%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 1) 100%
    );
    -webkit-mask-image: radial-gradient(
        ellipse 80% 80% at 50% 50%,
        transparent 20%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 1) 100%
    );
}

.circuit-board::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(90deg, transparent 0%, rgba(59, 130, 246, 0.08) 50%, transparent 100%),
        linear-gradient(0deg, transparent 0%, rgba(6, 182, 212, 0.08) 50%, transparent 100%),
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.08) 0%, transparent 3px),
        radial-gradient(circle at 80% 70%, rgba(6, 182, 212, 0.08) 0%, transparent 3px),
        radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.08) 0%, transparent 3px);
    background-size: 
        200px 2px,
        2px 200px,
        6px 6px,
        6px 6px,
        6px 6px;
    background-position: 
        0 0,
        0 0,
        20% 30%,
        80% 70%,
        50% 50%;
    animation: circuitPulse 8s ease-in-out infinite;
}

.circuit-board::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    box-shadow: 
        200px 300px 0 0 rgba(59, 130, 246, 0.25),
        400px 150px 0 0 rgba(6, 182, 212, 0.25),
        800px 600px 0 0 rgba(139, 92, 246, 0.2),
        1200px 200px 0 0 rgba(59, 130, 246, 0.25),
        600px 800px 0 0 rgba(6, 182, 212, 0.25),
        1400px 900px 0 0 rgba(139, 92, 246, 0.2);
    animation: circuitNodes 6s ease-in-out infinite;
}

@keyframes circuitPulse {
    0%, 100% { opacity: 0.15; }
    50% { opacity: 0.25; }
}

@keyframes circuitNodes {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: scale(1.2);
        opacity: 0.6;
    }
}

/* Floating Code Snippets */
.floating-code {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.code-snippet {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    color: rgba(59, 130, 246, 0.15);
    white-space: nowrap;
}

@keyframes codeFloat {
    0% { left: -200px; opacity: 0; }
    5% { opacity: 0.2; }
    95% { opacity: 0.2; }
    100% { left: 100vw; opacity: 0; }
}

/* Glitch Bars */
.glitch-bars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    mask-image: linear-gradient(
        to right,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 0.5) 20%,
        rgba(0, 0, 0, 0) 40%,
        rgba(0, 0, 0, 0) 60%,
        rgba(0, 0, 0, 0.5) 80%,
        rgba(0, 0, 0, 1) 100%
    );
    -webkit-mask-image: linear-gradient(
        to right,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 0.5) 20%,
        rgba(0, 0, 0, 0) 40%,
        rgba(0, 0, 0, 0) 60%,
        rgba(0, 0, 0, 0.5) 80%,
        rgba(0, 0, 0, 1) 100%
    );
}

.glitch-bars::before,
.glitch-bars::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(59, 130, 246, 0.25),
        rgba(34, 211, 238, 0.3),
        rgba(167, 139, 250, 0.3),
        transparent
    );
    animation: glitchBar1 4s ease-in-out infinite;
}

.glitch-bars::before {
    top: 25%;
    animation-delay: 0s;
}

.glitch-bars::after {
    top: 75%;
    animation-delay: 2s;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(34, 211, 238, 0.3),
        rgba(167, 139, 250, 0.3),
        rgba(59, 130, 246, 0.25),
        transparent
    );
}

@keyframes glitchBar1 {
    0%, 90%, 100% { 
        opacity: 0;
        transform: translateX(-100%);
    }
    91% { 
        opacity: 0.6;
        transform: translateX(0);
    }
    92% { 
        opacity: 0.4;
        transform: translateX(10px);
    }
    93% { 
        opacity: 0.6;
        transform: translateX(-5px);
    }
    94% { 
        opacity: 0;
        transform: translateX(100%);
    }
}

/* Terminal Cursor Trails */
.cursor-trails {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.cursor-trails::before,
.cursor-trails::after {
    content: '_';
    position: absolute;
    font-family: 'Courier New', monospace;
    font-size: 16px;
    color: rgba(59, 130, 246, 0.3);
    text-shadow: 0 0 8px rgba(59, 130, 246, 0.4);
    animation: cursorTrail1 12s ease-in-out infinite;
}

.cursor-trails::before {
    top: 30%;
    left: 15%;
    animation-delay: 0s;
}

.cursor-trails::after {
    content: '>';
    top: 70%;
    left: 85%;
    color: rgba(34, 211, 238, 0.4);
    text-shadow: 0 0 8px rgba(34, 211, 238, 0.6);
    animation: cursorTrail2 15s ease-in-out infinite;
    animation-delay: 3s;
}

@keyframes cursorTrail1 {
    0% { 
        transform: translate(0, 0);
        opacity: 0;
    }
    10% { 
        opacity: 0.4;
    }
    25% { 
        transform: translate(50px, 80px);
        opacity: 0.6;
    }
    50% { 
        transform: translate(100px, 150px);
        opacity: 0.4;
    }
    75% { 
        transform: translate(150px, 200px);
        opacity: 0.3;
    }
    100% { 
        transform: translate(200px, 250px);
        opacity: 0;
    }
}

@keyframes cursorTrail2 {
    0% { 
        transform: translate(0, 0);
        opacity: 0;
    }
    10% { 
        opacity: 0.4;
    }
    25% { 
        transform: translate(-60px, -100px);
        opacity: 0.6;
    }
    50% { 
        transform: translate(-120px, -180px);
        opacity: 0.4;
    }
    75% { 
        transform: translate(-180px, -250px);
        opacity: 0.3;
    }
    100% { 
        transform: translate(-240px, -300px);
        opacity: 0;
    }
}

/* Image Modal/Popup */
.image-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
    overflow: auto;
}

.image-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-image {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border: 2px solid var(--tech-border-accent);
    border-radius: 12px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(59, 130, 246, 0.2);
    animation: modalImageZoom 0.3s ease;
    background: var(--tech-dark);
}

@keyframes modalImageZoom {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: var(--tech-text);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
    line-height: 1;
    background: var(--tech-surface);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--tech-border);
}

.modal-close:hover,
.modal-close:focus {
    color: var(--tech-text-bright);
    background: var(--tech-surface-light);
    border-color: var(--tech-border-accent);
    transform: scale(1.1);
    box-shadow: 0 4px 12px var(--tech-shadow);
}

/* Print Styles */
@media print {
    .scanlines,
    .noise,
    .matrix-rain,
    .circuit-board,
    .floating-code,
    .glitch-bars,
    .cursor-trails {
        display: none;
    }
    
    .crt-screen {
        background: white;
        color: black;
    }
    
    .image-modal {
        display: none !important;
    }
}
