.schedule-section-title {
    width: 100%;
    height: 75px;
    background: var(--glass-medium);
    border-radius: 12px;
    display: flex;
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-card);
}

.schedule-section-title>h4 {
    position: relative;
    top: 7px;
}

.schedule {
    width: 300px;
    height: 180px;
    background: var(--surface-card);
    margin: 10px;
    color: var(--text-main);
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    overflow: hidden;
}

.schedule-logo-section {
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: space-between;
    background: var(--secondary-bg);
    border: 1px solid var(--glass-border);
    border-width: 0 0 1px 0 !important;
}

.schedule:hover {
    background: var(--tertiary-bg);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    border-color: var(--gold-primary);
}

.schedule-title {
    width: 100%;
    height: 30px;
    line-height: 2.2em;
    text-align: center;
    padding: 0 10px;
}

.schedule-row {
    width: 100%;
    height: 24px;
    line-height: 2.2em;
    text-align: center;
    padding: 0 10px;
    margin-top: 1px;
    font-size: 11px;
}

.schedule-logo-section>div {
    width: 50px;
    height: 50px;
    margin: 10px;
}

.schedule-countdown-text {
    font-size: 12px;
}

.schedule-channels {
    width: 300px;
    height: 180px;
    background: var(--glass-heavy);
    position: absolute;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.schedule-channels-x {
    border: none;
    outline: none;
    background: rgba(255, 0, 0, 0.8);
    color: #fff;
    position: absolute;
    right: 4px;
    top: 4px;
    border-radius: 4px;
    z-index: 50;
}

.schedule-channels>span>a>img {
    width: 75px;
    height: 56px;
    box-shadow: 0px 0px 10px 0px var(--gold-primary);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.schedule-channels>span>a>img:hover {
    width: 75px;
    height: 56px;
    transform: scale(1.1);
    box-shadow: 0px 0px 20px 0px var(--gold-light);
}