body {
    font-family: 'Outfit', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #000;
    color: white;
    overflow: hidden;
}

h1 {
    display: none;
}

#video-container {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
}

video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#video-controls {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: 10px;
    border-radius: 20px;
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1000;
}

#video-container:hover #video-controls {
    opacity: 1;
}

button {
    padding: 8px 16px;
    font-size: 12px;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    background: rgba(255,255,255,0.1);
    color: white;
    transition: all 0.3s;
}

button:hover {
    background: var(--primary-color, #0ea5e9);
    border-color: var(--primary-color, #0ea5e9);
}

#data-container {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: #0f0;
    border-radius: 10px;
    width: 300px;
    max-height: 400px;
    overflow-y: auto;
    padding: 15px;
    font-family: monospace;
    font-size: 12px;
    z-index: 2000;
    border: 1px solid #333;
}

.hidden {
    display: none !important;
}