 
        :root {
            --dark-bg: #0f0f0f;
            --darker-bg: #080808;
            --accent-red: #e63946;
            --accent-red-dark: #c1121f;
            --text-light: #f5f5f5;
            --text-gray: #d1d1d1;
            --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

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

        body {
            font-family: 'Montserrat', sans-serif;
            background: linear-gradient(135deg, var(--darker-bg), var(--dark-bg));
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
            min-height: 100vh;
            position: relative;
        }

        body::before {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                radial-gradient(circle at 10% 20%, rgba(230, 57, 70, 0.05) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(230, 57, 70, 0.05) 0%, transparent 20%);
            pointer-events: none;
            z-index: -1;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        header {
            padding: 30px 0;
            text-align: center;
            position: relative;
            z-index: 10;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 4px;
            background: linear-gradient(to right, var(--text-light), var(--accent-red));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 10px;
            position: relative;
            display: inline-block;
        }

        .logo::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--accent-red);
            border-radius: 2px;
        }

        .subtitle {
            font-size: 1.1rem;
            color: var(--text-gray);
            font-weight: 300;
            letter-spacing: 8px;
            text-transform: uppercase;
            margin-top: 10px;
        }

        /* Gallery Styles */
        .gallery-container {
            padding: 40px 0 80px;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            padding: 20px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            cursor: pointer;
            aspect-ratio: 3/4;
            transform: scale(0.98);
            transition: var(--transition);
        }

        .gallery-item:hover {
            transform: scale(1);
            box-shadow: 0 15px 40px rgba(230, 57, 70, 0.3);
            z-index: 2;
        }

        .gallery-item::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.8) 100%);
            z-index: 1;
            opacity: 0;
            transition: var(--transition);
        }

        .gallery-item:hover::before {
            opacity: 1;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }

        .item-info {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 20px;
            z-index: 2;
            opacity: 0;
            transform: translateY(20px);
            transition: var(--transition);
        }

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

        .item-title {
            font-weight: 500;
            font-size: 1.1rem;
            margin-bottom: 5px;
            color: var(--text-light);
        }

        .item-date {
            font-size: 0.85rem;
            color: var(--text-gray);
            font-weight: 300;
        }

        /* Lightbox Styles */
        .lightbox {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(15, 15, 15, 0.95);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            opacity: 0;
            pointer-events: none;
            transition: var(--transition);
        }

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

        .lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .lightbox-img {
            max-width: 100%;
            max-height: 80vh;
            border-radius: 8px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
            transform: scale(0.9);
            opacity: 0;
            transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.4s ease;
        }

        .lightbox.active .lightbox-img {
            transform: scale(1);
            opacity: 1;
        }

        .lightbox-close,
        .lightbox-prev,
        .lightbox-next {
            position: absolute;
            color: var(--text-light);
            font-size: 2rem;
            cursor: pointer;
            transition: var(--transition);
            z-index: 10;
        }

        .lightbox-close {
            top: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(230, 57, 70, 0.3);
        }

        .lightbox-close:hover {
            background: var(--accent-red);
            transform: rotate(90deg);
        }

        .lightbox-prev,
        .lightbox-next {
            top: 50%;
            transform: translateY(-50%);
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(5px);
        }

        .lightbox-prev:hover,
        .lightbox-next:hover {
            background: var(--accent-red);
        }

        .lightbox-prev {
            left: 30px;
        }

        .lightbox-next {
            right: 30px;
        }

        /* Footer */
        footer {
            text-align: center;
            padding: 30px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            color: var(--text-gray);
            font-size: 0.9rem;
            position: relative;
        }

        .heart {
            color: var(--accent-red);
            animation: heartbeat 1.5s infinite;
            display: inline-block;
        }

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

            5% {
                transform: scale(1.1);
            }

            10% {
                transform: scale(1);
            }

            15% {
                transform: scale(1.2);
            }

            50% {
                transform: scale(1);
            }

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

        /* Responsive */
        @media (max-width: 992px) {
            .logo {
                font-size: 2.8rem;
            }

            .subtitle {
                font-size: 0.9rem;
                letter-spacing: 5px;
            }

            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .logo {
                font-size: 2.3rem;
            }

            .subtitle {
                font-size: 0.8rem;
                letter-spacing: 4px;
            }

            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
                gap: 15px;
            }

            .lightbox-prev,
            .lightbox-next {
                width: 45px;
                height: 45px;
                font-size: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .logo {
                font-size: 1.8rem;
                letter-spacing: 2px;
            }

            .subtitle {
                letter-spacing: 3px;
                font-size: 0.7rem;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .lightbox-close {
                top: 15px;
                right: 15px;
                width: 40px;
                height: 40px;
            }
        }
    