/* ===== Global Styles ===== */
:root {
    --primary-color: #e50914;
    --secondary-color: #ffd700;
    --bg-dark: #0a0a0a;
    --bg-darker: #000000;
    --bg-card: #1a1a1a;
    --bg-hover: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #6a6a6a;
    --border-color: #2a2a2a;
    --shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.7);
    --radius: 8px;
    --radius-lg: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: var(--bg-darker);
    box-shadow: var(--shadow);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-brand i {
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-menu a {
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--text-primary);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a.active::after,
.nav-menu a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-card);
    border-radius: var(--radius);
    color: var(--text-primary);
    font-weight: 500;
}

.lang-switcher:hover {
    background: var(--bg-hover);
    transform: translateY(-2px);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    margin-top: 70px;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.95) 0%,
        rgba(0,0,0,0.7) 50%,
        rgba(0,0,0,0.3) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-info {
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 1rem;
    color: var(--text-secondary);
}

.rating {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--secondary-color);
    font-weight: 600;
}

.rating::before {
    content: '⭐';
}

.separator {
    color: var(--text-muted);
}

.hero-overview {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-primary);
}

.btn-primary:hover {
    background: #f40612;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: rgba(255,255,255,0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

/* ===== Featured Slider Section ===== */
.featured-slider-section {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-card) 100%);
    position: relative;
    overflow: hidden;
    margin-top: 70px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.featured-slider {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.slider-container {
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 0;
}

.slider-item {
    flex: 0 0 100%;
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        45deg,
        rgba(0,0,0,0.8) 0%,
        rgba(0,0,0,0.4) 50%,
        rgba(0,0,0,0.6) 100%
    );
}

.slider-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-primary);
    max-width: 800px;
    padding: 0 20px;
}

.slider-movie-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.slider-movie-overview {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.slider-movie-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.slider-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,0,0,0.7);
    padding: 8px 16px;
    border-radius: 20px;
    color: var(--secondary-color);
    font-weight: 600;
}

.slider-year {
    background: rgba(0,0,0,0.7);
    padding: 8px 16px;
    border-radius: 20px;
}

.slider-genre {
    background: rgba(229, 9, 20, 0.8);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 500;
}

.slider-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0,0,0,0.7);
    border: none;
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* ===== Main Content ===== */
.main-content {
    padding: 60px 0 40px;
    min-height: 50vh;
}

.content-row {
    margin-bottom: 50px;
}

.content-row:last-child {
    margin-bottom: 0;
}

.row-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.row-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
}

.view-all {
    color: var(--text-secondary);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.view-all:hover {
    color: var(--text-primary);
}

.content-slider {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
    -ms-overflow-style: none;
}

.content-slider::-webkit-scrollbar {
    display: none;
}

/* Firefox scrollbar gizle */
@supports (scrollbar-width: none) {
    .content-slider {
        scrollbar-width: none;
    }
}

.content-card {
    flex-shrink: 0;
    width: 200px;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-card);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.content-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
    z-index: 10;
}

.card-poster {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background: var(--bg-darker);
}

.card-info {
    padding: 12px;
}

.card-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.card-rating {
    color: var(--secondary-color);
    font-weight: 600;
}

/* ===== Browse Page ===== */
.browse-header {
    padding: 120px 0 40px;
    text-align: center;
}

.browse-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.browse-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.filters-section {
    padding: 20px 0 40px;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
}

.filters-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: flex-end;
}

.filter-group {
    flex: 1;
    min-width: 150px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.filter-select {
    padding: 12px;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    color: var(--text-primary);
    font-size: 0.95rem;
    cursor: pointer;
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.filter-range {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: var(--bg-dark);
    outline: none;
    -webkit-appearance: none;
}

.filter-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
}

.filter-range::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    border: none;
}

.range-value {
    font-weight: 600;
    color: var(--secondary-color);
    margin-left: 10px;
}

.apply-filters {
    padding: 12px 24px;
}

.browse-results {
    padding: 60px 0;
}

.results-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.results-count {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.btn-page {
    padding: 10px 16px;
    background: var(--bg-card);
    color: var(--text-primary);
    border-radius: var(--radius);
    font-size: 1rem;
}

.btn-page:hover:not(:disabled) {
    background: var(--bg-hover);
}

.btn-page:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.page-info {
    font-weight: 500;
    color: var(--text-secondary);
}

/* ===== Detail Page ===== */
.detail-hero {
    position: relative;
    min-height: 600px;
    margin-top: 70px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.detail-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10,10,10,1) 0%,
        rgba(10,10,10,0.9) 50%,
        rgba(10,10,10,0.7) 100%
    );
}

.detail-content {
    position: relative;
    z-index: 1;
    padding: 60px 0;
}

.detail-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
}

.detail-poster {
    position: relative;
}

.detail-poster img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.poster-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.action-btn {
    flex: 1;
    padding: 12px;
    background: var(--bg-card);
    color: var(--text-primary);
    border-radius: var(--radius);
    font-size: 1.2rem;
}

.action-btn:hover {
    background: var(--bg-hover);
    transform: translateY(-2px);
}

.action-btn.active {
    background: var(--primary-color);
}

.action-btn.active .fa-heart {
    font-weight: 900;
}

.detail-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.detail-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 1rem;
}

.rating-large {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--bg-card);
    padding: 6px 12px;
    border-radius: var(--radius);
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.rating-large::before {
    content: '⭐';
}

.detail-genres {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.genre-tag {
    padding: 6px 14px;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.detail-overview {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.detail-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.detail-buttons {
    display: flex;
    gap: 15px;
}

.detail-section {
    padding: 60px 0;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.cast-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 0;
}

.cast-slider::-webkit-scrollbar {
    display: none;
}

/* Firefox scrollbar gizle */
@supports (scrollbar-width: none) {
    .cast-slider {
        scrollbar-width: none;
    }
}

.cast-card {
    flex-shrink: 0;
    width: 150px;
    text-align: center;
}

.cast-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 12px;
    border: 3px solid var(--border-color);
    background: var(--bg-card);
}

.cast-name {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.cast-character {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ===== Search Page ===== */
.search-section {
    padding: 120px 0 60px;
    min-height: 80vh;
}

.search-header {
    text-align: center;
    margin-bottom: 40px;
}

.search-header h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.search-bar-large {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1.2rem;
}

.search-input-large {
    width: 100%;
    padding: 18px 60px;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-primary);
    font-size: 1.1rem;
    transition: var(--transition);
}

.search-input-large:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(229, 9, 20, 0.1);
}

.clear-search {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    padding: 8px;
    color: var(--text-muted);
}

.clear-search:hover {
    color: var(--text-primary);
}

.search-filters {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
}

.filter-chip {
    padding: 10px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 25px;
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition);
}

.filter-chip:hover,
.filter-chip.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-primary);
}

.empty-state,
.no-results {
    text-align: center;
    padding: 80px 20px;
}

.empty-icon {
    font-size: 4rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.empty-state h3,
.no-results h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.empty-state p,
.no-results p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.search-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 60px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--bg-card);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== Lists Page ===== */
.lists-header {
    padding: 120px 0 30px;
    text-align: center;
}

.lists-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.lists-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.lists-tabs {
    padding: 20px 0;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 70px;
    z-index: 100;
}

.tabs-container {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: transparent;
    color: var(--text-secondary);
    border-radius: var(--radius);
    font-weight: 500;
    position: relative;
}

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

.tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 8px;
    background: var(--primary-color);
    color: var(--text-primary);
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.lists-content {
    padding: 60px 0;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.list-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.list-header h2 {
    font-size: 1.8rem;
}

.clear-list {
    padding: 10px 20px;
    font-size: 0.95rem;
}

/* ===== Modal ===== */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.9);
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    z-index: 1;
}

.modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    padding: 10px;
    color: var(--text-primary);
    font-size: 1.5rem;
    z-index: 2;
}

.modal-close:hover {
    color: var(--primary-color);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ===== Footer ===== */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: 40px 0;
    margin-top: auto;
    width: 100%;
}

.footer-content {
    text-align: center;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.footer-text {
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== Loading Skeleton ===== */
.loading-skeleton {
    display: flex;
    gap: 15px;
    overflow: hidden;
}

.skeleton-card {
    flex-shrink: 0;
    width: 200px;
    height: 350px;
    background: linear-gradient(90deg, var(--bg-card) 0%, var(--bg-hover) 50%, var(--bg-card) 100%);
    background-size: 200% 100%;
    border-radius: var(--radius);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .detail-layout {
        grid-template-columns: 250px 1fr;
        gap: 30px;
    }

    .detail-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .nav-menu {
        gap: 10px;
    }

    .nav-menu a {
        font-size: 0.85rem;
    }

    .hero {
        min-height: 400px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-overview {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .slider-movie-title {
        font-size: 2rem;
    }

    .slider-movie-overview {
        font-size: 1rem;
    }

    .slider-movie-meta {
        flex-direction: column;
        gap: 10px;
    }

    .slider-item {
        height: 350px;
    }

    .detail-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .detail-poster {
        max-width: 300px;
        margin: 0 auto;
    }

    .detail-title {
        font-size: 1.8rem;
    }

    .content-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 12px;
    }

    .tabs-container {
        flex-direction: column;
        gap: 10px;
    }

    .filters-container {
        flex-direction: column;
        gap: 15px;
    }

    .filter-group {
        min-width: 100%;
    }

    .main-content {
        padding: 40px 0 30px;
    }

    .content-row {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .navbar {
        padding: 15px 0;
    }

    .nav-brand {
        font-size: 1.2rem;
    }

    .nav-menu {
        gap: 8px;
    }

    .nav-menu a {
        font-size: 0.8rem;
    }

    .hero {
        min-height: 350px;
        margin-top: 60px;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-overview {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .content-card {
        width: 100%;
        min-width: 130px;
    }

    .card-poster {
        height: 195px;
    }

    .card-title {
        font-size: 0.85rem;
    }

    .content-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .main-content {
        padding: 30px 0 20px;
    }

    .content-row {
        margin-bottom: 30px;
    }

    .row-header h2 {
        font-size: 1.2rem;
    }

    .detail-title {
        font-size: 1.5rem;
    }

    .browse-header h1,
    .search-header h1,
    .lists-header h1 {
        font-size: 2rem;
    }
}

