

        .long-form-section,
        .short-form-section,
        .ads-section {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.25);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), inset 0 0 0 rgba(255, 255, 255, 0.3);
            border-radius: 0.8rem;
            padding: 1rem;
            color: #ffffff;
            grid-column: 1 / -1;
        }

        @media (min-width: 640px) {
            .long-form-section,
            .short-form-section,
            .ads-section {
                padding: 1.5rem;
                border-radius: 1rem;
            }
        }

        @media (min-width: 768px) {
            .long-form-section,
            .short-form-section,
            .ads-section {
                padding: 2rem 1.5rem;
                border-radius: 1.25rem;
            }
        }

        @media (min-width: 1024px) {
            .long-form-section,
            .short-form-section,
            .ads-section {
                padding: 2.5rem 2rem;
                border-radius: 1.5rem;
            }
        }

        .long-form-section h2,
        .short-form-section h2,
        .ads-section h2 {
            font-size: 1.4rem;
            font-weight: 900;
            margin-bottom: 1rem;
            color: #84cc16;
            text-align: center;
        }

        @media (min-width: 640px) {
            .long-form-section h2,
            .short-form-section h2,
            .ads-section h2 {
                font-size: 1.6rem;
                margin-bottom: 1.3rem;
            }
        }

        @media (min-width: 768px) {
            .long-form-section h2,
            .short-form-section h2,
            .ads-section h2 {
                font-size: 2rem;
                margin-bottom: 1.5rem;
            }
        }

        @media (min-width: 1024px) {
            .long-form-section h2,
            .short-form-section h2,
            .ads-section h2 {
                font-size: 2.8rem;
            }
        }

        .video-grid,
        .shorts-grid,
        .ads-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
        }

        @media (min-width: 640px) {
            .video-grid,
            .shorts-grid,
            .ads-grid {
                grid-template-columns: 1fr 1fr;
                gap: 1.2rem;
            }
        }

        @media (min-width: 768px) {
            .video-grid {
                grid-template-columns: 1fr 1fr;
                gap: 1.5rem;
            }
            .shorts-grid,
            .ads-grid {
                grid-template-columns: 1fr 1fr 1fr;
                gap: 1.5rem;
            }
        }

        @media (min-width: 1024px) {
            .video-grid {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }
            .shorts-grid,
            .ads-grid {
                grid-template-columns: 1fr 1fr 1fr;
                gap: 2rem;
            }
        }

        .video-wrapper,
        .ad-wrapper {
            position: relative;
            padding-bottom: 56.25%;
            border-radius: 0.8rem;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        }

        @media (min-width: 768px) {
            .video-wrapper,
            .ad-wrapper {
                border-radius: 1rem;
            }
        }

        @media (min-width: 1024px) {
            .video-wrapper,
            .ad-wrapper {
                border-radius: 1.2rem;
            }
        }

        .short-wrapper {
            position: relative;
            padding-bottom: 110%;
            max-width: 100%;
            max-height: 300px;
            margin: 0 auto;
            border-radius: 0.8rem;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        }

        @media (min-width: 640px) {
            .short-wrapper {
                max-height: 320px;
            }
        }

        @media (min-width: 768px) {
            .short-wrapper {
                max-width: 280px;
                max-height: 340px;
                border-radius: 1rem;
            }
        }

        @media (min-width: 1024px) {
            .short-wrapper {
                max-width: 320px;
                max-height: 380px;
                border-radius: 1.2rem;
            }
        }

        iframe {
            position: absolute;
            top: 0; 
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        .fade-in {
            animation: fadeIn 0.7s ease-out forwards;
        }

        @keyframes fadeIn {
            from { 
                opacity: 0; 
                transform: translateY(20px); 
            }
            to { 
                opacity: 1; 
                transform: translateY(0); 
            }
        }

        .toast {
            position: fixed;
            bottom: 1rem;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0,0,0,0.9);
            color: #84cc16;
            padding: 0.8rem 1.2rem;
            border-radius: 0.6rem;
            font-weight: 600;
            font-size: 0.9rem;
            z-index: 1000;
            min-width: 160px;
            text-align: center;
            animation: slideUp 0.3s ease-out forwards;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateX(-50%) translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateX(-50%) translateY(0);
            }
        }

        @media (min-width: 640px) {
            .toast {
                bottom: 1.5rem;
                padding: 1rem 1.5rem;
                font-size: 0.95rem;
                min-width: 200px;
            }
        }