/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: black;
    color: white;
}

/* VIDEO */
#bgVideo {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    transform: scale(1.1);
    z-index: -2;
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: -1;
}

/* PAGE LAYOUT */
.page {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

/* ADMIN */
.admin {
    width: 360px;
    background: rgba(15,15,25,0.85);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.admin h1 {
    margin-bottom: 25px;
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

button {
    padding: 16px;
    font-size: 17px;
    border: none;
    cursor: pointer;
    color: white;
    border-radius: 6px;
    transition: transform .2s, box-shadow .2s;
}

button:hover {
    transform: scale(1.05);
}

.primary {
    background: linear-gradient(135deg, #7a00ff, #b400ff);
    box-shadow: 0 0 20px rgba(180,0,255,.8);
}

.tips {
    background: linear-gradient(135deg, #ffcc00, #ff9900);
    box-shadow: 0 0 20px rgba(255,200,0,.8);
}

.reset {
    background: linear-gradient(135deg, #ff0033, #ff005d);
    box-shadow: 0 0 20px rgba(255,0,80,.8);
}

/* CALLS */
.calls h2 {
    margin-bottom: 10px;
    text-align: left;
}

.calls ul {
    list-style: none;
    text-align: left;
}

.calls li {
    padding: 5px 0;
    opacity: .6;
}

.calls li.active {
    font-size: 18px;
    opacity: 1;
    color: #ffd700;
    text-shadow: 0 0 10px gold;
}

/* RESULT PANEL */
.result-panel {
    width: 320px;
    background: rgba(10,10,20,0.9);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(255,215,0,.3);
}

.result-panel h2 {
    text-align: center;
    margin-bottom: 30px;
}

.result-block {
    margin-bottom: 25px;
    text-align: center;
}

.label {
    font-size: 14px;
