* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    background: linear-gradient(135deg, #2ee6d6, #119da4);
    font-family: "Segoe UI", Arial, sans-serif;
}

/* Turquoise background */
.background {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #2ee6d6, #1fbfb8, #119da4);
    z-index: -1;
}

/* Center everything */
.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

/* Video wrapper (for label overlay) */
.video-wrapper {
    position: relative;
}

/* Camera iframe */
.camera-frame {
    width: 1050px;
    height: 590px;
    max-width: 95vw;
    border-radius: 18px;
    border: none;
    background: black;
    box-shadow: 0 0 50px rgba(0,0,0,0.6);
}

/* Sunset floating label */
.video-label {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 28px;
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: 4px;
    border-radius: 30px;
    z-index: 10;

    background: linear-gradient(90deg, #ff512f, #f09819, #ffd200);
    color: black;

    box-shadow:
        0 0 20px rgba(255,120,40,0.9),
        0 0 40px rgba(255,80,0,0.5);
}
