* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

header {
    background-color: #d62828;
    color: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    margin-right: 15px;
}

.logo h1 {
    font-size: 24px;
    font-weight: 700;
}

nav ul {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

nav ul li a:hover, nav ul li.active a {
    background-color: rgba(255,255,255,0.2);
}

main {
    padding: 30px 0;
}

.live-section {
    margin: 30px 0;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.live-section h2, .program-guide h2 {
    color: #d62828;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #d62828;
    font-size: 24px;
}

.live-player {
    background-color: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    margin-bottom: 20px;
}

.video-js {
    width: 100%;
    height: auto;
    min-height: 400px;
}

.program-guide {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.program-list {
    margin: 20px 0;
}

.program-item {
    display: flex;
    background-color: white;
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.program-time {
    width: 80px;
    font-weight: bold;
    color: #d62828;
    font-size: 18px;
}

.program-info h3 {
    color: #003049;
    margin-bottom: 8px;
    font-size: 18px;
}

.program-info p {
    color: #666;
    font-size: 15px;
}

footer {
    background-color: #003049;
    color: white;
    padding: 40px 0 20px;
    text-align: center;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #f77f00;
}

.social-media {
    margin-bottom: 25px;
}

.social-media a {
    color: white;
    font-size: 24px;
    margin: 0 15px;
    transition: color 0.3s;
}

.social-media a:hover {
    color: #f77f00;
}

.copyright {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-top: 20px;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }
    
    .logo {
        justify-content: center;
        margin-bottom: 15px;
    }
    
    nav ul {
        justify-content: center;
        margin-top: 15px;
    }
    
    nav ul li {
        margin: 0 10px 10px;
    }
    
    .program-item {
        flex-direction: column;
    }
    
    .program-time {
        margin-bottom: 10px;
        width: 100%;
    }
    
    .video-js {
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 20px;
    }
    
    nav ul li a {
        padding: 5px 10px;
        font-size: 14px;
    }
    
    .live-section h2, .program-guide h2 {
        font-size: 20px;
    }
    
    .program-time {
        font-size: 16px;
    }
    
    .program-info h3 {
        font-size: 16px;
    }
    
    .program-info p {
        font-size: 14px;
    }
}