 /* Page Header */
        .page-header {
            background: linear-gradient(135deg, rgba(128, 0, 0, 0.95), rgba(92, 0, 0, 0.9)),
                        url('https://images.unsplash.com/photo-1604608672516-f1b9b1a781d8?w=1920&q=80');
            background-size: cover;
            background-position: center;
            padding: 80px 0;
            text-align: center;
            color: var(--white);
        }

        .page-header h1 {
            font-size: 48px;
            margin-bottom: 15px;
        }

        .page-header p {
            font-size: 20px;
            opacity: 0.95;
        }

        /* Breadcrumb */
        .breadcrumb-section {
            background: var(--light-bg);
            padding: 20px 0;
        }

        .breadcrumb {
            display: flex;
            gap: 10px;
            font-size: 14px;
            align-items: center;
        }

        .breadcrumb a {
            color: var(--primary-maroon);
            text-decoration: none;
        }

        .breadcrumb span {
            color: var(--text-light);
        }

        /* Gallery Section */
        .gallery-section {
            padding: 80px 0;
            background: var(--white);
        }

        /* Filter Tabs */
        .gallery-filters {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 12px 30px;
            background: var(--light-bg);
            border: 2px solid var(--border-color);
            border-radius: 30px;
            color: var(--text-dark);
            font-weight: 600;
            font-size: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .filter-btn:hover {
            border-color: var(--primary-maroon);
            color: var(--primary-maroon);
        }

        .filter-btn.active {
            background: linear-gradient(135deg, var(--primary-maroon), var(--dark-maroon));
            color: var(--accent-gold);
            border-color: var(--primary-maroon);
        }

        /* Gallery Grid */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            cursor: pointer;
            height: 300px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px var(--shadow);
        }

        .gallery-image {
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover .gallery-image {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            color: var(--white);
            padding: 20px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }

        .gallery-category {
            font-size: 12px;
            color: var(--accent-gold);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 5px;
        }

        .gallery-title {
            font-size: 16px;
            font-weight: 600;
        }

        .gallery-zoom {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 45px;
            height: 45px;
            background: rgba(255,255,255,0.95);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-maroon);
            font-size: 18px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover .gallery-zoom {
            opacity: 1;
        }

        /* Lightbox */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.95);
            z-index: 9999;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .lightbox.active {
            display: flex;
        }

        .lightbox-content {
            max-width: 90%;
            max-height: 90%;
            position: relative;
        }

        .lightbox-image {
            max-width: 100%;
            max-height: 85vh;
            border-radius: 10px;
        }

        .lightbox-close {
            position: absolute;
            top: -50px;
            right: 0;
            background: var(--white);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-maroon);
            font-size: 24px;
            cursor: pointer;
            border: none;
        }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-maroon);
            font-size: 24px;
            cursor: pointer;
            border: none;
            transition: all 0.3s ease;
        }

        .lightbox-nav:hover {
            background: var(--white);
            transform: translateY(-50%) scale(1.1);
        }

        .lightbox-prev {
            left: -70px;
        }

        .lightbox-next {
            right: -70px;
        }

        .lightbox-info {
            text-align: center;
            margin-top: 20px;
            color: var(--white);
        }

        .lightbox-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .lightbox-category {
            font-size: 14px;
            color: var(--accent-gold);
        }

        /* Video Section */
        .video-section {
            padding: 80px 0;
            background: var(--light-bg);
        }

        .section-title {
            text-align: center;
            font-size: 42px;
            margin-bottom: 15px;
            color: var(--text-dark);
        }

        .section-title span {
            background: linear-gradient(135deg, var(--primary-maroon), var(--accent-gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            text-align: center;
            font-size: 18px;
            color: var(--text-light);
            margin-bottom: 60px;
        }

        .video-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }

        .video-item {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .video-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px var(--shadow);
        }

        .video-thumbnail {
            position: relative;
            width: 100%;
            height: 250px;
            background-size: cover;
            background-position: center;
        }

        .video-play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 70px;
            height: 70px;
            background: rgba(255,255,255,0.95);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-maroon);
            font-size: 30px;
            padding-left: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .video-play-btn:hover {
            background: var(--accent-gold);
            transform: translate(-50%, -50%) scale(1.1);
        }

        .video-content {
            padding: 25px;
        }

        .video-title {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 10px;
        }

        .video-description {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.6;
        }

        /* Stats Section */
        .stats-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--primary-maroon), var(--dark-maroon));
            color: var(--white);
            text-align: center;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 50px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .stat-item {
            padding: 30px;
        }

        .stat-icon {
            font-size: 48px;
            color: var(--accent-gold);
            margin-bottom: 15px;
        }

        .stat-number {
            font-size: 42px;
            font-weight: 700;
            color: var(--accent-gold);
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 16px;
            opacity: 0.9;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .page-header {
                padding: 40px 0;
            }

            .page-header h1 {
                font-size: 24px;
                margin-bottom: 8px;
            }

            .page-header p {
                font-size: 14px;
            }

            .breadcrumb-section {
                padding: 12px 0;
            }

            /* Gallery */
            .gallery-section {
                padding: 30px 0;
            }

            .gallery-filters {
                gap: 8px;
                margin-bottom: 20px;
            }

            .filter-btn {
                padding: 8px 16px;
                font-size: 13px;
                border-radius: 20px;
            }

            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }

            .gallery-item {
                height: 180px;
                border-radius: 10px;
            }

            .gallery-overlay {
                transform: translateY(0);
                padding: 10px;
                background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
            }

            .gallery-category {
                font-size: 10px;
                margin-bottom: 2px;
            }

            .gallery-title {
                font-size: 12px;
            }

            .gallery-zoom {
                width: 32px;
                height: 32px;
                top: 8px;
                right: 8px;
                font-size: 14px;
                opacity: 1;
            }

            /* Lightbox */
            .lightbox {
                padding: 10px;
            }

            .lightbox-content {
                max-width: 100%;
            }

            .lightbox-close {
                top: -40px;
                width: 34px;
                height: 34px;
                font-size: 18px;
            }

            .lightbox-nav {
                width: 36px;
                height: 36px;
                font-size: 16px;
            }

            .lightbox-prev {
                left: 5px;
            }

            .lightbox-next {
                right: 5px;
            }

            .lightbox-info {
                margin-top: 10px;
            }

            .lightbox-title {
                font-size: 16px;
            }

            .lightbox-category {
                font-size: 12px;
            }

            /* Video */
            .video-section {
                padding: 30px 0;
            }

            .section-title {
                font-size: 24px;
                margin-bottom: 8px;
            }

            .section-subtitle {
                font-size: 14px;
                margin-bottom: 25px;
            }

            .video-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .video-item {
                border-radius: 10px;
            }

            .video-thumbnail {
                height: 180px;
            }

            .video-play-btn {
                width: 50px;
                height: 50px;
                font-size: 22px;
            }

            .video-content {
                padding: 14px;
            }

            .video-title {
                font-size: 15px;
                margin-bottom: 6px;
            }

            .video-description {
                font-size: 13px;
            }

            /* Stats */
            .stats-section {
                padding: 30px 0;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }

            .stat-item {
                padding: 15px 10px;
            }

            .stat-icon {
                font-size: 28px;
                margin-bottom: 8px;
            }

            .stat-number {
                font-size: 24px;
                margin-bottom: 4px;
            }

            .stat-label {
                font-size: 12px;
            }

            /* Footer */
            .footer-content {
                grid-template-columns: 1fr;
            }

            .top-bar .container {
                flex-direction: column;
                gap: 10px;
            }
        }

        @media (max-width: 400px) {
            .gallery-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .gallery-item {
                height: 200px;
            }
        }