.page-section {
        padding: 4rem 0;
    }

    .page-title {
        font-size: 3rem;
        font-weight: 900;
        font-family: 'Orbitron', sans-serif;
        text-align: center;
        color: white;
        text-shadow: 0 0 30px rgba(255, 165, 0, 0.4);
        margin-bottom: 1rem;
        letter-spacing: 2px;
    }

    .page-desc {
        font-size: 1.2rem;
        text-align: center;
        color: #e0e0e0;
        max-width: 600px;
        margin: 0 auto 3rem;
        line-height: 1.6;
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }

    .gallery-card {
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        aspect-ratio: 1;
        cursor: pointer;
    }

    .gallery-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.4s ease;
    }

    .gallery-card:hover img {
        transform: scale(1.1) rotate(1deg);
    }

    .gallery-info {
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
        display: flex;
        align-items: flex-end;
        padding: 1.5rem;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .gallery-card:hover .gallery-info {
        opacity: 1;
    }

    .gallery-info span {
        color: white;
        font-size: 1.2rem;
        font-weight: 700;
    }

    .lightbox {
        display: none;
        position: fixed;
        z-index: 2000;
        inset: 0;
        background-color: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(10px);
        align-items: center;
        justify-content: center;
        padding: 2rem;
        cursor: pointer;
    }

    .lightbox-content {
        max-width: 90%;
        max-height: 90%;
        object-fit: contain;
        border: 2px solid rgba(255, 165, 0, 0.3);
        box-shadow: 0 0 50px rgba(0, 0, 0, 1), 0 0 30px rgba(255, 165, 0, 0.2);
        border-radius: 8px;
        animation: zoomIn 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    @keyframes zoomIn {
        from {
            transform: scale(0.9);
            opacity: 0;
        }

        to {
            transform: scale(1);
            opacity: 1;
        }
    }

    .lightbox-close {
        position: absolute;
        top: 30px;
        right: 40px;
        color: white;
        font-size: 50px;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.3s ease;
        text-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
        opacity: 0.7;
        line-height: 1;
    }

    .lightbox-close:hover {
        color: #ffa500;
        transform: scale(1.2) rotate(90deg);
        opacity: 1;
    }

    #lightbox-caption {
        position: absolute;
        bottom: 30px;
        color: white;
        font-family: 'Orbitron', sans-serif;
        font-size: 1.5rem;
        font-weight: 700;
        text-shadow: 0 0 20px rgba(255, 165, 0, 0.8);
        background: rgba(0, 0, 0, 0.5);
        padding: 0.5rem 2rem;
        border-radius: 50px;
        pointer-events: none;
    }

    @media (max-width: 768px) {
        .page-title {
            font-size: 2rem;
        }

        .gallery-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .lightbox-close {
            top: 20px;
            right: 20px;
            font-size: 40px;
        }

        #lightbox-caption {
            font-size: 1rem;
            width: 80%;
            text-align: center;
        }
    }