.hero-gradient {
            background: linear-gradient(135deg, #fdf4ff 0%, #fae8ff 50%, #f5d0fe 100%);
        }
        .nav-blur {
            backdrop-filter: blur(12px);
            background-color: rgba(255, 255, 255, 0.9);
        }
        .card-hover {
            transition: all 0.3s ease;
        }
        .card-hover:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        .play-button {
            background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
        }
        .flink {
            transition: all 0.2s ease;
            border: 1px solid #e5e7eb;
        }
        .flink:hover {
            border-color: #8b5cf6;
            background-color: #faf5ff;
        }
        .section-title {
            position: relative;
            padding-bottom: 1rem;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(to right, #ec4899, #8b5cf6);
        }
        .pagination .active {
            background-color: #8b5cf6;
            color: white;
        }
        .video-thumbnail {
            position: relative;
            overflow: hidden;
            border-radius: 0.75rem;
        }
        .video-thumbnail:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
            z-index: 1;
        }
        .fade-in {
            animation: fadeIn 0.8s ease-in-out;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .staggered > * {
            opacity: 0;
            animation: fadeIn 0.6s ease-in-out forwards;
        }
        .staggered > *:nth-child(1) { animation-delay: 0.1s; }
        .staggered > *:nth-child(2) { animation-delay: 0.2s; }
        .staggered > *:nth-child(3) { animation-delay: 0.3s; }
        .staggered > *:nth-child(4) { animation-delay: 0.4s; }
        .staggered > *:nth-child(5) { animation-delay: 0.5s; }
        .staggered > *:nth-child(6) { animation-delay: 0.6s; }
        .tab-active {
            border-bottom: 3px solid #8b5cf6;
            color: #8b5cf6;
            font-weight: 600;
        }
