:root {
    --primary: #ff6b6b;
    --dark: #1a1a2e;
    --light: #f8f8f8;
    --accent: #4cc9f0;
}

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

body {
    background-color: var(--dark);
    color: var(--light);
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent);
    position: fixed;
    width: 100%;
    z-index: 100;
    transition: all 0.3s;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary);
    text-decoration: none;
}

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

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

nav ul li a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--accent);
}

.hero {
    height: 80vh;
    background: 
        linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), /* Dark overlay */
        url('https://occ-0-8407-92.1.nflxso.net/dnm/api/v6/Z-WHgqd_TeJxSuha8aZ5WpyLcX8/AAAABUZRetY0NwWkIBQ-9QF0PLIDcuUCPKgno_8riE_In9tHRgqqTTSG-vGiP5ctXrVMY4PESkV5-x1LE_MGn32QtUZfnoNR4Hx9GoRI.jpg?r=9fa') no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 50px;
    text-align: center; /* For Turkish text alignment */
}

.hero-content {
    max-width: 800px; /* Slightly wider for better text flow */
    margin: 0 auto; /* Center the content */
}

.hero h1 {
    font-size: 3.5rem; /* Larger for impact */
    margin-bottom: 25px;
    color: var(--primary);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5); /* Better readability */
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    line-height: 1.7;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s;
}

.btn:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
}

.container {
    padding: 50px;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--accent);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50%;
    height: 3px;
    background-color: var(--primary);
}

.show-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.show-card {
    background-color: #16213e;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.show-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.show-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.show-info {
    padding: 20px;
}

.show-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--light);
}

.show-meta {
    display: flex;
    justify-content: space-between;
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.show-desc {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #ccc;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.watch-btn {
    display: block;
    text-align: center;
    padding: 8px 0;
    background-color: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.watch-btn:hover {
    background-color: var(--accent);
}

.genre-tabs {
    display: flex;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 10px;
}

.genre-tab {
    padding: 8px 20px;
    background-color: #16213e;
    border-radius: 20px;
    color: var(--light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.genre-tab:hover, .genre-tab.active {
    background-color: var(--primary);
}

footer {
    background-color: #0f0f1a;
    padding: 50px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent);
}

.copyright {
    color: #666;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    header {
        padding: 20px;
    }
    
    .hero {
        padding: 0 20px;
        height: 70vh;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .container {
        padding: 30px 20px;
    }
    
    .show-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

.about-hero {
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('https://source.unsplash.com/random/1920x1080/?cinema,theater') no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.about-content {
    padding: 50px 0;
    max-width: 1000px;
    margin: 0 auto;
}

.about-content h2 {
    color: var(--accent);
    margin: 40px 0 20px;
    font-size: 1.8rem;
}

.about-content p {
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.feature-card {
    background-color: #16213e;
    padding: 25px;
    border-radius: 10px;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.3rem;
}


.faq-hero {
    height: 40vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('https://source.unsplash.com/random/1920x400/?question,faq') center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.faq-grid {
    display: grid;
    gap: 20px;
    margin: 50px 0;
}

.faq-item {
    background: #16213e;
    padding: 25px;
    border-radius: 8px;
    transition: transform 0.3s;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-item h3 {
    color: var(--accent);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.faq-item p {
    line-height: 1.6;
}
.blog-hero {
    height: 50vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('https://source.unsplash.com/random/1920x1080/?writing,blog') no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.blog-post {
    background-color: #16213e;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.blog-post h2 {
    color: var(--accent);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.blog-meta {
    display: flex;
    gap: 20px;
    color: #aaa;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.blog-content {
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.read-more {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s;
}

.read-more:hover {
    background-color: var(--accent);
}


.show-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.action-wrapper {
    display: flex;
    gap: 10px;
    width: 100%;
    max-width: 300px; /* Adjust as needed */
}

/* Save Button Styles */
.save-btn {
    padding: 8px 12px;
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
/* Keep all existing save-btn hover/active states */
.save-btn:hover {
    background-color: rgba(255, 107, 107, 0.1);
}

.save-btn.saved {
    background-color: var(--primary);
    color: white;
}

.save-icon {
    font-size: 1.1em;
}

/* Make IMDb button match save button width */
.watch-btn {
    flex: 1;
    min-width: 100px;
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--dark);
    color: white;
    padding: 12px 24px;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s;
    border: 1px solid var(--accent);
}

.toast-notification.show {
    opacity: 1;
}

.remove-btn {
    padding: 8px 0;
    background-color: transparent;
    color: #ff4d4d;
    border: 1px solid #ff4d4d;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.remove-btn:hover {
    background-color: rgba(255, 77, 77, 0.1);
}

/* Save Button Styles */
.show-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.save-btn {
    padding: 8px 12px;
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.save-btn.saved {
    background-color: var(--primary);
    color: white;
}

.save-btn:hover {
    background-color: rgba(255, 107, 107, 0.1);
}