* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    min-height: 100vh;
    background-color: #0f0f0f;
    color: #ffffff;
}

.landing-page {
    background: url('hero.jpg') center center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-container {
    text-align: center;
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo {
    max-width: 40%;
    height: auto;
    margin-bottom: 2rem;
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #ff4081;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #f50057;
}

/* Home page shows section */
.shows-section {
    padding: 2rem;
}

.shows-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: white;
}

.shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.show-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    background-color: #1a1a1a;
}

.show-card:hover {
    transform: scale(1.05);
}

.show-card img {
    width: 100%;
    height: auto;
    display: block;
}

.show-card-title {
    padding: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
}

.shows-coming-soon {
    text-align: center;
    color: #888;
    font-size: 1.1rem;
    padding: 2rem;
    background-color: #1a1a1a;
    border-radius: 8px;
}

/* Show page styles */
.show-hero {
    background-color: #1a1a1a;
    padding: 2rem;
    margin-bottom: 2rem;
}

.show-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
}

.show-hero-poster {
    width: 100%;
    border-radius: 8px;
}

.show-hero-info h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.show-hero-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 1rem;
}

.show-hero-meta {
    color: #888;
    margin-bottom: 1rem;
}

.episode-card a {
    color: white;
    text-decoration: none;
}

.episode-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Watch page styles */
.video-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    background-color: #1a1a1a;
    border-radius: 4px;
    margin: 1rem 2rem;
}

.back-button:hover {
    background-color: #2a2a2a;
}

/* Show page styles */
.season-selector {
    padding: 1rem 2rem;
    background-color: #1a1a1a;
    position: sticky;
    top: 0;
    z-index: 100;
}

.episodes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
}

.episode-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background-color: #1a1a1a;
}

.episode-card img {
    width: 100%;
    height: auto;
}

.episode-info {
    padding: 1rem;
}

.episode-duration {
    color: #888;
    font-size: 0.9rem;
}

.warning-banner {
    background-color: #ff4081;
    color: white;
    text-align: center;
    padding: 1rem;
    margin-bottom: 1rem;
}

.episode-list {
    padding: 2rem;
}

.now-playing {
    position: relative;
}

.now-playing::before {
    content: "NOW PLAYING";
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background-color: #ff4081;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    z-index: 1;
}

/* Footer styles */
.footer {
    background-color: #1a1a1a;
    color: #888;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
    width: 100%;
    position: relative;
    margin-top: 2rem;
}

.footer a {
    color: #ff4081;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Header styles */
.header {
    background-color: #1a1a1a;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.header-logo {
    height: 40px;
    width: auto;
}

.header-nav {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.header-nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.header-nav a:hover {
    color: #ff4081;
}

/* Adjust main content padding for header */
body:not(.landing-page) {
    padding-top: 1rem;
}

/* Home page hero styles */
.home-hero {
    margin-bottom: 3rem;
}

.hero-image {
    width: 100%;
    min-height: 400px;
    object-fit: cover;
}

.hero-content {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-cta {
    display: inline-block;
    background-color: #ff4081;
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.hero-cta:hover {
    background-color: #f50057;
}

/* 404 Error Page styles */
.error-container {
    max-width: 600px;
    margin: 4rem auto;
    text-align: center;
    padding: 2rem;
}

.error-container h1 {
    font-size: 6rem;
    font-weight: 600;
    color: #ff4081;
    margin-bottom: 1rem;
}

.error-container h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
}

.error-container p {
    color: #888;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.error-button {
    display: inline-block;
    background-color: #ff4081;
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.error-button:hover {
    background-color: #f50057;
} 