 .banner {
            height: 500px;
            position: relative;
            margin-top: 80px;
            overflow: hidden;
        }

        .banner-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
        }

        .banner-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .banner-image {
            width: 300px;
            height: 300px;
            border-radius: 50%;
            animation: var(--bounce-animation);
        }

        .banner-buttons {
            position: absolute;
            top: 50%;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 10%;
            z-index: 10;
        }



        @keyframes bounce {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }