/* CSS Custom Properties */
:root {
    --primary-color: #00ff88;
    --secondary-color: #00ffff;
    --accent-color: #ff00ff;
    --warning-color: #ff6b35;
    --text-color: #e0e0e0;
    --text-light: #a0a0a0;
    --background-color: #0a0a0a;
    --background-secondary: #1a1a1a;
    --background-tertiary: #2a2a2a;
    --border-color: #333333;
    --glow-color: #00ff88;
    --cyber-blue: #00ffff;
    --cyber-purple: #ff00ff;
    --shadow-sm: 0 1px 2px 0 rgba(0, 255, 136, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 255, 136, 0.2);
    --shadow-lg: 0 10px 15px -3px rgba(0, 255, 136, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Courier New', monospace;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
}

/* Cyberpunk grid background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 255, 136, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    animation: grid-move 10s linear infinite;
}

@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Landing Page Styles */
.landing-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: var(--text-color);
    text-align: center;
    padding: 2rem;
    position: relative;
}

/* Remove excessive background effects */

.landing-header h1 {
    font-size: 3rem;
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Courier New', monospace;
    letter-spacing: 3px;
}

/* Remove glitch animation */

.subtitle {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-family: 'Courier New', monospace;
    opacity: 0.7;
}

.navigation-buttons {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background: rgba(0, 255, 136, 0.02);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 4px;
    transition: all 0.3s ease;
    min-width: 200px;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #00ffff;
}

/* Remove slide effect */

.nav-button:hover {
    background: rgba(0, 255, 255, 0.05);
    border-color: rgba(0, 255, 255, 0.4);
    transform: translateY(-1px);
}

.button-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.button-text {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.landing-footer {
    position: absolute;
    bottom: 2rem;
    color: var(--text-light);
    font-size: 0.875rem;
    font-family: 'Courier New', monospace;
    opacity: 0.7;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    transition: var(--transition);
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
}

.nav-link:hover {
    color: var(--primary-color);
    border-color: rgba(0, 255, 136, 0.3);
    background: rgba(0, 255, 136, 0.05);
}

/* Content Sections */
.content-section {
    padding: 4rem 2rem;
    scroll-margin-top: 2rem;
    width: 100%;
    flex-shrink: 0;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
    font-family: 'Georgia', 'Times New Roman', serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
}

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

.about-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-family: 'Courier New', monospace;
    opacity: 0.9;
}

/* Carousel Layout */
.carousel-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-controls {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    pointer-events: none;
    z-index: 10;
}

.carousel-btn {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Courier New', monospace;
}

.carousel-btn:hover {
    background: rgba(0, 255, 136, 0.2);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.prev-btn {
    margin-left: -20px;
}

.next-btn {
    margin-right: -20px;
}

.work-carousel,
.projects-carousel,
.skills-carousel {
    display: flex;
    overflow: hidden;
    border-radius: 8px;
    padding: 1rem 0;
    width: 100%;
    position: relative;
    transition: transform 0.3s ease-in-out;
}

.work-carousel .work-item,
.projects-carousel .project-card,
.skills-carousel .skill-category {
    min-width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
    flex-shrink: 0;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
}

/* Work Grid */
.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.work-item {
    background: rgba(0, 255, 136, 0.02);
    border: 1px solid rgba(0, 255, 136, 0.1);
    border-radius: 4px;
    padding: 2rem;
    transition: var(--transition);
}

.work-item:hover {
    background: rgba(0, 255, 136, 0.05);
    border-color: rgba(0, 255, 136, 0.2);
    transform: translateY(-2px);
}

.work-item h3 {
    font-size: 1.5rem;
    color: var(--cyber-blue);
    margin-bottom: 1rem;
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
}

.work-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    opacity: 0.9;
    margin-bottom: 1.5rem;
    font-family: 'Courier New', monospace;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.project-card {
    background: rgba(0, 255, 136, 0.02);
    border: 1px solid rgba(0, 255, 136, 0.1);
    border-radius: 4px;
    padding: 2rem;
    transition: var(--transition);
    position: relative;
}

.project-card:hover {
    background: rgba(0, 255, 136, 0.05);
    border-color: rgba(0, 255, 136, 0.2);
    transform: translateY(-2px);
}

.project-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
}

.project-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-color);
    opacity: 0.9;
    margin-bottom: 1.5rem;
    font-family: 'Courier New', monospace;
}

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

.project-link {
    color: var(--cyber-blue);
    text-decoration: none;
    padding: 0.25rem 0.75rem;
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-family: 'Courier New', monospace;
    transition: var(--transition);
}

.project-link:hover {
    background: rgba(0, 255, 255, 0.1);
    border-color: var(--cyber-blue);
}

/* Tech Tags */
.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    background: rgba(255, 0, 255, 0.1);
    color: var(--cyber-purple);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 0, 255, 0.2);
}

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

.skill-category {
    background: rgba(0, 255, 136, 0.02);
    border: 1px solid rgba(0, 255, 136, 0.1);
    border-radius: 4px;
    padding: 2rem;
}

.skill-category h3 {
    font-size: 1.3rem;
    color: var(--cyber-blue);
    margin-bottom: 1.5rem;
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.skill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.skill-item {
    background: rgba(0, 255, 255, 0.1);
    color: var(--cyber-blue);
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-family: 'Courier New', monospace;
    border: 1px solid rgba(0, 255, 255, 0.2);
    transition: var(--transition);
}

.skill-item:hover {
    background: rgba(0, 255, 255, 0.2);
    transform: translateY(-1px);
}

/* Contact Section */
.contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-color);
    font-family: 'Courier New', monospace;
    opacity: 0.9;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-color);
    text-decoration: none;
    padding: 1rem 2rem;
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 0.5rem;
    background: rgba(0, 255, 136, 0.02);
    transition: var(--transition);
    font-family: 'Courier New', monospace;
    min-width: 250px;
    justify-content: center;
}

.contact-link:hover {
    background: rgba(0, 255, 136, 0.05);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.contact-icon {
    font-size: 1.2rem;
}

/* Section Footer */
.section-footer {
    text-align: center;
    margin-top: 3rem;
}

.cta-button {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    padding: 1rem 2rem;
    border: 2px solid var(--primary-color);
    border-radius: 0.5rem;
    background: rgba(0, 255, 136, 0.1);
    transition: var(--transition);
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
}

.cta-button:hover {
    background: rgba(0, 255, 136, 0.2);
    color: var(--cyber-blue);
    border-color: var(--cyber-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
}

/* Homepage Styles */
.homepage-container {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('dragon-panther.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(1.0);
    z-index: -1;
}

.background-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg,
        rgba(0, 255, 136, 0.2) 0%,
        rgba(0, 255, 255, 0.1) 50%,
        rgba(255, 0, 255, 0.2) 100%);
    mix-blend-mode: screen;
    animation: photonics-pulse 4s ease-in-out infinite;
}

@keyframes photonics-pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.content-overlay {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.7);
    color: var(--text-color);
}

.content-overlay {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.homepage-header {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back-button {
    color: var(--primary-color);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 2px solid var(--primary-color);
    border-radius: 0.5rem;
    transition: var(--transition);
    background: rgba(0, 255, 136, 0.1);
    backdrop-filter: blur(10px);
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.back-button:hover {
    background: rgba(0, 255, 136, 0.2);
    border-color: var(--cyber-blue);
    color: var(--cyber-blue);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    transform: translateX(-5px);
}

.homepage-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 2rem;
    width: 100%;
}

.under-construction {
    text-align: center;
    color: var(--text-color);
    background: rgba(0, 0, 0, 0.6);
    padding: 3rem;
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 4px;
    max-width: 500px;
}

/* Remove excessive border animation */

.under-construction h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
}

.under-construction p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: var(--text-color);
    font-family: 'Courier New', monospace;
}

.construction-animation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.gear {
    width: 30px;
    height: 30px;
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 50%;
    position: relative;
    animation: rotate 4s linear infinite;
}

.gear::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background: rgba(0, 255, 136, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.gear.reverse {
    animation-direction: reverse;
    animation-duration: 2s;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.homepage-footer {
    padding: 2rem;
    text-align: center;
    opacity: 0.8;
    color: var(--text-light);
    font-family: 'Courier New', monospace;
}

/* Projects Page Styles */
.projects-container {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.projects-header {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.projects-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.hero-section {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: 'Courier New', monospace;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 300;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-color);
    opacity: 0.9;
    font-family: 'Courier New', monospace;
}

/* Detailed Project Cards */
.projects-detailed-grid {
    display: grid;
    gap: 3rem;
    margin-bottom: 3rem;
}

.project-detailed-card {
    background: rgba(0, 255, 136, 0.02);
    border: 1px solid rgba(0, 255, 136, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.project-detailed-card:hover {
    border-color: rgba(0, 255, 136, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.1);
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
}

.project-header h3 {
    font-size: 1.8rem;
    color: var(--cyber-blue);
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
    margin: 0;
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.status-badge.active {
    background: rgba(0, 255, 136, 0.2);
    color: var(--primary-color);
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.status-badge.completed {
    background: rgba(0, 255, 255, 0.2);
    color: var(--cyber-blue);
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.project-image {
    padding: 0 2rem 1rem;
}

.image-placeholder {
    height: 200px;
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary-color);
}

.project-content {
    padding: 0 2rem 2rem;
}

.project-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 2rem;
    font-family: 'Courier New', monospace;
    opacity: 0.9;
}

.project-details {
    margin-bottom: 2rem;
}

.detail-section {
    margin-bottom: 1.5rem;
}

.detail-section h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-section ul {
    list-style: none;
    padding: 0;
}

.detail-section li {
    padding: 0.5rem 0;
    color: var(--text-color);
    font-family: 'Courier New', monospace;
    opacity: 0.9;
    position: relative;
    padding-left: 1.5rem;
}

.detail-section li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--cyber-blue);
}

.tech-stack {
    margin-top: 1.5rem;
}

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

.project-link.primary {
    background: rgba(0, 255, 136, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.project-link.primary:hover {
    background: rgba(0, 255, 136, 0.2);
}

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

.contribution-card {
    background: rgba(0, 255, 136, 0.02);
    border: 1px solid rgba(0, 255, 136, 0.1);
    border-radius: 4px;
    padding: 2rem;
    transition: var(--transition);
}

.contribution-card:hover {
    background: rgba(0, 255, 136, 0.05);
    border-color: rgba(0, 255, 136, 0.2);
    transform: translateY(-2px);
}

.contribution-card h3 {
    font-size: 1.3rem;
    color: var(--cyber-blue);
    margin-bottom: 1rem;
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
}

.contribution-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    opacity: 0.9;
    margin-bottom: 1.5rem;
    font-family: 'Courier New', monospace;
}

.contribution-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.stat {
    background: rgba(255, 0, 255, 0.1);
    color: var(--cyber-purple);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-family: 'Courier New', monospace;
    border: 1px solid rgba(255, 0, 255, 0.2);
}

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

.experiment-card {
    background: rgba(0, 255, 136, 0.02);
    border: 1px solid rgba(0, 255, 136, 0.1);
    border-radius: 4px;
    padding: 2rem;
    transition: var(--transition);
}

.experiment-card:hover {
    background: rgba(0, 255, 136, 0.05);
    border-color: rgba(0, 255, 136, 0.2);
    transform: translateY(-2px);
}

.experiment-card h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
}

.experiment-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-color);
    opacity: 0.9;
    margin-bottom: 1.5rem;
    font-family: 'Courier New', monospace;
}

.projects-footer {
    padding: 2rem;
    text-align: center;
    color: var(--text-light);
    font-family: 'Courier New', monospace;
    opacity: 0.8;
    position: relative;
    z-index: 1;
}
.lab-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: var(--text-color);
}

.lab-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 25% 25%, var(--cyber-blue) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, var(--cyber-purple) 1px, transparent 1px);
    background-size: 100px 100px;
    opacity: 0.1;
    animation: dataStream 10s linear infinite;
    pointer-events: none;
}

.lab-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    color: var(--text-color);
    position: relative;
    z-index: 1;
}

.lab-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--cyber-purple);
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
    animation: glitch 3s infinite;
}

.lab-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.lab-intro {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.lab-intro h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--cyber-blue);
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    font-family: 'Courier New', monospace;
}

.lab-intro p {
    font-size: 1.125rem;
    opacity: 0.9;
    font-family: 'Courier New', monospace;
}

.lab-projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Lab Project Cards - Keep separate from main project cards */

.lab-footer {
    text-align: center;
    padding: 2rem;
    color: white;
    backdrop-filter: blur(10px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Additional hacker animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

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

/* Remove scanning line effect */

/* Remove circuit board patterns */

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

@media (max-width: 768px) {
    .landing-header h1 {
        font-size: 2.5rem;
    }

    .navigation-buttons {
        flex-direction: column;
        align-items: center;
    }

    .nav-button {
        min-width: 250px;
    }

    .under-construction {
        padding: 2rem;
    }

    .under-construction h2 {
        font-size: 2rem;
    }

    .lab-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

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

    /* Mobile Navigation */
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.9);
        flex-direction: column;
        padding: 1rem;
        border-top: 1px solid rgba(0, 255, 136, 0.2);
    }

    .nav-menu.active {
        display: flex;
    }

    .homepage-header {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Carousel mobile adjustments */
    .carousel-container {
        max-width: 100%;
        padding: 0 1rem;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .prev-btn {
        margin-left: -10px;
    }

    .next-btn {
        margin-right: -10px;
    }

    .work-carousel .work-item,
    .projects-carousel .project-card,
    .skills-carousel .skill-category {
        min-width: 100%;
        padding: 0 0.5rem;
    }

    /* Mobile Grid Adjustments */
    .work-grid,
    .projects-grid,
    .skills-grid {
        grid-template-columns: 1fr;
    }

    .content-section {
        padding: 3rem 1rem;
    }

    .contact-links {
        align-items: stretch;
    }

    .contact-link {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .landing-container {
        padding: 1rem;
    }

    .nav-button {
        padding: 1.5rem 2rem;
        min-width: 200px;
    }

    .button-icon {
        font-size: 2rem;
    }

    .button-text {
        font-size: 1rem;
    }
}
