/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

/* Header Styles */
.main-header {
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
    color: white;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: #ff8a00;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    letter-spacing: 1px;
}

.sign-in-btn {
    background: #333;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.sign-in-btn:hover {
    background: #555;
}

/* Navigation */
.main-nav {
    background: #f8f9fa;
    padding: 0 30px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 0;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 15px 20px;
    color: #666;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.nav-link:hover,
.nav-link.active {
    color: #333;
    background: #fff;
    border-bottom-color: #ff6b9d;
}

.nav-link i {
    font-size: 12px;
}

/* Time Display */
.time-display {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.1);
}

/* News Ticker */
.news-ticker {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.8);
    padding: 12px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ticker-label {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #ff4757;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 12px;
    white-space: nowrap;
    margin-right: 20px;
}

.ticker-label i {
    font-size: 10px;
}

.ticker-container {
    flex: 1;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 24px;
    display: flex;
    align-items: center;
}

.ticker-track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: ticker-scroll 470s linear infinite;
    position: absolute;
    left: 100%;
    top: 0;
    height: 100%;
}

.ticker-track:hover {
    animation-play-state: paused;
}

.ticker-item {
    display: inline-block;
    color: white;
    font-size: 14px;
    font-weight: 400;
    margin-right: 80px;
    white-space: nowrap;
    line-height: 24px;
    flex-shrink: 0;
    max-width: none;
}

.ticker-item::before {
    content: '•';
    color: #ff6b9d;
    font-weight: bold;
    font-size: 16px;
    flex-shrink: 0;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-60%);
    }
}

.digital-clock {
    font-family: 'Courier New', monospace;
    font-size: 32px;
    font-weight: 700;
    color: #333;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.time-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
}

/* Main Content */
.main-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    padding: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Content Left */
.content-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Now Playing Section */
.now-playing-section {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.channel-indicator {
    color: #ff4757;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
}

.playing-content {
    display: flex;
    gap: 25px;
}

.content-thumbnail {
    flex-shrink: 0;
}

.playing-image {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
}

.content-details {
    flex: 1;
}

.content-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.content-description {
    color: #666;
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.status-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.status-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.status-btn.now-playing {
    background: #ff4757;
    color: white;
}

.status-btn.live {
    background: #ff4757;
    color: white;
}

.schedule-info {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #666;
    font-size: 14px;
}

.playback-controls {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.control-icons {
    display: flex;
    gap: 10px;
}

.control-icon {
    width: 40px;
    height: 40px;
    border: 2px solid #ff6b9d;
    background: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6b9d;
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-icon:hover {
    background: #ff6b9d;
    color: white;
}

.progress-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.progress-bar {
    position: relative;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff6b9d, #ff8fab);
    border-radius: 4px;
    transition: width 0.1s ease;
}

.progress-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.time-display {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #666;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
}

.volume-slider {
    flex: 1;
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
    appearance: none;
    width: 16px;
    height: 16px;
    background: #ff6b9d;
    border-radius: 50%;
    cursor: pointer;
}

.play-btn {
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
    align-self: flex-start;
}

.play-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
}

/* Shows Section */
.shows-section {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-left i {
    color: #ff6b9d;
    font-size: 18px;
}

.header-left h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.channel-selector {
    color: #666;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.shows-grid {
    display: grid;
    gap: 20px;
}

.show-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
}

.show-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.show-content {
    display: flex;
    gap: 15px;
}

.show-thumbnail {
    flex-shrink: 0;
}

.show-image {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
}

.show-info {
    flex: 1;
}

.show-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.show-description {
    color: #666;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 10px;
}

.show-meta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.heart-icon {
    color: #007bff;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.profile-pics {
    display: flex;
    align-items: center;
    gap: 8px;
}

.profile-pic {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #666;
}

/* Content Right */
.content-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Program Lineup */
.program-lineup {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.timeline-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 40px;
    bottom: -20px;
    width: 2px;
    background: #e0e0e0;
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-dot {
    width: 12px;
    height: 12px;
    background: #ff6b9d;
    border-radius: 50%;
    flex-shrink: 0;
    z-index: 1;
}

.timeline-content {
    display: flex;
    gap: 12px;
    flex: 1;
}

.timeline-thumbnail {
    flex-shrink: 0;
}

.timeline-image {
    width: 50px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
    background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
}

.timeline-info {
    flex: 1;
}

.timeline-time {
    font-size: 12px;
    color: #666;
    margin-bottom: 2px;
}

.timeline-status {
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 4px;
}

.timeline-status.live {
    color: #ff4757;
}

.timeline-status.syndicated {
    color: #8e44ad;
}

.timeline-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.next-day-btn {
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.next-day-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .main-content {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }

    .content-right {
        order: -1;
    }
}

@media (max-width: 768px) {
    .header-top {
        padding: 15px 20px;
    }

    .main-nav {
        padding: 0 20px;
    }

    .nav-list {
        flex-wrap: wrap;
    }

    .nav-link {
        padding: 12px 15px;
        font-size: 14px;
    }

    .time-display {
        padding: 15px 20px;
        flex-direction: column;
        gap: 10px;
    }

    .digital-clock {
        font-size: 24px;
    }

    .news-ticker {
        padding: 10px 20px;
        flex-direction: column;
        gap: 10px;
    }

    .ticker-label {
        margin-right: 0;
        margin-bottom: 5px;
    }

        .ticker-track {
        animation-duration: 60s;
    }

    .ticker-item {
        font-size: 12px;
        margin-right: 60px;
        line-height: 24px;
    }

    .main-content {
        padding: 15px;
    }

    .playing-content {
        flex-direction: column;
    }

    .playing-image {
        width: 100%;
        height: 200px;
    }

    .status-controls {
        flex-direction: column;
        align-items: flex-start;
    }

    .control-icons {
        justify-content: center;
    }

    .play-btn {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 20px;
    }

    .content-title {
        font-size: 24px;
    }

    .show-content {
        flex-direction: column;
    }

    .show-image {
        width: 100%;
        height: 120px;
    }
}

.mitterween-ad {
    margin-top: 10px;
    width: 100%;
    height: auto;
    border-radius: 12px;
}