#myVideo {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%; 
    min-height: 100%;
    object-fit: cover;
    z-index: -1;
}

.mobile-dock {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 65px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 9999;
}

.dock-item {
    background: none;
    border: none;
    font-size: 24px;
    filter: drop-shadow(0 0 8px rgba(0,0,0,0.5));
    transition: 0.1s;
}

.panel {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 50%;
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(15px);
    border-radius: 20px 20px 0 0;
    transition: bottom 0.4s ease;
    z-index: 10000;
    color: white;
    padding: 20px;
}

.panel.active {
    bottom: 0;
}

.panel-close {
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    float: right;
}
