        /* Gallery styles */
        .gallery-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            padding: 20px;
            max-width: 800px;
            margin: 0 auto;
        }
        .gallery-item {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(57, 197, 187, 0.3);
            border-radius: 10px;
            padding: 10px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }
        .gallery-item::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.1) 50%,
                rgba(255, 255, 255, 0) 100%
            );
            transform: rotate(45deg);
            transition: transform 0.5s;
            opacity: 0;
            pointer-events: none;
        }
        .gallery-item:hover::before {
            opacity: 1;
            transform: rotate(45deg) translate(50%, 50%);
        }
        .gallery-item:hover {
            transform: scale(1.05);
            background: rgba(57, 197, 187, 0.1);
            border-color: rgba(255, 107, 107, 0.6); /* Morning sun accent */
            box-shadow: 0 0 25px rgba(255, 107, 107, 0.3);
        }