

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        /* Header */
        .header-area {
            padding: 80px 0 60px;
            text-align: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            margin-bottom: 60px;
            margin-top: 84px;
        }

        .page-title {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #00d4ff 0%, #8b5cf6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: glow 3s ease-in-out infinite;
        }

        @keyframes glow {
            0%, 100% { filter: brightness(1); }
            50% { filter: brightness(1.2); }
        }

        .page-subtitle {
            font-size: 1.3rem;
            color: rgba(252, 248, 248, 0.7);
            max-width: 700px;
            margin: 0 auto 40px;
            line-height: 1.6;
        }

        /* Tab Navigation */
        .tab-navigation {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 60px;
        }

        .tab-btn {
            padding: 14px 32px;
            border-radius: 50px;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1rem;
            font-weight: 600;
            position: relative;
            overflow: hidden;
        }

        

        .tab-btn span {
            position: relative;
            z-index: 1;
        }

        .tab-btn:hover {
            border-color: #00d4ff;
            color: #00d4ff;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(77, 212, 255, 0.3);
        }

        .tab-btn.active {
            background: linear-gradient(135deg, #00d4ff 0%, #8b5cf6 100%);
            border-color: #00d4ff;
            color: #fff;
            box-shadow: 0 8px 32px rgba(77, 212, 255, 0.4);
        }

        /* Media Sections */
        .media-section {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .media-section.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .section-header {
            margin-bottom: 40px;
            display: none;
        }

        .section-title {
            font-size: 2rem;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .section-description {
            color: rgba(255, 255, 255, 0.6);
            font-size: 1.05rem;
        }

        /* Video Grid */
        .video-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
            gap: 32px;
            margin-bottom: 80px;
        }

        .video-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s ease;
            cursor: pointer;
            position: relative;
        }

        .video-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(77, 212, 255, 0.3);
            border-color: rgba(77, 212, 255, 0.6);
        }

        .video-thumbnail {
            height: 240px;
            background: linear-gradient(135deg, #00d4ff33, #8b5cf633);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

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

        .video-thumbnail::before {
            content: '';
            position: absolute;
            inset: 0;
            background: 
                linear-gradient(45deg, transparent 48%, rgba(255,255,255,0.05) 49%, rgba(255,255,255,0.05) 51%, transparent 52%),
                linear-gradient(-45deg, transparent 48%, rgba(255,255,255,0.05) 49%, rgba(255,255,255,0.05) 51%, transparent 52%);
            background-size: 20px 20px;
        }

        .play-button {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #00d4ff 0%, #8b5cf6 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            z-index: 1;
            transition: all 0.3s ease;
            box-shadow: 0 8px 32px rgba(77, 212, 255, 0.5);
        }

        .video-card:hover .play-button {
            transform: scale(1.1);
            box-shadow: 0 12px 48px rgba(77, 212, 255, 0.7);
        }

        .video-duration {
            position: absolute;
            bottom: 12px;
            right: 12px;
            color: #dbdbdb;
            background: rgba(0, 0, 0, 0.8);
            padding: 6px 12px;
            border-radius: 8px;
            font-size: 0.85rem;
            font-weight: 600;
        }

        .video-info {
            padding: 24px;
        }

        .video-title {
            color: #fff;
            font-size: 1.25rem;
            margin-bottom: 12px;
            line-height: 1.4;
        }

        .video-meta {
            display: flex;
            gap: 20px;
            color: rgba(255, 254, 254, 0.5);
            font-size: 0.9rem;
        }

        /* Image Gallery */
        .image-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 24px;
            margin-bottom: 80px;
        }

        .image-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            cursor: pointer;
            aspect-ratio: 4/3;
        }

        .image-card:hover {
            transform: scale(1.05);
            box-shadow: 0 16px 48px rgba(124, 58, 237, 0.3);
            border-color: rgba(124, 58, 237, 0.6);
            z-index: 2;
        }

        .image-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #8b5cf633, #00d4ff33);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            position: relative;
            overflow: hidden;
        }
        .image-placeholder img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .image-placeholder::before {
            content: '';
            position: absolute;
            inset: 0;
            background: 
                radial-gradient(circle at 20% 30%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255,255,255,0.08) 0%, transparent 50%);
        }

        /* Press Kit & Webinars CSS remains same as original, shortened for brevity */
        .brochure-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 32px; margin-bottom: 80px; }
        .brochure-card { background: rgba(255, 255, 255, 0.05); border-radius: 20px; padding: 32px; border: 1px solid rgba(255, 255, 255, 0.1); transition: all 0.3s ease; cursor: pointer; }
        .brochure-card:hover { transform: translateY(-6px); background: rgba(255, 255, 255, 0.08); border-color: rgba(77, 212, 255, 0.5); box-shadow: 0 12px 40px rgba(77, 212, 255, 0.2); }
        .brochure-icon { width: 80px; height: 80px; background: linear-gradient(135deg, #00d4ff22, #8b5cf622); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; margin-bottom: 24px; border: 1px solid rgba(77, 212, 255, 0.3); }
        .brochure-title { font-size: 1.4rem; margin-bottom: 12px; }
        .brochure-description { color: rgba(255, 255, 255, 0.6); line-height: 1.6; margin-bottom: 24px; }
        .download-btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; background: linear-gradient(135deg, #00d4ff 0%, #8b5cf6 100%); border-radius: 50px; color: #fff; font-weight: 600; text-decoration: none; transition: all 0.3s ease; }
        .download-btn:hover { transform: translateX(4px); box-shadow: 0 8px 24px rgba(77, 212, 255, 0.4); }
        .webinar-list { display: grid; gap: 32px; margin-bottom: 80px; }
        .webinar-card { background: rgba(255, 255, 255, 0.05); border-radius: 20px; border: 1px solid rgba(255, 255, 255, 0.1); display: grid; grid-template-columns: 300px 1fr; overflow: hidden; transition: all 0.3s ease; }
        .webinar-card:hover { transform: translateX(8px); border-color: rgba(124, 58, 237, 0.5); box-shadow: 0 12px 48px rgba(124, 58, 237, 0.3); }
        .webinar-image { background: linear-gradient(135deg, #8b5cf633, #00d4ff33); display: flex; align-items: center; justify-content: center; font-size: 4rem; position: relative; }
        .webinar-content { padding: 32px; display: flex; flex-direction: column; justify-content: center; }
        .webinar-date { display: inline-block; padding: 6px 16px; background: rgba(124, 58, 237, 0.3); border-radius: 50px; font-size: 0.85rem; font-weight: 600; color: #8b5cf6; margin-bottom: 16px; width: fit-content; }
        .webinar-title { font-size: 1.6rem; margin-bottom: 12px; }
        .webinar-description { color: rgba(255, 255, 255, 0.6); line-height: 1.6; margin-bottom: 24px; }
        .webinar-speakers { display: flex; gap: 16px; font-size: 0.9rem; color: rgba(255, 255, 255, 0.5); margin-bottom: 20px; }
        .watch-btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; background: transparent; border: 2px solid #8b5cf6; border-radius: 50px; color: #8b5cf6; font-weight: 600; cursor: pointer; transition: all 0.3s ease; width: fit-content; }
        .watch-btn:hover { background: linear-gradient(135deg, #8b5cf6 0%, #00d4ff 100%); border-color: transparent; color: #fff; transform: translateX(4px); }

        /* --- MODAL STYLES (NEW) --- */
        .modal {
            display: none;
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(15, 15, 45, 0.95);
            backdrop-filter: blur(10px);
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .modal.show {
            display: flex;
            opacity: 1;
        }

        .modal-content {
            position: relative;
            width: 90%;
            max-width: 1000px;
            background: transparent;
            border-radius: 20px;
            animation: scaleUp 0.3s ease;
        }

        @keyframes scaleUp {
            from { transform: scale(0.9); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }

        .close-modal {
            position: absolute;
            top: -50px;
            right: 0;
            color: #fff;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            transition: color 0.3s ease;
            z-index: 10000;
        }

        .close-modal:hover {
            color: #00d4ff;
        }

        /* YouTube Container */
        .video-container {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
            height: 0;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 0 50px rgba(0, 212, 255, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

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

        /* Image Lightbox specific */
        .image-lightbox-content {
            max-width: 800px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 0 60px rgba(139, 92, 246, 0.3);
        }
        
        .image-lightbox-content img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 20px;
        }

        /* Responsive */
        @media (max-width: 968px) {
            .page-title { font-size: 3rem; }
            .video-grid { grid-template-columns: 1fr; }
            .webinar-card { grid-template-columns: 1fr; }
            .webinar-image { height: 200px; }
        }

        @media (max-width: 640px) {
            .page-title { font-size: 2.5rem; }
            .image-gallery { grid-template-columns: 1fr; }
            .close-modal { top: -40px; right: 10px; font-size: 30px; }
        }