body {
    font-family: Arial, sans-serif;
    background-color: #1C2025; /* Background color matching the design */
    margin: 0;
    padding: 0;
    color: #FFFFFF;
}

header {
    background: linear-gradient(90deg, #1C2025, #2F3B4C); /* Gradient background */
    padding: 10px 20px;
    text-align: center; /* Center align */
    display: flex;
    justify-content: space-around; /* Center content */
    align-items: center;
    border-bottom: 2px solid #00BFFF;
}

header .logo {
    display: flex;
    align-items: center;
}

header .logo img {
    max-width: 150px;
    margin-right: 20px;
}

nav {
    display: flex;
    align-items: center;
}

nav a {
    color: #FFFFFF;
    text-decoration: none;
    margin: 0 15px;
    font-size: 14px;
}

nav a:hover {
    text-decoration: underline;
}

.slider {
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: 20px auto;
    overflow: hidden;
    text-align: center;
    border-radius: 10px;
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease-in-out; /* Transition effect */
}

.slider-item {
    min-width: 100%;
    box-sizing: border-box;
}

.slider-item img {
    width: 100%;
    height: auto;
    display: block;
}

.slider-navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.content {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}


.slider-navigation button {
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    padding: 10px;
    cursor: pointer;
}

.slider-navigation button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.scroll-text {
    display: flex;
    align-items: center;
    background-color: #292e33; /* Red background */
    color: white;
    padding: 10px;
    margin: 10px 352px;
    border-radius: 5px;
    font-size: 16px;
}

.scroll-text marquee {
    color: white;
}

.sections {
    margin: 20px auto;
    width: 90%;
    max-width: 1200px;
}

.section {
    background-color: #292E33;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.section h2 {
    margin-top: 0;
    font-size: 18px;
    border-bottom: 2px solid #00BFFF;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
}

.channels {
    display: flex;
    flex-wrap: wrap;
    /*justify-content: space-between;*/
}

.channels img {
    width: 204px; /* Desktop size */
    height: 280px; /* Desktop size */
    display: block;
    margin: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.channels img:hover {
    transform: scale(1.05);
}

/* Mobile Styles */
@media (max-width: 767px) {
    .channels img {
        width: 150px; /* Mobile size */
        height: 160px; /* Mobile size */
        margin: 5px; /* Adjust margin for better spacing on mobile */
    }

    .scroll-text {
        display: flex;
        align-items: center;
        background-color: #292e33; /* Red background */
        color: white;
        padding: 10px;
        margin: 10px 20px;
        border-radius: 5px;
        font-size: 16px;
    }

    .slider {
        width: 90%;
    }
}
