    <style>
        body { background-color: #f4f7f6; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
        .gallery-container { padding: 2rem 0 5rem 0; }
        .btn-back {
            transition: all 0.3s ease;
            font-weight: 600;
            border-radius: 10px;
        }
        .btn-back:hover {
            transform: translateX(-5px);
            background-color: #0d6efd;
            color: white;
        }
        .main-title {
            color: #0d6efd;
            letter-spacing: -1px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.05);
        }
        .project-desc {
            max-width: 850px;
            margin: 0 auto;
            background: white;
            border-left: 5px solid #0d6efd;
            padding: 1.8rem;
            border-radius: 8px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.05);
        }
        .tech-badge {
            background-color: #f1f3f5;
            color: #0d6efd;
            border: 1px solid #dee2e6;
            font-weight: 600;
            font-size: 0.8rem;
            margin: 3px;
            padding: 5px 12px;
        }
        .img-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            overflow: hidden;
            border: none;
        }
        .img-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.12);
        }
        .img-wrapper {
            height: 220px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #fff;
            padding: 20px;
        }
        .img-wrapper img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }
        .img-info {
            padding: 12px;
            background-color: #ffffff;
            border-top: 1px solid #f1f1f1;
        }
        .img-name {
            font-size: 0.9rem;
            color: #333;
            margin: 0;
            text-overflow: ellipsis;
            white-space: nowrap;
            overflow: hidden;
            font-weight: 600;
        }
    </style>