    body {
        margin: 0;
        background:
        radial-gradient(
            circle at center,
            #17253a,
            #090d12
        );

        color: white;
        font-family: Arial, sans-serif;
        overflow: hidden;
    }

    .screen {
        width: 1280px;
        height: 720px;
        display: grid;
        grid-template-columns: 420px 1fr;
        gap: 20px;
        padding: 20px;
        box-sizing: border-box;
    }

    /* LEFT PANEL */
    .left {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .next {
        background: #121a24;
        border-radius: 12px;
        padding: 16px;
    }

.next-program .label {
    font-size: 14px;
    color: rgba(140,200,255,0.85);
}

.label {
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(180,210,255,0.65);
}

    .title {
        font-size: 18px;
        margin-top: 8px;
        font-weight: bold;
    }

    .time {
        font-size: 14px;
        opacity: 0.8;
        margin-top: 4px;
    }

.upcoming {
    margin-top: 12px;
    padding: 14px;
    height: 260px;
    overflow: hidden;

    background: rgba(10,15,25,0.65);
    border: 1px solid rgba(255,255,255,0.04);
}

.item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 16px;

    font-size: 16px;
    padding: 10px 0;

    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.timecol {
    color:#7fc4ff;
    font-weight:700;
}

    /* RIGHT PANEL */
    .right {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    position: relative;
    }

scanvas {
    background: radial-gradient(
        circle at center,
        #121a24,
        #0b0f14
    );

    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.channel-name {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);

    font-size: 28px;
    font-weight: 700;
    letter-spacing: 10px;

    color: rgba(255,255,255,0.75);
}
    .clock-label {
        margin-top: 20px;
        font-size: 18px;
        opacity: 0.8;
        letter-spacing: 2px;
    }

#bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 1280px;
    height: 720px;
    z-index: -2;
}

/* dark overlay for readability */
body::after {
    content: "";
    position: absolute;
    width: 1280px;
    height: 720px;
    top: 0;
    left: 0;
    z-index: -1;

    background: radial-gradient(
        circle at 50% 40%,
        rgba(20,30,50,0.25),
        rgba(5,8,12,0.85)
    );
}

.screen {
    position: relative;
    z-index: 2;
}

.next-program {
    background: linear-gradient(
        135deg,
        rgba(40,90,160,0.25),
        rgba(10,15,25,0.95)
    );

    border: 1px solid rgba(120,180,255,0.15);
    border-radius: 24px;

    padding: 36px 28px;

    box-shadow:
        0 20px 60px rgba(0,0,0,0.4);
    position: relative;
}

.next-program::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;

    background: radial-gradient(
        circle at 50% 0%,
        rgba(120,180,255,0.25),
        transparent 70%
    );

    pointer-events: none;
}

.next-program .title {
    font-size: 22px;
    line-height: 1.1;
    font-weight: 700;

    margin-top: 20px;

    word-break: break-word;
    max-width: 100%;
    overflow-wrap: break-word;
}

.next-program .time {
    font-size: 17px;
    margin-top: 15px;
    color: #6eb6ff;
}

#countdown {
    font-size: 28px;
    color: #7fd3ff;
    margin-top: 10px;
}
