/* Tema Tecnológico - Enfoque más tech y moderno */

/* Variables adicionales para tema tech */
:root {
    --tech-glow: #06b6d4;
    --tech-glow-secondary: #8b5cf6;
    --tech-dark: #0a0e27;
    --tech-dark-secondary: #1a1f3a;
    --tech-accent: #00f5ff;
    --tech-text: #e0e7ff;
}

/* Efecto de partículas de fondo */
.tech-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, var(--tech-dark) 0%, var(--tech-dark-secondary) 100%);
    overflow: hidden;
}

.tech-background::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(37, 99, 235, 0.1) 0%, transparent 50%);
    animation: techFloat 20s ease-in-out infinite;
}

@keyframes techFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

/* Grid pattern de fondo */
.tech-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(6, 182, 212, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(6, 182, 212, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

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

/* Efecto de glitch en títulos */
.tech-title {
    position: relative;
    color: var(--tech-text);
    text-shadow: 
        0 0 10px var(--tech-glow),
        0 0 20px var(--tech-glow),
        0 0 30px var(--tech-glow);
}

.tech-title::before,
.tech-title::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.tech-title::before {
    left: 2px;
    text-shadow: -2px 0 var(--tech-glow-secondary);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.tech-title::after {
    left: -2px;
    text-shadow: 2px 0 var(--tech-accent);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim-2 1s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% {
        clip: rect(31px, 9999px, 94px, 0);
    }
    20% {
        clip: rect(54px, 9999px, 66px, 0);
    }
    40% {
        clip: rect(12px, 9999px, 23px, 0);
    }
    60% {
        clip: rect(78px, 9999px, 45px, 0);
    }
    80% {
        clip: rect(23px, 9999px, 89px, 0);
    }
    100% {
        clip: rect(67px, 9999px, 34px, 0);
    }
}

@keyframes glitch-anim-2 {
    0% {
        clip: rect(65px, 9999px, 100px, 0);
    }
    20% {
        clip: rect(12px, 9999px, 78px, 0);
    }
    40% {
        clip: rect(89px, 9999px, 23px, 0);
    }
    60% {
        clip: rect(34px, 9999px, 67px, 0);
    }
    80% {
        clip: rect(45px, 9999px, 12px, 0);
    }
    100% {
        clip: rect(23px, 9999px, 89px, 0);
    }
}

/* Efecto de terminal/código */
.tech-terminal {
    background: rgba(10, 14, 39, 0.9);
    border: 1px solid var(--tech-glow);
    border-radius: 8px;
    padding: 1.5rem;
    font-family: 'Courier New', monospace;
    color: var(--tech-accent);
    box-shadow: 
        0 0 10px rgba(6, 182, 212, 0.3),
        inset 0 0 20px rgba(6, 182, 212, 0.1);
    position: relative;
    overflow: hidden;
}

.tech-terminal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: rgba(6, 182, 212, 0.2);
    border-bottom: 1px solid var(--tech-glow);
    display: flex;
    align-items: center;
    padding: 0 1rem;
}

.tech-terminal::after {
    content: '● ● ●';
    position: absolute;
    top: 8px;
    left: 1rem;
    color: var(--tech-glow);
    font-size: 0.8rem;
}

/* Typing effect */
.typing-effect {
    border-right: 2px solid var(--tech-accent);
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% {
        border-color: var(--tech-accent);
    }
    51%, 100% {
        border-color: transparent;
    }
}

/* Cards con efecto holográfico */
.tech-card {
    background: rgba(26, 31, 58, 0.6);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(6, 182, 212, 0.1),
        transparent
    );
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

.tech-card:hover::before {
    animation: shine 1.5s ease;
}

.tech-card:hover {
    border-color: var(--tech-glow);
    box-shadow: 
        0 0 20px rgba(6, 182, 212, 0.4),
        0 0 40px rgba(6, 182, 212, 0.2);
    transform: translateY(-5px);
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* Botones con efecto tech */
.btn-tech,
.tech-mode .btn-primary {
    background: linear-gradient(135deg, var(--tech-glow) 0%, var(--tech-glow-secondary) 100%) !important;
    color: var(--tech-dark) !important;
    border: none !important;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0 20px rgba(6, 182, 212, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    font-weight: 600;
}

.tech-mode .btn-secondary {
    background: transparent !important;
    color: var(--tech-text) !important;
    border: 2px solid var(--tech-glow) !important;
}

.tech-mode .btn-secondary:hover {
    background: rgba(6, 182, 212, 0.1) !important;
    color: var(--tech-accent) !important;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.4);
}

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

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

.btn-tech:hover {
    box-shadow: 
        0 0 30px rgba(6, 182, 212, 0.6),
        0 0 60px rgba(6, 182, 212, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Efecto de scanline */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.03),
        rgba(0, 0, 0, 0.03) 1px,
        transparent 1px,
        transparent 2px
    );
    animation: scanline 10s linear infinite;
}

@keyframes scanline {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(100vh);
    }
}

/* Badges tech con efecto glow */
.tech-badge {
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid var(--tech-glow);
    color: var(--tech-accent);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    position: relative;
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.3);
    transition: all 0.3s ease;
}

.tech-badge:hover {
    background: rgba(6, 182, 212, 0.2);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.5);
    transform: scale(1.05);
}

/* Efecto de código cayendo (Matrix style) */
.matrix-rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.1;
}

/* Navbar tech */
.navbar-tech {
    background: rgba(10, 14, 39, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(6, 182, 212, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar-tech .brand-name {
    color: var(--tech-accent) !important;
    text-shadow: 0 0 10px var(--tech-glow);
}

.navbar-tech .brand-logo .logo-image {
    filter: drop-shadow(0 0 10px rgba(6, 182, 212, 0.4));
}

.navbar-tech .nav-link {
    position: relative;
    color: var(--tech-text);
}

.navbar-tech .nav-link::after {
    background: var(--tech-glow);
    box-shadow: 0 0 10px var(--tech-glow);
}

.navbar-tech .nav-link:hover {
    color: var(--tech-accent);
    text-shadow: 0 0 10px var(--tech-glow);
}

/* Hero section tech */
.hero-tech {
    background: transparent;
    position: relative;
    z-index: 1;
}

.hero-tech .hero-content {
    position: relative;
    z-index: 2;
}

.hero-tech::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

/* Métricas con efecto tech */
.metric-tech {
    background: rgba(26, 31, 58, 0.6) !important;
    border: 1px solid rgba(6, 182, 212, 0.3) !important;
    backdrop-filter: blur(10px);
}

.metric-tech .metric-value {
    color: var(--tech-accent) !important;
    text-shadow: 0 0 20px var(--tech-glow);
}

.metric-tech .metric-label {
    color: var(--tech-text) !important;
}

/* Ajustes de color para tech mode */
.tech-mode .section-title {
    color: var(--tech-text);
    text-shadow: 0 0 20px var(--tech-glow);
}

.tech-mode .section-description {
    color: rgba(224, 231, 255, 0.8);
}

.tech-mode .hero-name,
.tech-mode .hero-subtitle {
    color: var(--tech-text);
}

.tech-mode .hero-description {
    color: rgba(224, 231, 255, 0.9);
}

/* Stats Cards Tech Style */
.tech-mode .stat-card {
    background: rgba(26, 31, 58, 0.6) !important;
    border: 1px solid rgba(6, 182, 212, 0.3) !important;
    backdrop-filter: blur(10px);
    color: var(--tech-text);
}

.tech-mode .stat-card:hover {
    border-color: var(--tech-glow) !important;
    box-shadow: 
        0 0 20px rgba(6, 182, 212, 0.4),
        0 0 40px rgba(6, 182, 212, 0.2) !important;
}

.tech-mode .stat-icon {
    color: var(--tech-glow) !important;
    text-shadow: 0 0 10px var(--tech-glow);
}

.tech-mode .stat-value {
    color: var(--tech-accent) !important;
    text-shadow: 0 0 20px var(--tech-glow);
}

.tech-mode .stat-label {
    color: var(--tech-text) !important;
}

/* Project Cards Tech Style */
.tech-mode .project-card {
    background: rgba(26, 31, 58, 0.6) !important;
    border: 1px solid rgba(6, 182, 212, 0.3) !important;
    backdrop-filter: blur(10px);
    color: var(--tech-text);
}

.tech-mode .project-card:hover {
    border-color: var(--tech-glow) !important;
    box-shadow: 
        0 0 20px rgba(6, 182, 212, 0.4),
        0 0 40px rgba(6, 182, 212, 0.2) !important;
}

.tech-mode .project-icon {
    color: var(--tech-glow) !important;
    text-shadow: 0 0 10px var(--tech-glow);
}

.tech-mode .project-title {
    color: var(--tech-text) !important;
}

.tech-mode .project-stats {
    color: rgba(224, 231, 255, 0.7) !important;
}

.tech-mode .project-description {
    color: rgba(224, 231, 255, 0.9) !important;
}

.tech-mode .project-result {
    background: rgba(6, 182, 212, 0.1) !important;
    border: 1px solid rgba(6, 182, 212, 0.3);
    color: var(--tech-text) !important;
}

.tech-mode .project-result i {
    color: var(--tech-glow) !important;
}

/* Service Cards Tech Style */
.tech-mode .service-card {
    background: rgba(26, 31, 58, 0.6) !important;
    border: 1px solid rgba(6, 182, 212, 0.3) !important;
    backdrop-filter: blur(10px);
    color: var(--tech-text);
}

.tech-mode .service-card:hover {
    border-color: var(--tech-glow) !important;
    box-shadow: 
        0 0 20px rgba(6, 182, 212, 0.4),
        0 0 40px rgba(6, 182, 212, 0.2) !important;
}

.tech-mode .service-icon {
    color: var(--tech-glow) !important;
    text-shadow: 0 0 10px var(--tech-glow);
}

.tech-mode .service-title {
    color: var(--tech-text) !important;
}

.tech-mode .service-description {
    color: rgba(224, 231, 255, 0.8) !important;
}

.tech-mode .service-features {
    color: var(--tech-text) !important;
}

.tech-mode .service-features i {
    color: var(--tech-glow) !important;
}

/* Timeline Tech Style */
.tech-mode .experience-section {
    background: transparent !important;
}

.tech-mode .timeline::before {
    background: var(--tech-glow) !important;
    box-shadow: 0 0 10px var(--tech-glow);
}

.tech-mode .timeline-content {
    background: rgba(26, 31, 58, 0.6) !important;
    border: 1px solid rgba(6, 182, 212, 0.3) !important;
    backdrop-filter: blur(10px);
    color: var(--tech-text);
}

.tech-mode .timeline-content:hover {
    border-color: var(--tech-glow) !important;
    box-shadow: 
        0 0 20px rgba(6, 182, 212, 0.4),
        0 0 40px rgba(6, 182, 212, 0.2) !important;
}

.tech-mode .timeline-marker {
    background: var(--tech-glow) !important;
    box-shadow: 0 0 20px var(--tech-glow);
    border: 2px solid var(--tech-dark);
}

.tech-mode .timeline-header h3 {
    color: var(--tech-text) !important;
}

.tech-mode .timeline-company {
    color: var(--tech-accent) !important;
    text-shadow: 0 0 10px var(--tech-glow);
}

.tech-mode .timeline-period {
    color: rgba(224, 231, 255, 0.7) !important;
}

.tech-mode .timeline-description {
    color: rgba(224, 231, 255, 0.8) !important;
}

.tech-mode .achievement-item {
    background: rgba(6, 182, 212, 0.1) !important;
    border: 1px solid rgba(6, 182, 212, 0.3);
    color: var(--tech-text) !important;
}

.tech-mode .achievement-item i {
    color: var(--tech-glow) !important;
}

.tech-mode .achievement-item:hover {
    border-color: var(--tech-glow) !important;
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.3);
    background: rgba(6, 182, 212, 0.15) !important;
}

.tech-mode .achievement-item strong {
    color: var(--tech-text) !important;
}

.tech-mode .achievement-item span {
    color: rgba(224, 231, 255, 0.8) !important;
}

.tech-mode .timeline-section-title {
    color: var(--tech-glow) !important;
    text-shadow: 0 0 10px var(--tech-glow);
}

.tech-mode .timeline-section-title i {
    color: var(--tech-glow) !important;
}

.tech-mode .timeline-list li {
    color: var(--tech-text) !important;
}

.tech-mode .timeline-list li::before {
    color: var(--tech-glow) !important;
}

.tech-mode .timeline-tag {
    background: rgba(6, 182, 212, 0.1) !important;
    border: 1px solid var(--tech-glow) !important;
    color: var(--tech-accent) !important;
}

.tech-mode .section-subtitle {
    color: var(--tech-text) !important;
    text-shadow: 0 0 10px var(--tech-glow);
}

/* Tech Categories Tech Style */
.tech-mode .tech-category {
    background: rgba(26, 31, 58, 0.6) !important;
    border: 1px solid rgba(6, 182, 212, 0.3) !important;
    backdrop-filter: blur(10px);
}

.tech-mode .tech-category-title {
    color: var(--tech-text) !important;
}

.tech-mode .tech-category-title i {
    color: var(--tech-glow) !important;
    text-shadow: 0 0 10px var(--tech-glow);
}

.tech-mode .tech-badge-large {
    background: rgba(6, 182, 212, 0.1) !important;
    border: 1px solid var(--tech-glow) !important;
    color: var(--tech-accent) !important;
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.3);
}

.tech-mode .tech-badge-large:hover {
    background: rgba(6, 182, 212, 0.2) !important;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.5);
}

/* Certifications Tech Style */
.tech-mode .certifications {
    background: rgba(26, 31, 58, 0.6) !important;
    border: 1px solid rgba(6, 182, 212, 0.3) !important;
    backdrop-filter: blur(10px);
}

.tech-mode .certifications-title {
    color: var(--tech-text) !important;
}

.tech-mode .cert-item {
    background: rgba(6, 182, 212, 0.1) !important;
    border: 1px solid rgba(6, 182, 212, 0.3);
    color: var(--tech-text) !important;
}

.tech-mode .cert-item i {
    color: var(--tech-glow) !important;
    text-shadow: 0 0 10px var(--tech-glow);
}

/* CTA Section Tech Style */
.tech-mode .cta-section {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%) !important;
    border-top: 1px solid rgba(6, 182, 212, 0.3);
    border-bottom: 1px solid rgba(6, 182, 212, 0.3);
}

.tech-mode .cta-card {
    background: rgba(26, 31, 58, 0.6) !important;
    border: 1px solid rgba(6, 182, 212, 0.3) !important;
    backdrop-filter: blur(10px);
}

.tech-mode .cta-card:hover {
    border-color: var(--tech-glow) !important;
    box-shadow: 
        0 0 20px rgba(6, 182, 212, 0.4),
        0 0 40px rgba(6, 182, 212, 0.2) !important;
}

.tech-mode .cta-icon {
    color: var(--tech-glow) !important;
    text-shadow: 0 0 10px var(--tech-glow);
}

.tech-mode .cta-title {
    color: var(--tech-text) !important;
}

.tech-mode .cta-description {
    color: rgba(224, 231, 255, 0.8) !important;
}

/* Contact Form Tech Style */
.tech-mode .contact-form {
    background: rgba(26, 31, 58, 0.8) !important;
    border: 1px solid rgba(6, 182, 212, 0.3) !important;
    backdrop-filter: blur(10px);
}

.tech-mode .form-title {
    color: var(--tech-text) !important;
    text-shadow: 0 0 10px var(--tech-glow);
}

.tech-mode .form-group label {
    color: var(--tech-text) !important;
}

.tech-mode .form-group input,
.tech-mode .form-group textarea {
    background: rgba(10, 14, 39, 0.6) !important;
    border: 1px solid rgba(6, 182, 212, 0.3) !important;
    color: var(--tech-text) !important;
}

.tech-mode .form-group input:focus,
.tech-mode .form-group textarea:focus {
    border-color: var(--tech-glow) !important;
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.3);
    background: rgba(10, 14, 39, 0.8) !important;
}

.tech-mode .form-group input::placeholder,
.tech-mode .form-group textarea::placeholder {
    color: rgba(224, 231, 255, 0.5) !important;
}

/* Footer Tech Style */
.tech-mode .footer {
    background: rgba(10, 14, 39, 0.95) !important;
    border-top: 1px solid rgba(6, 182, 212, 0.3);
}

.tech-mode .footer-brand h3 {
    color: var(--tech-text) !important;
}

.tech-mode .footer-brand p {
    color: rgba(224, 231, 255, 0.7) !important;
}

.tech-mode .footer-links a {
    color: var(--tech-text) !important;
}

.tech-mode .footer-links a:hover {
    color: var(--tech-accent) !important;
    text-shadow: 0 0 10px var(--tech-glow);
}

.tech-mode .footer-social .social-link {
    background: rgba(6, 182, 212, 0.1) !important;
    border: 1px solid rgba(6, 182, 212, 0.3);
    color: var(--tech-text) !important;
}

.tech-mode .footer-social .social-link:hover {
    background: var(--tech-glow) !important;
    box-shadow: 0 0 20px var(--tech-glow);
}

.tech-mode .footer-bottom {
    color: rgba(224, 231, 255, 0.6) !important;
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

/* Specialist Section Tech Style */
.tech-mode .specialist-section {
    background: transparent !important;
}

/* Projects Section Tech Style */
.tech-mode .projects-section {
    background: transparent !important;
}

/* Services Section Tech Style */
.tech-mode .services-section {
    background: transparent !important;
}

/* Tech Section Tech Style */
.tech-mode .tech-section {
    background: transparent !important;
}

/* Experience Tabs Tech Style */
.tech-mode .experience-tab {
    background: rgba(26, 31, 58, 0.6) !important;
    border: 1px solid rgba(6, 182, 212, 0.3) !important;
    color: var(--tech-text) !important;
    backdrop-filter: blur(10px);
}

.tech-mode .experience-tab:hover {
    border-color: var(--tech-glow) !important;
    background: rgba(6, 182, 212, 0.1) !important;
}

.tech-mode .experience-tab.active {
    background: rgba(6, 182, 212, 0.2) !important;
    border-color: var(--tech-glow) !important;
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.4) !important;
    color: var(--tech-accent) !important;
}

.tech-mode .experience-tab .tab-badge {
    background: rgba(6, 182, 212, 0.3) !important;
    color: var(--tech-accent) !important;
}

.tech-mode .compact-section {
    background: rgba(26, 31, 58, 0.6) !important;
    border: 1px solid rgba(6, 182, 212, 0.3) !important;
    backdrop-filter: blur(10px);
}

.tech-mode .compact-section-title {
    color: var(--tech-glow) !important;
    text-shadow: 0 0 10px var(--tech-glow);
}

.tech-mode .compact-section-title i {
    color: var(--tech-glow) !important;
}

.tech-mode .compact-list li {
    color: var(--tech-text) !important;
}

.tech-mode .compact-list li::before {
    color: var(--tech-glow) !important;
}

.tech-mode .compact-header-info h3 {
    color: var(--tech-text) !important;
}

.tech-mode .compact-header-info .company {
    color: var(--tech-accent) !important;
    text-shadow: 0 0 10px var(--tech-glow);
}

.tech-mode .compact-header-info .period {
    color: rgba(224, 231, 255, 0.7) !important;
}

.tech-mode .compact-tag {
    background: rgba(6, 182, 212, 0.1) !important;
    border: 1px solid var(--tech-glow) !important;
    color: var(--tech-accent) !important;
}

.tech-mode .description-box {
    background: rgba(6, 182, 212, 0.05) !important;
    border-left: 3px solid var(--tech-glow) !important;
    color: rgba(224, 231, 255, 0.9) !important;
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.1);
}

.tech-mode .compact-achievement {
    background: rgba(6, 182, 212, 0.1) !important;
    border: 1px solid rgba(6, 182, 212, 0.3) !important;
}

.tech-mode .compact-achievement:hover {
    border-color: var(--tech-glow) !important;
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.3) !important;
}

.tech-mode .compact-achievement i {
    color: var(--tech-glow) !important;
    text-shadow: 0 0 10px var(--tech-glow);
}

.tech-mode .compact-achievement-content strong {
    color: var(--tech-text) !important;
}

.tech-mode .compact-achievement-content span {
    color: rgba(224, 231, 255, 0.7) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .tech-background::before {
        animation-duration: 15s;
    }
    
    .tech-grid {
        background-size: 30px 30px;
    }
}

