
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
            background: #0a0a0a;
            color: white;
        }

        
        .bg-video-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            z-index: -1;
            overflow: hidden;
            background-color: #0a0a0a;
        }

        .bg-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: blur(2px) brightness(0.6);
        }

        .bg-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(10, 50, 20, 0.5), rgba(0, 0, 0, 0.5));
            pointer-events: none;
        }

        
        .main-container {
            position: relative;
            max-width: 1280px;
            margin: 0 auto;
            padding: 60px 40px;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        
        .header {
            text-align: center;
            margin-bottom: 80px;
        }

        .main-title {
            font-size: clamp(36px, 5vw, 72px);
            font-weight: 800;
            letter-spacing: 0.08em;
            color: #FFFFFF;
            margin-bottom: 30px;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
            opacity: 0.0001;
            animation: fadeInDown 1.2s ease-out 0.3s forwards;
            
            transform: translateZ(0);
            backface-visibility: hidden;
        }

        @keyframes fadeInDown {
            0% {
                opacity: 0.0001;
                transform: translateY(-30px) translateZ(0);
            }
            100% {
                opacity: 1;
                transform: translateY(0) translateZ(0);
            }
        }

        
        .quote-container {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 40px;
            margin: 0 auto;
            max-width: 1100px;
        }

        .green-bar {
            width: 180px;
            height: 18px;
            background: linear-gradient(90deg, #39D353, #34C759);
            border-radius: 50px;
            box-shadow: 0 0 20px rgba(57, 211, 83, 0.5);
            transform: translateZ(0);
        }

        .green-bar:first-child {
            animation: pulse-glow 3s ease-in-out infinite, expandBarLeft 1s ease-out 0.8s backwards;
        }

        .green-bar:last-child {
            animation: pulse-glow 3s ease-in-out infinite, expandBarRight 1s ease-out 0.8s backwards;
        }

        @keyframes pulse-glow {
            0%, 100% { box-shadow: 0 0 20px rgba(57, 211, 83, 0.5); }
            50% { box-shadow: 0 0 30px rgba(57, 211, 83, 0.8); }
        }

        @keyframes expandBarLeft {
            0% {
                width: 0;
                opacity: 0.0001;
            }
            100% {
                width: 180px;
                opacity: 1;
            }
        }

        @keyframes expandBarRight {
            0% {
                width: 0;
                opacity: 0.0001;
            }
            100% {
                width: 180px;
                opacity: 1;
            }
        }

        .quote-text {
            font-size: clamp(16px, 2vw, 24px);
            font-style: italic;
            font-weight: 400;
            line-height: 1.5;
            color: #FFFFFF;
            text-align: center;
            max-width: 600px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
            opacity: 0.0001;
            animation: fadeIn 1.2s ease-out 1s forwards;
            transform: translateZ(0);
        }

        @keyframes fadeIn {
            0% { opacity: 0.0001; }
            100% { opacity: 1; }
        }

        
        .videos-section {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 60px;
            margin: 60px 0;
            position: relative;
        }

        .video-wrapper {
            position: relative;
            transform: translateZ(0);
            backface-visibility: hidden;
        }

        .video-wrapper:nth-child(1) {
            animation: float 6s ease-in-out infinite, scaleIn 0.8s ease-out 1.4s backwards;
        }

        .video-wrapper:nth-child(2) {
            animation: float 6s ease-in-out 2s infinite, scaleIn 0.8s ease-out 1.6s backwards;
        }

        .video-wrapper:nth-child(3) {
            animation: float 6s ease-in-out 4s infinite, scaleIn 0.8s ease-out 1.8s backwards;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) translateZ(0); }
            50% { transform: translateY(-8px) translateZ(0); }
        }

        @keyframes scaleIn {
            0% {
                opacity: 0.0001;
                transform: scale(0.8) translateY(20px) translateZ(0);
            }
            100% {
                opacity: 1;
                transform: scale(1) translateY(0) translateZ(0);
            }
        }

        
        .video-link {
            display: block;
            text-decoration: none;
            cursor: pointer;
        }

        .video-oval {
            width: 320px;
            height: 240px;
            border-radius: 160px;
            overflow: hidden;
            border: 3px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
            transition: transform 0.3s ease, border-color 0.3s ease;
            background-color: #1a1a1a;
        }

        .video-link:hover .video-oval {
            transform: scale(1.05);
            border-color: rgba(57, 211, 83, 0.6);
        }

        .video-circle {
            width: 260px;
            height: 260px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
            transition: transform 0.3s ease;
            background-color: #1a1a1a;
        }

        .video-circle:hover {
            transform: scale(1.01);
        }

        .video-content {
            width: 100%;
            height: 100%;
            object-fit: cover;
            pointer-events: none;
        }

        
        .logo-card {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%) translateZ(0);
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 24px;
    border-radius: 18px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.0001;
    animation: fadeInUp 0.6s ease-out forwards;
    backface-visibility: hidden;
    pointer-events: none;
    width: 200px;  
    height: 80px;  
}

        .video-wrapper:nth-child(1) .logo-card {
            animation-delay: 2s;
        }

        .video-wrapper:nth-child(3) .logo-card {
            animation-delay: 2.2s;
        }

        @keyframes fadeInUp {
            0% {
                opacity: 0.0001;
                transform: translateX(-50%) translateY(10px) translateZ(0);
            }
            100% {
                opacity: 1;
                transform: translateX(-50%) translateY(0) translateZ(0);
            }
        }

        .logo-card img {
    max-width: 100%;   
    max-height: 100%;  
    width: auto;       
    height: auto;      
    object-fit: contain;  
    display: block;
}

        .logo-placeholder {
            font-size: 14px;
            font-weight: 600;
            color: #2d5016;
            text-align: center;
            font-family: 'Inter', sans-serif;
        }

        
        .big-headline {
            text-align: center;
            margin: 40px 0;
            position: relative;
        }

        .big-headline::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) translateZ(0);
            width: 800px;
            height: 200px;
            background: radial-gradient(ellipse, rgba(92, 221, 58, 0.15), transparent);
            z-index: -1;
            filter: blur(40px);
            opacity: 0.0001;
            animation: glowIn 1.5s ease-out 2.2s forwards;
        }

        @keyframes glowIn {
            0% {
                opacity: 0.0001;
                transform: translate(-50%, -50%) scale(0.8) translateZ(0);
            }
            100% {
                opacity: 1;
                transform: translate(-50%, -50%) scale(1) translateZ(0);
            }
        }

        .big-headline h2 {
            font-size: clamp(48px, 10vw, 130px);
            font-weight: 700;
            letter-spacing: 0.06em;
            color: #5CDD3A;
            text-shadow: 0 4px 30px rgba(92, 221, 58, 0.6);
            line-height: 1;
            opacity: 0.0001;
            animation: slideInScale 1.2s ease-out 2.4s forwards;
            transform: translateZ(0);
            backface-visibility: hidden;
        }

        @keyframes slideInScale {
            0% {
                opacity: 0.0001;
                transform: translateY(30px) scale(0.95) translateZ(0);
                letter-spacing: 0.15em;
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1) translateZ(0);
                letter-spacing: 0.06em;
            }
        }

        
        .footer-url {
            text-align: center;
            padding: 40px 0 20px;
        }

        .footer-url p {
            font-family: 'Inter', monospace;
            font-size: 18px;
            font-weight: 500;
            letter-spacing: 0.25em;
            color: rgba(255, 255, 255, 0.85);
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
            opacity: 0.0001;
            animation: fadeIn 1s ease-out 3s forwards;
            transform: translateZ(0);
        }

        
        @media (max-width: 1024px) {
            .green-bar {
                width: 120px;
            }

            @keyframes expandBarLeft {
                0% { width: 0; opacity: 0.0001; }
                100% { width: 120px; opacity: 1; }
            }

            @keyframes expandBarRight {
                0% { width: 0; opacity: 0.0001; }
                100% { width: 120px; opacity: 1; }
            }

            .videos-section {
                gap: 40px;
            }

            .video-oval {
                width: 260px;
                height: 200px;
            }

            .video-circle {
                width: 220px;
                height: 220px;
            }
        }

        @media (max-width: 768px) {
            .main-container {
                padding: 40px 20px;
            }

            .quote-container {
                flex-direction: column;
                gap: 20px;
            }

            .green-bar {
                width: 100px;
            }

            @keyframes expandBarLeft {
                0% { width: 0; opacity: 0.0001; }
                100% { width: 100px; opacity: 1; }
            }

            @keyframes expandBarRight {
                0% { width: 0; opacity: 0.0001; }
                100% { width: 100px; opacity: 1; }
            }

            .quote-text {
                max-width: 90%;
            }

            .videos-section {
                flex-direction: column;
                gap: 50px;
            }

            .video-oval {
                width: 280px;
                height: 210px;
            }

            .video-circle {
                width: 240px;
                height: 240px;
            }

            .logo-card {
                padding: 10px 20px;
            }

            .logo-card img {
                max-width: 120px;
            }

            .big-headline::before {
                width: 400px;
                height: 150px;
            }

            .footer-url p {
                font-size: 14px;
                letter-spacing: 0.15em;
            }
        }

        @media (max-width: 480px) {
            .green-bar {
                width: 80px;
            }

            @keyframes expandBarLeft {
                0% { width: 0; opacity: 0.0001; }
                100% { width: 80px; opacity: 1; }
            }

            @keyframes expandBarRight {
                0% { width: 0; opacity: 0.0001; }
                100% { width: 80px; opacity: 1; }
            }

            .video-oval {
                width: 240px;
                height: 180px;
                border-radius: 120px;
            }

            .video-circle {
                width: 200px;
                height: 200px;
            }

            .footer-url p {
                font-size: 12px;
            }
        }

        
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        
        .critical-content {
            content-visibility: auto;
        }
  