<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.bee-animation-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
}

.bee-animation-container canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Video Section Styles */
.scroll-container {
    transition: transform 0.5s ease-in-out;
}

.video-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.particle-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

video {
    filter: brightness(0.8) contrast(1.2);
    transition: all 0.5s ease-in-out;
}

video:hover {
    filter: brightness(0.9) contrast(1.3);
}

.scroll-dot {
    transition: all 0.3s ease-in-out;
}

.scroll-dot.active {
    transform: scale(1.2);
    background-color: rgba(255, 255, 255, 0.9);
}

/* Glass effect for titles */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease-in-out;
}

.glass:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.02);
} </pre></body></html>