html, body {
    background-color: #1e1e1e;
    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.top-bar {
    height: 45px;
    width: 100%;
    background-color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 10px;
    padding-right: 20px;
    box-sizing: border-box;
    z-index: 1;
    position: fixed;
    top: 0;
    left: 0;
}

.custom-button {
    border: 1px solid rgba(255, 255, 255, 0.6);
    background-color: transparent;
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
}

.custom-button:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.video-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    margin-top: 45px;
}

video {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.text-container {
    position: relative;
    width: 100%;
    padding: 20px 0;
    text-align: center;
    background-color: #1e1e1e;
}

.fade-text {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    font-size: 24px;
}

.fade-in {
    opacity: 1;
}

