.header {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 10px;
}

.home-cover .card-inner ul {
    display: grid;
    grid-template-columns: repeat(1,1fr);
    gap: 20px;
}

.video-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: -9999;
    overflow: hidden;
}

.video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bg-cover {
    background: none;
}

.home-cover .card-inner ul li {
    margin-bottom: 30px;
    border: 0.5px solid #FFF;
    background-color: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    border-radius: 10px;
}

.home-cover .card-inner ul li:hover {
    transform: translateY(-10px);
    transition: all 0.3s ease;
}