        :root {
            --primary: #0071e3;
            --primary-hover: #0062c4;
            --text-primary: #1d1d1f;
            --text-secondary: #555;
            --bg-primary: #ffffff;
            --bg-secondary: #f5f5f7;
            --bg-tertiary: #e6e6ea;
            --shadow-color: rgba(0, 0, 0, 0.08);
            --card-bg: #ffffff;
            --quote-bg: #f8f8fa;
            --border-radius: 2rem;
            --transition-all: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            --header-height: 70px;
            --skeleton-color: rgba(0, 0, 0, 0.05);
            --skeleton-animation: skeleton-loading 1.5s ease-in-out infinite;
        }

        @media (prefers-color-scheme: dark) {
            :root {
                --primary: #0a84ff;
                --primary-hover: #399cff;
                --text-primary: #f5f5f7;
                --text-secondary: #a1a1a6;
                --bg-primary: #1c1c1e;
                --bg-secondary: #2c2c2e;
                --bg-tertiary: #3a3a3c;
                --shadow-color: rgba(0, 0, 0, 0.3);
                --card-bg: #2c2c2e;
                --quote-bg: #3a3a3c;
                --skeleton-color: rgba(255, 255, 255, 0.05);
            }
        }

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

        html {
            scroll-behavior: smooth;
        }


        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-primary);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 2rem 1rem;
            line-height: 1.6;
            margin-bottom: 50px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            background-color: var(--bg-primary);
            overflow-x: hidden;
        }

        .container {
            width: 100%;
            max-width: 600px;
            display: flex;
            flex-direction: column;
            gap: 2rem;
            position: relative;
            z-index: 2;
        }

        /* Header Section */
        .header {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            text-align: center;
            position: relative;
            padding-top: 1rem;
        }

.profile-container {
    position: relative;
    margin-bottom: 1rem;
}

.profile-picture {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--skeleton-color);
    border: 4px solid var(--bg-secondary);
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease;

    /* Subtle L3UI-style internal edge lighting */
    box-shadow:
        inset 2px 2px 4px rgba(255, 255, 255, 0.1),  /* top-left highlight */
        inset -2px -2px 3px rgba(0, 0, 0, 0.05),      /* bottom-right shade */
        0 2px 6px rgba(0, 0, 0, 0.06);                /* soft lift */
}

.profile-picture:hover {
    transform: scale(1.05);

    /* Add more depth and light when hovered */
    box-shadow:
        inset 3px 3px 6px rgba(255, 255, 255, 0.12),  /* stronger light reflection */
        inset -2px -2px 4px rgba(0, 0, 0, 0.06),      /* deeper shade */
        0 6px 12px rgba(0, 0, 0, 0.08),               /* elevated lift */
        0 0 12px rgba(var(--primary-rgb), 0.1);       /* optional glow */
}

.profile-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 50%;
}

.profile-picture.loaded img {
    opacity: 1;
}

        .name {
            font-size: 1.8rem;
            font-weight: 600;
            margin-top: 0.5rem;
            color: var(--text-primary);
            position: relative;
        }

        .username {
            font-size: 1rem;
            font-weight: 400;
            color: var(--text-secondary);
        }


        /* Links Section */
        .links-section {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            width: 100%;
        }

.link-item {

    border-radius: 30px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    border: 1px solid var(--bg-secondary);
    position: relative;
    overflow: hidden;

    /* Blur effect */
    backdrop-filter: blur(6px) saturate(160%);
    -webkit-backdrop-filter: blur(6px) saturate(160%);

    /* Subtle 3D edges - preserved exactly */
    box-shadow:
        inset 0.5px 1px 0 rgba(255, 255, 255, 0.2),
        inset -1px -1.5px 0 rgba(0, 0, 0, 0.05),
        0 1px 1.5px rgba(0, 0, 0, 0.08),
        0 2px 4px rgba(0, 0, 0, 0.06);
}


        .link-item::before,
        .link-item::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 30px;
            pointer-events: none;
            transition: opacity 0.3s ease, background 0.3s ease;
            opacity: 0;
            z-index: 0;
        }

        .link-item::before {
            background: radial-gradient(circle at 55px center, var(--primary) 0%, transparent 70%);
            filter: blur(22px);
        }

        .link-item::after {
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent);
        }

        .link-item:hover {
            transform: translateY(-1.5px);
            box-shadow:
                inset 0.5px 1px 0 rgba(255, 255, 255, 0.22),
                inset -1px -1.5px 0 rgba(0, 0, 0, 0.07),
                0 4px 8px rgba(0, 0, 0, 0.1),
                0 8px 14px rgba(0, 0, 0, 0.08);
        }

        .link-item:hover::before,
        .link-item:hover::after {
            opacity: 1;
        }

        .link-icon {
            width: 44px;
            height: 44px;
            border-radius: 15px;
            background-color: var(--bg-secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.3s ease;
            z-index: 1;

            box-shadow:
                inset 1px 1px 0 rgba(255, 255, 255, 0.15),
                inset -1px -1px 0 rgba(0, 0, 0, 0.05);
        }

        .link-item:hover .link-icon {
            transform: scale(1.05);
            border: 1px solid var(--primary);
            background-color: var(--primary);
            box-shadow:
                0 0 0 1px rgba(var(--primary-rgb), 0.1),
                0 0 8px rgba(var(--primary-rgb), 0.3),
                0 0 20px rgba(var(--primary-rgb), 0.35);
        }

        .link-icon i {
            font-size: 1.29rem;
            color: var(--primary);
            transition: all 0.3s ease;
        }

        .link-item:hover .link-icon i {
            color: white;
        }

        .link-text {
            flex-grow: 1;
            z-index: 1;
        }

        .link-title {
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 0.2rem;
            color: var(--text-primary);
        }

        .link-url {
            font-size: 0.8rem;
            color: var(--text-secondary);
        }

        .link-arrow {
            color: var(--text-secondary);
            transition: all 0.3s ease;
            z-index: 1;
        }

        .link-item:hover .link-arrow {
            color: var(--primary);
            transform: translateX(4px);
        }

        /* Bottom Sheet */
        .bottom-sheet {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--card-bg);
            border-radius: 35px 35px 0 0;
            padding: 1.5rem;
            transform: translateY(100%);
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            z-index: 1000;
            max-height: 80vh;
            overflow-y: auto;
            overscroll-behavior: contain;

            /* 3D Look: Edge lighting from top-left */
            box-shadow:
                inset 1px 1px 0 rgba(255, 255, 255, 0.15),
                /* inner top-left edge highlight */
                inset -1.5px -2px 0 rgba(0, 0, 0, 0.05),
                /* inner bottom-right edge shading */
                0 -3px 4px rgba(0, 0, 0, 0.05),
                /* top shadow for lift */
                0 -10px 16px rgba(0, 0, 0, 0.08);
            /* soft main lift */
        }

        .bottom-sheet.active {
            transform: translateY(0);
        }

        /* Header */
        .bottom-sheet-header {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid var(--bg-secondary);
            position: relative;
        }

        .bottom-sheet-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--text-primary);
        }

        /* Close button */
        .close-sheet {
            background: none;
            border: none;
            color: var(--text-secondary);
            font-size: 1.5rem;
            cursor: pointer;
            transition: color 0.2s ease;
            position: absolute;
            right: 0;
        }

        .close-sheet:hover {
            color: var(--primary);
        }

        /* Profile Section */
        .profile-details {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .profile-row {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .profile-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--bg-secondary);

            /* Subtle edge lighting to pop avatar */
            box-shadow:
                inset 1px 1px 1px rgba(255, 255, 255, 0.15),
                2px 2px 6px rgba(0, 0, 0, 0.05);
        }

        .profile-info {
            flex: 1;
        }

        .profile-name {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.3rem;
            color: var(--text-primary);
        }

        .profile-bio {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.5;
        }

        /* Detail Item Rows */
        .detail-item {
            margin-bottom: 1rem;
        }

        .detail-label {
            font-size: 0.8rem;
            color: var(--text-secondary);
            margin-bottom: 0.3rem;
            display: block;
        }

        .detail-value {
            font-size: 0.95rem;
            color: var(--text-primary);
            font-weight: 500;
        }

        /* Squad Card */
        .squad-card {
            background: var(--bg-secondary);
            border-radius: 16px;
            padding: 1rem;
            margin-top: 1rem;
            display: flex;
            gap: 1rem;
            align-items: center;

            /* Apple-like raised card with edge light */
            box-shadow:
                inset 0.5px 0.5px 0 rgba(255, 255, 255, 0.08),
                2px 2px 6px rgba(0, 0, 0, 0.08);
        }

        .squad-image {
            width: 80px;
            height: 80px;
            border-radius: 12px;
            object-fit: cover;
            box-shadow:
                1px 1px 2px rgba(0, 0, 0, 0.05),
                inset 0.5px 0.5px 0 rgba(255, 255, 255, 0.1);
        }

        .squad-info {
            flex: 1;
        }

        .squad-name {
            font-weight: 600;
            margin-bottom: 0.3rem;
            color: var(--text-primary);
        }

        .squad-description {
            font-size: 0.85rem;
            color: var(--text-secondary);
            line-height: 1.4;
        }

        /* Overlay */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        .overlay.active {
            opacity: 1;
            pointer-events: all;
        }

        /* Footer */
        #pageFooter {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 10px 0;
            border-radius: 50px 50px 0 0;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(3px) saturate(150%);
            -webkit-backdrop-filter: blur(3px) saturate(150%);
            border-top: 0.3px solid rgba(255, 255, 255, 0.3);
            box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2);
            text-align: center;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transform: translateY(100%);
            opacity: 0;
            transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .footer-logo {
            height: 50px;
            width: auto;
            opacity: 0.8;
            transition: all 0.3s ease;
            filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
        }

        /* Particles */
        .particles-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        @keyframes slideUp {
            from {
                transform: translateY(20px);
                opacity: 0;
            }

            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }

            100% {
                transform: scale(1);
            }
        }

        /* Responsive Adjustments */
        @media (max-width: 480px) {
            .container {
                padding: 1rem;
            }

            .name {
                font-size: 1.5rem;
            }

            .link-item {
                padding: 1rem;
            }

            .bottom-sheet {
                padding: 1rem;
            }
        }

        @media (min-width: 768px) {
            .bottom-sheet {
                left: 50%;
                right: auto;
                transform: translate(-50%, 100%);
                width: 500px;
                /* or any max width you prefer */
                border-radius: 30px;
            }

            .bottom-sheet.active {
                transform: translate(-50%, 0);
            }
        }

        /* Members scroll container */
        .members-scroll-container {
            overflow-x: auto;
            white-space: nowrap;
            padding: 10px;
            margin: 10px;
            scrollbar-width: thin;
            scrollbar-color: #ccc transparent;
            -webkit-overflow-scrolling: touch;
            /* Smooth scrolling on iOS */
            outline: none;
            /* For keyboard focus */
        }

        /* Accessibility focus styles */
        .members-scroll-container:focus-visible {
            box-shadow: 0 0 0 2px #4a90e2;
        }

        /* Member cards - now using aspect-ratio */
        .member-card {
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            width: 80px;
            margin-right: 15px;
            text-align: center;
            transition: transform 0.2s ease;
            position: relative;
        }

        /* Focus styles for keyboard navigation */
        .member-card:focus-visible {
            outline: 2px solid #4a90e2;
            outline-offset: 2px;
            border-radius: 4px;
        }

        .member-card img {
            width: 60px;
            height: 60px;
            aspect-ratio: 1/1;
            /* Ensures perfect square */
            object-fit: cover;
            /* Prevents stretching */
            border-radius: 50%;
            border: 2px solid #f0f0f0;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            background-color: #f8f8f8;
            /* Fallback if image missing */
        }

        /* Prevent image compression */
        .member-card img {
            max-width: none;
            max-height: none;
            min-width: 0;
            min-height: 0;
        }

        .member-card p {
            margin-top: 8px;
            font-size: 12px;
            white-space: normal;
            word-wrap: break-word;
            color: var(--text-primary);
        }

        /* Keyboard navigation styles */
        .member-card[tabindex="0"] {
            cursor: pointer;
        }

        .member-card[tabindex="0"]:hover,
        .member-card[tabindex="0"]:focus {
            transform: scale(1.05);
        }
            :root {
                --gallery-padding: 1.5rem;
                --image-gap: 1.25rem;
                --image-border-radius: 16px;
                --image-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
                --transition-speed: 0.4s;
            }

            .image-gallery-container {
                max-width: 100%;
                margin: 1rem auto;
                margin-left: -28px;
                padding: 0 1rem;
                position: relative;
            }

            .gallery-header {
                display: flex;
                flex-wrap: wrap;
                justify-content: space-between;
                align-items: flex-start;
                margin-bottom: 2rem;
                padding: 0 var(--gallery-padding);
                gap: 1.25rem;
                /* adds spacing between elements inside */
            }

            .gallery-header h2 {
                font-size: 1.75rem;
                color: var(--text-primary);
                margin: 0;
                font-weight: 600;
                flex: 1 1 100%;
                /* ensures h2 takes full width on wrap */
            }

            .scroll-controls {
                display: flex;
                gap: 0.75rem;
                align-self: flex-start;
            }

            .scroll-btn {
                background: #fff;
                border: 1px solid #e0e0e0;
                border-radius: 50%;
                width: 40px;
                height: 40px;
                display: flex;
                align-items: center;
                justify-content: center;
                cursor: pointer;
                transition: all 0.3s ease;
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            }

            .scroll-btn:hover {
                background: #f5f5f5;
                transform: scale(1.05);
            }

            .scroll-btn:active {
                transform: scale(0.95);
            }

            .image-scroll-gallery {
                position: relative;
                overflow-x: auto;
                scroll-behavior: smooth;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                /* Hide scrollbar for Firefox */
                padding: 0 var(--gallery-padding);
            }

            .image-scroll-gallery::-webkit-scrollbar {
                display: none;
                /* Hide scrollbar for Chrome/Safari */
            }

            .scroll-container {
                display: flex;
                gap: var(--image-gap);
                padding-bottom: 1rem;
                /* Space for scrollbar if visible */
            }

            .gallery-item {
                position: relative;
                flex: 0 0 auto;
                width: 280px;
                border-radius: var(--image-border-radius);
                overflow: hidden;
                transition: transform var(--transition-speed) ease;
                box-shadow: var(--image-shadow);
            }

            .gallery-item:hover {
                transform: translateY(-5px);
            }

            .gallery-item img {
                width: 100%;
                height: 180px;
                object-fit: cover;
                display: block;
                transition: filter var(--transition-speed) ease;
                filter: brightness(0.9);
            }

            .gallery-item:hover img {
                filter: brightness(1);
            }

            .image-caption {
                position: absolute;
                bottom: 0;
                left: 0;
                right: 0;
                background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
                color: white;
                padding: 1rem;
                font-weight: 500;
                opacity: 0;
                transform: translateY(10px);
                transition: all var(--transition-speed) ease;
            }

            .gallery-item:hover .image-caption {
                opacity: 1;
                transform: translateY(0);
            }

            /* Responsive adjustments */
            @media (max-width: 768px) {
                .gallery-item {
                    width: 220px;
                }

                .gallery-header {
                    flex-direction: column;
                    align-items: flex-start;
                    gap: 1rem;
                }

                .scroll-controls {
                    align-self: flex-end;
                }
            }

            @media (max-width: 480px) {
                .gallery-item {
                    width: 200px;
                }

                .gallery-header h2 {
                    font-size: 1.5rem;
                }

                .scroll-btn {
                    width: 36px;
                    height: 36px;
                }
            }

            @media (min-width: 1024px) {
                .gallery-header {
                    padding: 0 2.5rem;
                    margin-bottom: 2.5rem;
                }

                .gallery-header p {
                    font-size: 1.1rem;
                }

                .scroll-controls {
                    margin-top: 0.5rem;
                }
            }
.profile-actions {
  display: flex;
  justify-content: space-around;
  margin-top: 1.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(120, 120, 120, 0.2);
  position: relative;
}

.action-link {
  text-decoration: none;
  font-weight: 600;
  color: var(--accent-color);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

.action-link span {
  position: relative;
  z-index: 2;
}

.action-link i {
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

/* License Link (Blue) */
.license-link {
  color: #3a86ff;
}

.license-link:hover {
  color: white;
  transform: translateY(-2px);
}

.license-link:hover i {
  transform: scale(1.1);
}

.license-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #3a86ff, #4cc9f0);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  border-radius: 50px;
}

.license-link:hover::before {
  opacity: 1;
}

.license-link::after {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(45deg, #3a86ff, #4cc9f0, #3a86ff);
  background-size: 200% 200%;
  z-index: 0;
  opacity: 0;
  border-radius: 60px;
  animation: glow-pulse 3s linear infinite;
  filter: blur(8px);
  transition: opacity 0.4s ease;
}

.license-link:hover::after {
  opacity: 0.7;
}

/* Donate Link (Peach) */
.donate-link {
  color: #ff6b6b;
}

.donate-link:hover {
  color: white;
  transform: translateY(-2px);
}

.donate-link:hover i {
  transform: scale(1.1) rotate(-5deg);
}

.donate-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #ff6b6b, #ffb56b);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  border-radius: 50px;
}

.donate-link:hover::before {
  opacity: 1;
}

.donate-link::after {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(45deg, #ff6b6b, #ffb56b, #ff6b6b);
  background-size: 200% 200%;
  z-index: 0;
  opacity: 0;
  border-radius: 60px;
  animation: glow-pulse 3s linear infinite;
  filter: blur(8px);
  transition: opacity 0.4s ease;
}

.donate-link:hover::after {
  opacity: 0.7;
}

/* Animation */
@keyframes glow-pulse {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

    .gallery-item {
        position: relative;
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .image-unavailable {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #202020 0%, #2a2a2a 100%);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: white;
        text-align: center;
        padding: 15px;
        border-radius: inherit;
        z-index: 2;
        pointer-events: none;
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.1),
            0 4px 12px rgba(0, 0, 0, 0.2);
        transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        overflow: hidden;
    }
    
    .image-unavailable::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(
            to bottom right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.03) 30%,
            rgba(255, 255, 255, 0.08) 45%,
            rgba(255, 255, 255, 0.03) 60%,
            rgba(255, 255, 255, 0) 100%
        );
        transform: rotate(30deg);
        opacity: 0;
        transition: opacity 0.6s ease, transform 0.6s ease;
    }
    
    .gallery-item:hover .image-unavailable::before {
        opacity: 1;
        transform: translateX(100%) rotate(30deg);
    }
    
    .image-unavailable i {
        font-size: 24px;
        margin-bottom: 10px;
        color: #ff6b6b;
        filter: drop-shadow(0 0 8px rgba(255, 107, 107, 0.4));
        transition: all 0.5s ease;
    }
    
    .image-unavailable span {
        font-size: 14px;
        line-height: 1.4;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
        transition: all 0.3s ease;
    }
    
    .gallery-item:hover .image-unavailable {
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.2),
            0 6px 20px rgba(0, 0, 0, 0.3);
        background: linear-gradient(135deg, #252525 0%, #303030 100%);
    }
    
    .gallery-item:hover .image-unavailable i {
        color: #ff8ba2;
        filter: drop-shadow(0 0 12px rgba(255, 139, 162, 0.6));
        transform: scale(1.1);
    }
    
    .gallery-item:hover .image-unavailable span {
        transform: translateY(-2px);
    }
    
    /* Dynamic light source effect */
    .image-unavailable::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(
            circle at var(--mouse-x) var(--mouse-y),
            rgba(255, 255, 255, 0.15) 0%,
            rgba(255, 255, 255, 0) 70%
        );
        opacity: 0;
        transition: opacity 0.4s ease;
        pointer-events: none;
    }
    
    .gallery-item:hover .image-unavailable::after {
        opacity: 1;
    }