body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #282a2d;
    overflow-x: hidden; /* Hide horizontal overflow */
}

header {
    background: linear-gradient(90deg,#282a2d 0%, #234e6a 40%, #282a2d 100%); /* Plex.tv-like gradient */
    text-align: center;
    padding: 20px;
}

h1 {
    margin: 0;
    font-size: 4em; /* Adjust the font size as needed */
    color: #fff;
    letter-spacing: 1px; /* Adjust letter spacing as needed */
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8); /* Add an outline with text shadow */
}

nav {
    background: linear-gradient(90deg,#282a2d 0%, #234e6a 40%, #282a2d 100%); /* Plex.tv-like gradient */
    padding: 10px;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8); /* Add an outline with text shadow */
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav li {
    display: inline-block;
    cursor: pointer;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    transition: color 0.3s ease-in-out; /* Transition text color only */
    margin: 10px; /* Add margin for spacing between tabs on mobile */
    border-radius: 8px;
}

nav li:hover,
nav li.tab-active {
    color: #FF9900; /* Highlight text color on hover/active */
}

.tab-content {
    display: none;
    background: #282a2d;
    padding: 20px;
    margin-top: 10px; /* Adjust margin as needed */
    border-radius: 8px; /* Add border-radius for a rounded appearance */
}

.image-container img {
    width: 100%;
    max-width: 600px; /* Adjust the max-width as needed */
    height: auto;
    display: block;
    margin: 10px auto; /* Center the images */
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.226);
    transition: transform 0.2s ease-in-out;
}

@media (max-width: 767px) {
    nav {
        text-align: center; /* Center the tabs on mobile */
    }

    nav li {
        width: calc(100% - 20px); /* Make tabs take up the full width minus margins on mobile */
        box-sizing: border-box; /* Include padding and border in the width calculation */
    }
}
