
        :root {
            /* Primary Colors - Matching TWiK Logo */
            --primary-red: #dc2626;
            --primary-black: #1f2937;
            --accent-white: #ffffff;
            /* Background Colors */
            --background-primary: #ffffff;
            --background-secondary: #f8fafc;
            --background-gradient: linear-gradient(135deg, #fef2f2 0%, #f9fafb 50%, #ffffff 100%);
            /* Text Colors */
            --text-primary: #1f2937;
            --text-secondary: #4b5563;
            --text-muted: #9ca3af;
            --text-light: #ffffff;
            /* Border and Effects */
            --border-light: rgba(220, 38, 38, 0.1);
            --border-hover: rgba(220, 38, 38, 0.3);
            --shadow-primary: 0 10px 25px rgba(220, 38, 38, 0.15);
            --backdrop-blur: blur(10px);
            /* Gradients */
            --gradient-primary: linear-gradient(135deg, var(--primary-red), var(--primary-black));
            --gradient-text: linear-gradient(135deg, var(--primary-red), var(--primary-black));
        }

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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--background-gradient);
            color: var(--text-primary);
            line-height: 1.6;
        }

       
        /* Main Gallery Section */
        .impact-gallery-section {
            padding: 4rem 0;
            background: var(--background-gradient);
            position: relative;
            overflow: hidden;
        }

        .impact-gallery-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23dc2626' fill-opacity='0.03'%3E%3Cpath d='m36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
            opacity: 0.5;
        }

        .gallery-header {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
            z-index: 2;
        }

   

        .gallery-subtitle {
            font-size: clamp(1.1rem, 2.5vw, 1.3rem);
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
            font-weight: 500;
        }

        /* Portrait Video Grid - 3 per row with thin gaps */
        .video-grid-section {
            position: relative;
            z-index: 2;
        }

        .video-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0.5rem;
            padding: 1rem 0;
            max-width: 1200px;
            margin: 0 auto;
        }

        @media (max-width: 768px) {
            .video-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.5rem;
            }
        }

        @media (max-width: 480px) {
            .video-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
        }

        /* Portrait Video Cards */
        .video-card {
            position: relative;
            background: var(--background-primary);
            
            overflow: hidden;
            box-shadow: var(--shadow-primary);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            transform: translateZ(0);
            aspect-ratio: 9/16; /* Portrait aspect ratio for YouTube Shorts */
        }

        .video-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 0 25px 50px rgba(220, 38, 38, 0.25);
        }

        .video-card-image {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .video-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .video-card:hover .video-card-image img {
            transform: scale(1.1);
        }

        /* Video Overlay with Centered Title */
        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                180deg,
                rgba(220, 38, 38, 0.1) 0%,
                rgba(31, 41, 55, 0.2) 20%,
                rgba(31, 41, 55, 0.4) 60%,
                rgba(220, 38, 38, 0.8) 100%
            );
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 1.5rem;
            opacity: 0;
            transition: all 0.4s ease;
        }

        .video-card:hover .video-overlay {
            opacity: 1;
        }

        /* Always show overlay on mobile */
        @media (max-width: 767px) {
            .video-overlay {
                opacity: 0.9;
                background: linear-gradient(
                    180deg,
                    rgba(220, 38, 38, 0.2) 0%,
                    rgba(31, 41, 55, 0.3) 20%,
                    rgba(31, 41, 55, 0.5) 60%,
                    rgba(220, 38, 38, 0.9) 100%
                );
            }
        }

        .play-button {
            background: rgba(255, 255, 255, 0.95);
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
            margin-bottom: 1rem;
        }

        .play-button:hover {
            transform: scale(1.1);
            background: var(--accent-white);
        }

        .play-button svg {
            margin-left: 4px;
        }

        .play-button svg path {
            fill: var(--primary-red);
        }

        /* Video Title Overlay - Centered */
        .video-title-overlay {
            text-align: center;
            width: 90%;
            z-index: 3;
        }

        .video-title-overlay h4 {
            font-size: clamp(1.1rem, 2.5vw, 1.4rem);
            font-weight: 700;
            color: var(--text-light);
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
            margin-bottom: 0.5rem;
            line-height: 1.3;
            background: rgba(31, 41, 55, 0.8);
            padding: 1rem;
            border-radius: 12px;
            backdrop-filter: var(--backdrop-blur);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .video-category {
            display: inline-block;
            background: var(--primary-red);
            color: var(--text-light);
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 1rem;
        }

        /* Video Duration Badge */
        .video-duration {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: rgba(0, 0, 0, 0.8);
            color: var(--text-light);
            padding: 0.4rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Load More Button */
        .load-more-section {
            text-align: center;
            padding: 3rem 0 2rem 0;
            position: relative;
            z-index: 2;
        }

        .load-more-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--gradient-primary);
            color: var(--text-light);
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-primary);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .load-more-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(220, 38, 38, 0.3);
        }

        .load-more-btn:active {
            transform: translateY(-1px);
        }

        /* YouTube Modal */
        .youtube-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.95);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            backdrop-filter: blur(10px);
            padding: 1rem;
        }

        .youtube-modal-content {
            position: relative;
            width: 100%;
            max-width: 400px;
            aspect-ratio: 9/16;
        }

        .close-youtube-modal {
            position: absolute;
            top: -50px;
            right: 0;
            color: var(--text-light);
            font-size: 2rem;
            background: none;
            border: none;
            cursor: pointer;
            transition: transform 0.3s ease;
            min-width: 44px;
            min-height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .close-youtube-modal:hover {
            transform: scale(1.1);
        }

        .youtube-iframe-container {
            position: relative;
            width: 100%;
            height: 100%;
            border-radius: 12px;
            overflow: hidden;
        }

        .youtube-iframe-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }
    