/* ============================================
   DETALLE DE PROYECTO FULLSTACK - SOULINK
   ============================================ */
.project-detail-section {
    padding-top: 180px;
    min-height: 100vh;
}

/* Botón para volver */
.back-button {
    margin-bottom: 30px;
}

.back-button .btn-small {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(26, 26, 46, 0.7);
    border: 1px solid rgba(0, 243, 255, 0.3);
    color: var(--light-color);
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.back-button .btn-small:hover {
    background: rgba(0, 243, 255, 0.1);
    border-color: var(--primary-color);
    transform: translateX(-5px);
}

/* Cabecera del proyecto */
.project-header {
    text-align: center;
    margin-bottom: 40px;
}

.project-badge {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.badge {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: var(--dark-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Badge EN VIVO */
.live-badge {
    background: linear-gradient(135deg, #00ff00, #00cc00);
    color: #000;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    display: inline-block;
    margin-left: 10px;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.project-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-family: var(--font-heading);
    text-shadow: var(--neon-glow);
    line-height: 1.2;
}

.project-subtitle {
    color: #ccc;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Imagen hero del proyecto */
.project-hero-image {
    position: relative;
    margin: 40px 0;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(0, 243, 255, 0.3);
    box-shadow: var(--neon-glow);
}

.project-hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.project-tech-banner {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 26, 0.9);
    padding: 15px 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    backdrop-filter: blur(10px);
}

.project-tech-banner span {
    background: rgba(0, 243, 255, 0.1);
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(0, 243, 255, 0.3);
}

/* Información meta */
.project-meta-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
    padding: 25px;
    background: rgba(26, 26, 46, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(0, 243, 255, 0.2);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.meta-item i {
    font-size: 1.8rem;
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-color);
}

.meta-label {
    display: block;
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.meta-value {
    display: block;
    color: var(--light-color);
    font-weight: 500;
    font-size: 1.1rem;
}

.status-active {
    color: #00ff80;
    font-weight: 700;
}

/* Enlaces principales */
.project-links-main {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.btn-demo, .btn-code {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-demo {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: var(--dark-color);
    box-shadow: var(--neon-glow);
}

.btn-code {
    background: rgba(255, 255, 255, 0.1);
    color: var(--light-color);
    border: 2px solid rgba(255, 0, 128, 0.3);
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.2);
}

.btn-demo:hover, .btn-code:hover {
    transform: translateY(-5px);
}

.btn-demo:hover {
    box-shadow: 0 0 30px var(--primary-color);
}

.btn-code:hover {
    border-color: var(--accent-color);
    box-shadow: var(--neon-pink-glow);
}

/* Contenido del proyecto */
.project-content {
    background: rgba(26, 26, 46, 0.6);
    border-radius: 15px;
    padding: 40px;
    margin-top: 40px;
    border: 1px solid rgba(0, 243, 255, 0.2);
}

.content-section {
    margin-bottom: 50px;
    padding-left: 20px;
    border-left: 4px solid rgba(0, 243, 255, 0.1);
    transition: border-left-color 0.3s ease;
}

.content-section:last-child {
    margin-bottom: 0;
}

.content-section h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    gap: 10px;
}

.content-section h2 i {
    font-size: 1.5rem;
}

/* Descripción */
.description-content p {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.mission, .vision {
    background: rgba(10, 10, 26, 0.8);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(0, 243, 255, 0.2);
}

.mission h3, .vision h3 {
    color: var(--accent-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
}

.mission p, .vision p {
    color: #aaa;
    line-height: 1.6;
}

/* Grid de screenshots */
.screenshot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.screenshot-card {
    background: rgba(26, 26, 46, 0.8);
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgba(0, 243, 255, 0.3);
    transition: transform 0.3s ease;
}

.screenshot-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.screenshot-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.screenshot-info {
    padding: 15px;
}

.screenshot-info h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.screenshot-info p {
    color: #aaa;
    font-size: 0.9rem;
}

/* Características */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.feature-card {
    background: rgba(10, 10, 26, 0.8);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(255, 0, 128, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.3);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 15px;
    text-shadow: 0 0 10px var(--accent-color);
}

.feature-card h3 {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.feature-card p {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Características implementadas */
.feature-implemented {
    background: rgba(0, 255, 0, 0.1);
    border-left: 4px solid #00ff00;
}

.feature-implemented i {
    color: #00ff00;
}

.checkmark {
    color: #00ff00;
    font-weight: bold;
    margin-right: 5px;
}

.featured-implemented {
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.1), rgba(0, 243, 255, 0.1));
    border: 2px solid #00ff00;
}

/* Arquitectura técnica */
.architecture-diagram {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.arch-layer {
    background: rgba(10, 10, 26, 0.8);
    padding: 25px;
    border-radius: 10px;
    border-top: 4px solid;
}

.frontend {
    border-top-color: var(--primary-color);
}

.backend {
    border-top-color: var(--secondary-color);
}

.database {
    border-top-color: var(--accent-color);
}

.arch-layer h3 {
    color: var(--light-color);
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
}

.arch-layer ul {
    list-style: none;
}

.arch-layer li {
    color: #ccc;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.arch-layer li:last-child {
    border-bottom: none;
}

.arch-layer li::before {
    content: '▸';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    text-shadow: 0 0 8px var(--primary-color);
}

.arch-layer li strong {
    color: var(--light-color);
    font-weight: 600;
}

/* Stack tecnológico real */
.tech-stack-real {
    background: rgba(26, 26, 46, 0.8);
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    border: 2px solid rgba(0, 243, 255, 0.3);
}

.tech-category {
    margin-bottom: 25px;
}

.tech-category:last-child {
    margin-bottom: 0;
}

.tech-category h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    gap: 10px;
}

.tech-category ul {
    list-style: none;
}

.tech-category li {
    color: #ccc;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-category li:last-child {
    border-bottom: none;
}

.tech-category li::before {
    content: '▸';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    text-shadow: 0 0 8px var(--primary-color);
}

.tech-category li strong {
    color: var(--light-color);
    font-weight: 600;
}

/* Deployment info */
.deployment-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.deployment-card {
    background: rgba(26, 26, 46, 0.8);
    border-radius: 10px;
    padding: 25px;
    border-left: 4px solid;
}

.deployment-backend {
    border-left-color: #00b894;
}

.deployment-frontend {
    border-left-color: #0984e3;
}

.deployment-database {
    border-left-color: #a29bfe;
}

.deployment-card h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-family: var(--font-heading);
}

.deployment-url {
    display: inline-block;
    background: rgba(0, 243, 255, 0.1);
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 5px;
    margin-top: 10px;
    font-family: monospace;
    font-size: 0.9rem;
    border: 1px solid rgba(0, 243, 255, 0.3);
}

/* Desafíos */
.challenges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.challenge-card {
    background: rgba(10, 10, 26, 0.8);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(0, 243, 255, 0.2);
    transition: all 0.3s ease;
}

.challenge-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
}

.challenge-card h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    gap: 10px;
}

.challenge-icon {
    font-size: 1.5rem;
}

.challenge-card p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 10px;
}

.challenge-card p strong {
    color: var(--light-color);
    font-weight: 600;
}

/* Impacto social */
.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: rgba(10, 10, 26, 0.8);
    padding: 25px 15px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 0, 128, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(255, 0, 128, 0.3);
}

.stat-card i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 10px;
    text-shadow: 0 0 10px var(--accent-color);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--light-color);
    font-family: var(--font-heading);
    margin: 10px 0;
}

.stat-label {
    display: block;
    color: #aaa;
    font-size: 0.9rem;
}

.impact-description p {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.impact-list {
    list-style: none;
    margin: 20px 0;
}

.impact-list li {
    color: #ccc;
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.impact-list li:last-child {
    border-bottom: none;
}

.impact-list li::before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
    text-shadow: 0 0 8px var(--primary-color);
}

/* Roadmap */
.roadmap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.roadmap-phase {
    background: rgba(10, 10, 26, 0.8);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(0, 243, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.roadmap-phase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
}

.current::before {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.next::before {
    background: linear-gradient(to right, var(--secondary-color), var(--accent-color));
}

.future::before {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
}

.phase-header {
    margin-bottom: 20px;
}

.phase-badge {
    display: inline-block;
    background: rgba(0, 0, 0, 0.3);
    color: var(--light-color);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-family: var(--font-heading);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.current .phase-badge {
    background: rgba(0, 243, 255, 0.2);
    color: var(--primary-color);
}

.next .phase-badge {
    background: rgba(157, 0, 255, 0.2);
    color: var(--secondary-color);
}

.future .phase-badge {
    background: rgba(255, 255, 255, 0.1);
    color: #aaa;
}

.phase-header h3 {
    color: var(--light-color);
    font-size: 1.3rem;
    font-family: var(--font-heading);
}

.roadmap-phase ul {
    list-style: none;
}

.roadmap-phase li {
    color: #ccc;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.roadmap-phase li:last-child {
    border-bottom: none;
}

.roadmap-phase li::before {
    position: absolute;
    left: 0;
    font-weight: bold;
}

.current li::before {
    content: '✓';
    color: var(--primary-color);
    text-shadow: 0 0 8px var(--primary-color);
}

.next li::before, .future li::before {
    content: '→';
    color: #aaa;
}

/* Call to Action */
.project-cta {
    text-align: center;
    padding: 40px;
    background: rgba(10, 10, 26, 0.8);
    border-radius: 15px;
    border: 2px solid rgba(0, 243, 255, 0.3);
    margin-top: 50px;
}

.project-cta h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.project-cta p {
    color: #ccc;
    max-width: 600px;
    margin: 0 auto 25px;
    line-height: 1.6;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: var(--dark-color);
    box-shadow: var(--neon-glow);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--light-color);
    border: 2px solid rgba(255, 0, 128, 0.3);
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.2);
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-5px);
}

.btn-primary:hover {
    box-shadow: 0 0 30px var(--primary-color);
}

.btn-secondary:hover {
    border-color: var(--accent-color);
    box-shadow: var(--neon-pink-glow);
}

/* Responsive */
@media (max-width: 768px) {
    .project-detail-section {
        padding-top: 150px;
    }
    
    .project-title {
        font-size: 2rem;
    }
    
    .project-subtitle {
        font-size: 1rem;
    }
    
    .project-hero-image img {
        height: 250px;
    }
    
    .project-tech-banner {
        padding: 10px;
        gap: 8px;
    }
    
    .project-tech-banner span {
        padding: 5px 10px;
        font-size: 0.8rem;
    }
    
    .project-meta-info {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px;
    }
    
    .project-links-main {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-demo, .btn-code {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .project-content {
        padding: 20px;
    }
    
    .content-section {
        padding-left: 15px;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .screenshot-grid,
    .features-grid,
    .architecture-diagram,
    .challenges-grid,
    .impact-stats,
    .roadmap,
    .deployment-info,
    .tech-stack-real {
        grid-template-columns: 1fr;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
    }
    
    .screenshot-card img {
        height: 150px;
    }
    
    .deployment-card {
        padding: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (min-width: 1200px) {
    .screenshot-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .architecture-diagram {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .challenges-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .deployment-info {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .impact-stats {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .roadmap {
        grid-template-columns: repeat(3, 1fr);
    }
}
/* ============================================
   LIGHTBOX SIMPLE PARA SCREENSHOTS
   ============================================ */

/* Contenedor de imagen con overlay */
.image-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.screenshot-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 243, 255, 0);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(0px);
}

.image-overlay i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.image-overlay span {
    font-size: 1rem;
    font-weight: bold;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.screenshot-card:hover .image-overlay {
    opacity: 1;
    background: rgba(0, 243, 255, 0.7);
    backdrop-filter: blur(5px);
}

.screenshot-card:hover .image-overlay i {
    transform: scale(1);
}

.screenshot-card:hover .screenshot-img {
    transform: scale(1.05);
}

/* Lightbox simple */
.simple-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
}

.simple-lightbox.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(15px);
}

.lightbox-modal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 900px;
    background: rgba(26, 26, 46, 0.95);
    border-radius: 15px;
    border: 3px solid var(--primary-color);
    box-shadow: 
        0 0 50px var(--primary-color),
        0 25px 50px rgba(0, 0, 0, 0.8);
    overflow: hidden;
    animation: modalSlideUp 0.4s ease;
}

@keyframes modalSlideUp {
    from { 
        transform: translate(-50%, -40%);
        opacity: 0; 
    }
    to { 
        transform: translate(-50%, -50%);
        opacity: 1; 
    }
}

.lightbox-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-close-btn:hover {
    background: var(--primary-color);
    color: var(--dark-color);
    transform: rotate(90deg);
    box-shadow: 0 0 20px var(--primary-color);
}

.lightbox-image-wrapper {
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 26, 0.8);
    padding: 20px;
}

#lightboxImage {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.lightbox-controls {
    padding: 20px;
    background: rgba(10, 10, 26, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    border-top: 1px solid rgba(0, 243, 255, 0.3);
}

.lightbox-prev,
.lightbox-next {
    width: 50px;
    height: 50px;
    background: rgba(0, 243, 255, 0.1);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary-color);
    color: var(--dark-color);
    transform: scale(1.1);
    box-shadow: 0 0 20px var(--primary-color);
}

#imageCounter {
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    min-width: 80px;
    text-align: center;
    text-shadow: 0 0 10px var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .lightbox-modal {
        width: 95%;
    }
    
    .lightbox-image-wrapper {
        height: 300px;
        padding: 15px;
    }
    
    .lightbox-controls {
        padding: 15px;
        gap: 20px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    #imageCounter {
        font-size: 1rem;
    }
    
    .lightbox-close-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}