/* ==========================================================================
   WORLD-TV — Second Player Start Screen
========================================================================== */

* {
    box-sizing: border-box;
}

html,
body {
    width: 1280px;
    height: 720px;
    margin: 0;
    overflow: hidden;
    background: #020307;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
}

.wtv-start-page {
    position: relative;
    width: 1280px;
    height: 720px;
    background:
        radial-gradient(circle at 50% 45%, rgba(220, 0, 25, 0.18), transparent 36%),
        radial-gradient(circle at 80% 80%, rgba(120, 0, 16, 0.18), transparent 34%),
        linear-gradient(135deg, #05070d, #09080a 54%, #030305);
}

.wtv-dark-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.10), rgba(0,0,0,0.45));
}

.wtv-splash-wrap {
    position: absolute;
    left: 0;
    right: 0;
    top: 92px;
    text-align: center;
    z-index: 2;
}

.wtv-splash-logo {
    font-size: 76px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.055em;
    color: #ffffff;
}

.wtv-splash-sub {
    margin-top: 14px;
    color: rgba(255,255,255,0.64);
    font-size: 24px;
    letter-spacing: 0.22em;
}

.wtv-loading-zone {
    position: absolute;
    left: 345px;
    bottom: 110px;
    width: 590px;
    z-index: 3;
    text-align: center;
}

.wtv-loading-zone.is-hidden {
    display: none;
}

.wtv-loading-title {
    margin-bottom: 18px;
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
}

.wtv-loading-track {
    height: 8px;
    background: rgba(255,255,255,0.16);
    overflow: hidden;
}

.wtv-loading-progress {
    width: 0;
    height: 100%;
    background: #e51422;
    transition: width 0.42s ease;
}

.wtv-loading-text {
    margin-top: 17px;
    color: rgba(255,255,255,0.72);
    font-size: 20px;
}

.wtv-activate-box {
    position: absolute;
    left: 315px;
    bottom: 78px;
    width: 650px;
    min-height: 270px;
    z-index: 4;
    padding: 32px 36px;
    background: rgba(6, 7, 11, 0.90);
    border: 1px solid rgba(255,255,255,0.10);
    opacity: 0;
    transform: translateY(18px);
    pointer-events: none;
    transition: opacity 0.24s ease, transform 0.24s ease;
}

.wtv-activate-box.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.wtv-activate-title {
    text-align: center;
    color: #ffffff;
    font-size: 31px;
    font-weight: 800;
}

.wtv-activate-subtitle {
    margin-top: 10px;
    text-align: center;
    color: rgba(255,255,255,0.70);
    font-size: 20px;
}

.wtv-code-row {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 26px;
}

.wtv-code-cell {
    width: 64px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.055);
    border: 2px solid rgba(255,255,255,0.13);
    color: rgba(255,255,255,0.58);
    font-size: 38px;
    font-weight: 800;
}

.wtv-code-cell.is-filled {
    color: #ffffff;
    border-color: rgba(229, 20, 34, 0.78);
}

.wtv-code-cell.is-error {
    border-color: #ff3d49;
    color: #ff6c75;
}

.wtv-activate-message {
    min-height: 24px;
    margin-top: 22px;
    text-align: center;
    color: rgba(255,255,255,0.72);
    font-size: 19px;
}

.wtv-activate-message.is-error {
    color: #ff626b;
}

.wtv-activate-message.is-success {
    color: #5dff9a;
}

.wtv-activate-hint {
    margin-top: 14px;
    text-align: center;
    color: rgba(255,255,255,0.46);
    font-size: 17px;
}
