:root {
            --primary-color: #00a8ff;
            --secondary-color: #7f00ff;
            --bg-dark: #0a0e17;
            --text-color: #e0e0e0;
            --accent-color: #00ffcc;
            --terminal-green: #0f0;
            --hover-color: #ff00aa;
            --glitch-color-1: rgba(255, 0, 170, 0.7);
            --glitch-color-2: rgba(0, 255, 204, 0.7);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            background-color: var(--bg-dark);
            color: var(--text-color);
            font-family: 'Rajdhani', sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
            min-height: 100vh;
            position: relative;
        }
        
        body::before {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                linear-gradient(135deg, rgba(10, 14, 23, 0.9), rgba(10, 14, 23, 0.75)),
                repeating-linear-gradient(rgba(0, 168, 255, 0.03) 0px, transparent 2px, transparent 4px);
            z-index: -2;
        }
        
        /* Grid lines background effect */
        body::after {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                linear-gradient(90deg, rgba(0, 168, 255, 0.03) 1px, transparent 1px) 0 0 / 20px 20px,
                linear-gradient(0deg, rgba(0, 168, 255, 0.03) 1px, transparent 1px) 0 0 / 20px 20px;
            opacity: 0.4;
            z-index: -1;
        }
        
        /* Hologram effect */
        .hologram {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, transparent, rgba(0, 168, 255, 0.1));
            animation: hologram 15s infinite alternate;
            pointer-events: none;
            z-index: -1;
        }
        
        @keyframes hologram {
            0% { opacity: 0.2; }
            50% { opacity: 0.4; }
            100% { opacity: 0.2; }
        }
        
        /* Main container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        header {
            padding: 20px 0;
            position: relative;
            border-bottom: 1px solid rgba(0, 168, 255, 0.3);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }
        
        .logo-container {
            display: flex;
            align-items: center;
        }
        
        .logo {
            height: 60px;
            margin-right: 15px;
            filter: drop-shadow(0 0 5px var(--primary-color));
        }
        
        .site-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 32px;
            font-weight: 700;
            color: var(--primary-color);
            text-shadow: 0 0 10px rgba(0, 168, 255, 0.5);
            letter-spacing: 2px;
            position: relative;
        }
        
        .site-title::after {
            content: "Y4C2";
            position: absolute;
            left: 0;
            top: 0;
            color: var(--glitch-color-1);
            z-index: -1;
            animation: glitch-anim 2s infinite alternate-reverse;
        }
        
        .site-title::before {
            content: "Y4C2";
            position: absolute;
            left: 0;
            top: 0;
            color: var(--glitch-color-2);
            z-index: -1;
            animation: glitch-anim2 3s infinite alternate-reverse;
        }
        
        @keyframes glitch-anim {
            0% { transform: translate(0); }
            20% { transform: translate(-2px, 2px); }
            40% { transform: translate(-2px, -2px); }
            60% { transform: translate(2px, 2px); }
            80% { transform: translate(2px, -2px); }
            100% { transform: translate(0); }
        }
        
        @keyframes glitch-anim2 {
            0% { transform: translate(0); }
            20% { transform: translate(2px, -2px); }
            40% { transform: translate(2px, 2px); }
            60% { transform: translate(-2px, -2px); }
            80% { transform: translate(-2px, 2px); }
            100% { transform: translate(0); }
        }
        
        /* Navigation */
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav li {
            margin-left: 30px;
        }
        
        nav a {
            color: var(--text-color);
            text-decoration: none;
            font-family: 'Orbitron', sans-serif;
            font-size: 16px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            padding: 5px 0;
            transition: color 0.3s ease;
        }
        
        nav a::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            transition: width 0.3s ease;
        }
        
        nav a:hover {
            color: var(--primary-color);
        }
        
        nav a:hover::after {
            width: 100%;
        }
        
        /* Mobile menu toggle */
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-color);
            font-size: 24px;
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            height: 80vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            max-width: 600px;
            z-index: 1;
        }
        
        .hero h1 {
            font-family: 'Orbitron', sans-serif;
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--primary-color);
            text-shadow: 0 0 10px rgba(0, 168, 255, 0.5);
            position: relative;
        }
        
        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .cta-button {
            display: inline-block;
            padding: 12px 30px;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            color: var(--text-color);
            font-family: 'Orbitron', sans-serif;
            font-weight: 600;
            text-decoration: none;
            border-radius: 4px;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
            transition: 0.3s ease;
            border: 1px solid rgba(0, 168, 255, 0.5);
            box-shadow: 0 0 15px rgba(0, 168, 255, 0.3);
        }
        
        .cta-button::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 20px rgba(0, 168, 255, 0.5);
        }
        
        .cta-button:hover::before {
            left: 100%;
        }
        
        .hero::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: repeating-linear-gradient(0deg, rgba(0, 168, 255, 0.05) 0px, rgba(0, 168, 255, 0.05) 1px, transparent 1px, transparent 10px);
            pointer-events: none;
        }
        
        /* Binary background effect */
        .binary-bg {
            position: absolute;
            top: 0;
            right: 0;
            font-family: 'Share Tech Mono', monospace;
            font-size: 14px;
            color: rgba(0, 168, 255, 0.2);
            width: 50%;
            height: 100%;
            overflow: hidden;
            display: flex;
            flex-wrap: wrap;
            justify-content: flex-end;
            pointer-events: none;
        }
        
        .binary-bg span {
            margin: 0 5px;
            animation: binary-fall 10s linear infinite;
            opacity: 0;
        }
        
        @keyframes binary-fall {
            0% {
                opacity: 0;
                transform: translateY(-100px);
            }
            10% {
                opacity: 0.8;
            }
            90% {
                opacity: 0.8;
            }
            100% {
                opacity: 0;
                transform: translateY(100px);
            }
        }
        
        /* Terminal section */
        .terminal-section {
            padding: 80px 0;
            position: relative;
        }
        
        .terminal {
            background-color: rgba(10, 14, 23, 0.8);
            border: 1px solid var(--primary-color);
            border-radius: 8px;
            padding: 20px;
            font-family: 'Share Tech Mono', monospace;
            font-size: 16px;
            line-height: 1.6;
            color: var(--terminal-green);
            max-width: 800px;
            margin: 0 auto;
            box-shadow: 0 0 20px rgba(0, 168, 255, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .terminal::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 30px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            opacity: 0.7;
        }
        
        .terminal-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            padding-top: 15px;
            position: relative;
        }
        
        .terminal-dots {
            display: flex;
            position: absolute;
            top: 5px;
            left: 10px;
        }
        
        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            margin-right: 6px;
        }
        
        .dot:nth-child(1) {
            background-color: #ff5f57;
        }
        
        .dot:nth-child(2) {
            background-color: #febc2e;
        }
        
        .dot:nth-child(3) {
            background-color: #28c840;
        }
        
        .terminal-title {
            font-size: 16px;
            text-align: center;
            width: 100%;
            color: var(--text-color);
        }
        
        .terminal-content {
            height: 300px;
            overflow-y: auto;
            padding: 10px 0;
        }
        
        .terminal-line {
            margin-bottom: 5px;
        }
        
        .prompt {
            color: var(--primary-color);
            margin-right: 10px;
        }
        
        .cursor {
            display: inline-block;
            width: 10px;
            height: 18px;
            background-color: var(--terminal-green);
            animation: blink 1s infinite;
            vertical-align: middle;
        }
        
        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0; }
        }
        
        /* Projects Section */
        .projects-section {
            padding: 80px 0;
            position: relative;
        }
        
        .section-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 36px;
            text-transform: uppercase;
            text-align: center;
            color: var(--primary-color);
            margin-bottom: 50px;
            letter-spacing: 2px;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-title::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
        }
        
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .project-card {
            background-color: rgba(10, 14, 23, 0.7);
            border: 1px solid var(--primary-color);
            border-radius: 8px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
        }
        
        .project-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(0, 168, 255, 0.1), transparent);
            z-index: -1;
        }
        
        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 168, 255, 0.2);
        }
        
        .project-img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-bottom: 1px solid rgba(0, 168, 255, 0.3);
        }
        
        .project-content {
            padding: 20px;
        }
        
        .project-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 20px;
            margin-bottom: 10px;
            color: var(--primary-color);
        }
        
        .project-desc {
            margin-bottom: 20px;
            font-size: 15px;
            opacity: 0.9;
        }
        
        .project-link {
            display: inline-block;
            padding: 8px 20px;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            color: var(--text-color);
            text-decoration: none;
            border-radius: 4px;
            font-family: 'Orbitron', sans-serif;
            font-weight: 500;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: 0.3s ease;
            border: 1px solid rgba(0, 168, 255, 0.3);
        }
        
        .project-link:hover {
            box-shadow: 0 0 15px rgba(0, 168, 255, 0.5);
        }
        
        /* Login Section */
        .login-section {
            padding: 80px 0;
            position: relative;
        }
        
        .login-container {
            max-width: 400px;
            margin: 0 auto;
            background-color: rgba(10, 14, 23, 0.8);
            border: 1px solid var(--primary-color);
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 0 30px rgba(0, 168, 255, 0.2);
            position: relative;
            overflow: hidden;
        }
        
        .login-container::before {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at center, transparent, rgba(0, 168, 255, 0.1));
            animation: rotate 20s linear infinite;
            pointer-events: none;
            z-index: -1;
        }
        
        @keyframes rotate {
            100% { transform: rotate(360deg); }
        }
        
        .login-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 24px;
            text-align: center;
            margin-bottom: 30px;
            color: var(--primary-color);
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .form-group {
            margin-bottom: 20px;
            position: relative;
        }
        
        .form-label {
            display: block;
            margin-bottom: 8px;
            font-family: 'Share Tech Mono', monospace;
            font-size: 16px;
            color: var(--primary-color);
        }
        
        .form-input {
            width: 100%;
            padding: 12px 15px;
            background-color: rgba(10, 14, 23, 0.5);
            border: 1px solid var(--primary-color);
            border-radius: 4px;
            color: var(--text-color);
            font-family: 'Share Tech Mono', monospace;
            font-size: 16px;
            transition: 0.3s ease;
        }
        
        .form-input:focus {
            outline: none;
            box-shadow: 0 0 10px rgba(0, 168, 255, 0.5);
            border-color: var(--accent-color);
        }
        
        .login-button {
            width: 100%;
            padding: 12px;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            color: var(--text-color);
            border: none;
            border-radius: 4px;
            font-family: 'Orbitron', sans-serif;
            font-size: 16px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: 0.3s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0, 168, 255, 0.5);
        }
        
        .login-button::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
        }
        
        .login-button:hover {
            box-shadow: 0 0 15px rgba(0, 168, 255, 0.5);
        }
        
        .login-button:hover::before {
            left: 100%;
        }
        
        /* About Section */
        .about-section {
            padding: 80px 0;
            position: relative;
        }
        
        .about-container {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-image {
            flex: 1;
            border: 2px solid var(--primary-color);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 0 20px rgba(0, 168, 255, 0.3);
            position: relative;
        }
        
        .about-image img {
            width: 100%;
            display: block;
        }
        
        .about-image::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(0, 168, 255, 0.2), transparent);
            pointer-events: none;
        }
        
        .about-content {
            flex: 1;
        }
        
        .about-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 32px;
            margin-bottom: 20px;
            color: var(--primary-color);
            position: relative;
            display: inline-block;
        }
        
        .about-title::after {
            content: "";
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 50%;
            height: 3px;
            background: var(--accent-color);
        }
        
        .about-text {
            margin-bottom: 30px;
            font-size: 18px;
            line-height: 1.7;
        }
        
        .skill-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 20px;
        }
        
        .skill-tag {
            background: rgba(0, 168, 255, 0.1);
            color: var(--accent-color);
            padding: 5px 15px;
            border-radius: 20px;
            font-family: 'Share Tech Mono', monospace;
            font-size: 14px;
            border: 1px solid var(--accent-color);
        }
        
        /* Contact Section */
        .contact-section {
            padding: 80px 0;
            position: relative;
        }
        
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }
        
        .contact-info {
            background-color: rgba(10, 14, 23, 0.7);
            border: 1px solid var(--primary-color);
            border-radius: 8px;
            padding: 30px;
            position: relative;
            overflow: hidden;
        }
        
        .contact-info::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(0, 168, 255, 0.1), transparent);
            z-index: -1;
        }
        
        .contact-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 24px;
            margin-bottom: 20px;
            color: var(--primary-color);
        }
        
        .contact-details {
            list-style: none;
        }
        
        .contact-details li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .contact-icon {
            width: 40px;
            height: 40px;
            background-color: rgba(0, 168, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            border: 1px solid var(--primary-color);
        }
        
        .contact-text {
            font-family: 'Share Tech Mono', monospace;
        }
        
        .contact-text a {
            color: var(--accent-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .contact-text a:hover {
            color: var(--hover-color);
        }
        
        .contact-form {
            background-color: rgba(10, 14, 23, 0.7);
            border: 1px solid var(--primary-color);
            border-radius: 8px;
            padding: 30px;
            position: relative;
            overflow: hidden;
        }
        
        .contact-form::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(-45deg, transparent, rgba(0, 168, 255, 0.1), transparent);
            z-index: -1;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .form-textarea {
            height: 150px;
            resize: none;
        }
        
        /* Footer */
        footer {
            background-color: rgba(10, 14, 23, 0.9);
            border-top: 1px solid var(--primary-color);
            padding: 40px 0;
            position: relative;
        }
        
        .footer-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
        }
        
        .footer-logo img {
            height: 40px;
            margin-right: 15px;
        }
        
        .footer-logo-text {
            font-family: 'Orbitron', sans-serif;
            font-size: 20px;
            color: var(--primary-color);
        }
        
        .footer-links {
            display: flex;
            list-style: none;
        }
        
        .footer-links li {
            margin-left: 20px;
        }
        
        .footer-links a {
            color: var(--text-color);
            text-decoration: none;
            font-family: 'Rajdhani', sans-serif;
            font-size: 16px;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--primary-color);
        }
        
        .footer-social {
            display: flex;
            list-style: none;
        }
        
        .footer-social li {
            margin-left: 15px;
        }
        
        .social-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background-color: rgba(0, 168, 255, 0.1);
            border-radius: 50%;
            color: var(--text-color);
            border: 1px solid var(--primary-color);
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            background-color: var(--primary-color);
            transform: translateY(-3px);
            box-shadow: 0 5px 10px rgba(0, 168, 255, 0.3);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid rgba(0, 168, 255, 0.2);
            font-family: 'Share Tech Mono', monospace;
            font-size: 14px;
            opacity: 0.7;
        }
        
        /* Responsive styles */
        @media screen and (max-width: 992px) {
            .about-container {
                flex-direction: column;
            }
            
            .contact-container {
                grid-template-columns: 1fr;
            }
            
            .hero h1 {
                font-size: 36px;
            }
            
            .binary-bg {
                width: 30%;
            }
        }
        
        @media screen and (max-width: 768px) {
            .header-content {
                flex-direction: column;
                align-items: center;
                gap: 20px;
            }
            
            .menu-toggle {
                display: block;
                position: absolute;
                top: 30px;
                right: 20px;
            }
            
            nav {
                width: 100%;
            }
            
            nav ul {
                flex-direction: column;
                align-items: center;
                gap: 15px;
                display: none;
            }
            
            nav.active ul {
                display: flex;
            }
            
            .footer-container {
                flex-direction: column;
                gap: 30px;
                text-align: center;
            }
            
            .footer-links, .footer-social {
                justify-content: center;
            }
            
            .footer-links li:first-child {
                margin-left: 0;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .section-title {
                font-size: 28px;
            }
        }
        
        @media screen and (max-width: 576px) {
            .hero h1 {
                font-size: 28px;
            }
            
            .hero p {
                font-size: 16px;
            }
            
            .terminal-content {
                height: 200px;
            }
            
            .projects-grid {
                grid-template-columns: 1fr;
            }
            
            .binary-bg {
                display: none;
            }
        }
        
        /* Loading animation */
        .loading {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--bg-dark);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease;
        }
        
        .loading.hidden {
            opacity: 0;
            pointer-events: none;
        }
        
        .loading-content {
            text-align: center;
        }
        
        .loading-spinner {
            width: 100px;
            height: 100px;
            border: 5px solid transparent;
            border-radius: 50%;
            border-top-color: var(--primary-color);
            border-bottom-color: var(--secondary-color);
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            100% { transform: rotate(360deg); }
        }
        
        .loading-text {
            margin-top: 20px;
            font-family: 'Share Tech Mono', monospace;
            font-size: 18px;
            color: var(--primary-color);
        }
        
        .loading-progress {
            margin-top: 15px;
            height: 5px;
            width: 200px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 5px;
            overflow: hidden;
        }
        
        .loading-bar {
            height: 100%;
            width: 0;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            animation: progress 3s ease-in-out;
            animation-fill-mode: forwards;
        }
        
        @keyframes progress {
            0% { width: 0; }
            100% { width: 100%; }
        }
        
        /* Encryption effect for text */
        .encrypt-text {
            font-family: 'Share Tech Mono', monospace;
            position: relative;
            display: inline-block;
        }
        
        .encrypt-text::before {
            content: attr(data-text);
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            color: var(--primary-color);
            overflow: hidden;
            white-space: nowrap;
            animation: encrypt 3s steps(50) forwards;
        }
        
        @keyframes encrypt {
            0% { width: 0; }
            100% { width: 100%; }
        }
        
        /* Glitch effect for images */
        .glitch-img {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }
        
        .glitch-img img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .glitch-img img:nth-child(1) {
            filter: none;
            z-index: 3;
        }
        
        .glitch-img img:nth-child(2) {
            filter: hue-rotate(90deg) saturate(2);
            z-index: 2;
            opacity: 0;
            animation: glitch-anim-1 2s infinite linear alternate-reverse;
        }
        
        .glitch-img img:nth-child(3) {
            filter: hue-rotate(180deg) contrast(1.5);
            z-index: 1;
            opacity: 0;
            animation: glitch-anim-2 3s infinite linear alternate-reverse;
        }
        
        @keyframes glitch-anim-1 {
            0%, 100% { opacity: 0; transform: translate(0); }
            10%, 90% { opacity: 0; }
            40%, 60% { opacity: 0.3; transform: translate(-2px, 1px); }
        }
        
        @keyframes glitch-anim-2 {
            0%, 100% { opacity: 0; transform: translate(0); }
            10%, 90% { opacity: 0; }
            30%, 70% { opacity: 0.3; transform: translate(2px, -1px); }
        }
        
        /* Scrollbar customization */
        ::-webkit-scrollbar {
            width: 8px;
            height: 8px;
        }
        
        ::-webkit-scrollbar-track {
            background: rgba(10, 14, 23, 0.5);
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--primary-color);
            border-radius: 4px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: var(--secondary-color);
        }