/* Movie ASW - Main Stylesheet */
:root {
    --bg-primary: #0d0d14;
    --bg-secondary: #141420;
    --bg-card: #1a1a2e;
    --bg-card-hover: #222240;
    --accent: #f5c518;
    --accent-hover: #ffd700;
    --accent-dim: rgba(245, 197, 24, 0.15);
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --text-muted: #6b6b80;
    --border: #2a2a40;
    --border-light: #353550;
    --danger: #e74c3c;
    --success: #2ecc71;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --transition: 0.3s ease;
}

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

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    background: rgba(13, 13, 20, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0 20px;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary) !important;
    flex-shrink: 0;
}

.brand-icon { font-size: 28px; }
.brand-highlight { color: var(--accent); }
.brand-text { letter-spacing: -0.5px; }

.nav-links {
    display: flex;
    list-style: none;
    gap: 5px;
}

.nav-links a {
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 14px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent);
    background: var(--accent-dim);
}

.nav-search form {
    display: flex;
    align-items: center;
}

.nav-search input {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    padding: 8px 16px;
    color: var(--text-primary);
    font-size: 14px;
    width: 200px;
    outline: none;
    transition: var(--transition);
}

.nav-search input:focus {
    border-color: var(--accent);
    width: 280px;
}

.nav-search button {
    background: var(--accent);
    border: none;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 8px 14px;
    color: #000;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.nav-search button:hover { background: var(--accent-hover); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

/* Hero */
.hero {
    padding: 80px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, #0d0d1a 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(245,197,24,0.03) 0%, transparent 50%);
    animation: heroGlow 10s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-5%, 5%); }
}

.hero-content { position: relative; z-index: 1; }
.hero-content h1 { font-size: 48px; font-weight: 800; margin-bottom: 15px; }
.hero-content p { font-size: 18px; color: var(--text-secondary); max-width: 600px; margin: 0 auto 30px; }

.hero-search form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
}

.hero-search input {
    flex: 1;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius) 0 0 var(--radius);
    padding: 16px 24px;
    color: var(--text-primary);
    font-size: 16px;
    outline: none;
}

.hero-search input:focus { border-color: var(--accent); }

.hero-search button {
    background: var(--accent);
    border: none;
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 16px 32px;
    color: #000;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
}

.hero-search button:hover { background: var(--accent-hover); }

/* Sections */
.section { padding: 40px 0; }

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.section-header h2 { font-size: 24px; font-weight: 700; }

.see-all {
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-tabs {
    display: flex;
    gap: 8px;
}

.filter-tab {
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.filter-tab:hover,
.filter-tab.active {
    color: #000;
    background: var(--accent);
    border-color: var(--accent);
}

/* Movie Grid */
.movie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

.movie-card {
    display: block;
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.movie-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--accent);
}

.movie-card-poster {
    position: relative;
    aspect-ratio: 2/3;
    overflow: hidden;
    background: var(--bg-secondary);
}

.movie-card-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.movie-card:hover .movie-card-poster img {
    transform: scale(1.05);
}

.movie-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.movie-card:hover .movie-card-overlay { opacity: 1; }

.play-btn {
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 20px;
    transform: scale(0.8);
    transition: var(--transition);
}

.movie-card:hover .play-btn { transform: scale(1); }

.movie-card-type {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--accent);
    color: #000;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.movie-card-info {
    padding: 12px;
}

.movie-card-info h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.movie-card-meta {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: var(--text-muted);
}

.movie-card-meta i { margin-right: 3px; }

.no-poster {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--text-muted);
    background: var(--bg-secondary);
}

.no-poster.large { font-size: 60px; }

/* Movie Detail */
.movie-detail {
    background-size: cover !important;
    background-position: center !important;
    padding: 60px 0;
    min-height: 500px;
}

.movie-detail-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.movie-detail-poster {
    flex-shrink: 0;
    width: 300px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.movie-detail-poster img { width: 100%; display: block; }

.movie-detail-info { flex: 1; }

.movie-detail-type {
    display: inline-block;
    background: var(--accent);
    color: #000;
    padding: 4px 14px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.movie-detail-info h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.movie-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--text-secondary);
}

.movie-detail-meta i {
    color: var(--accent);
    margin-right: 6px;
}

.movie-detail-genres {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.genre-tag {
    padding: 5px 14px;
    background: var(--accent-dim);
    border: 1px solid rgba(245, 197, 24, 0.3);
    border-radius: 20px;
    font-size: 13px;
    color: var(--accent);
    transition: var(--transition);
}

.genre-tag:hover {
    background: var(--accent);
    color: #000;
}

.movie-detail-categories,
.movie-detail-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.info-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
    white-space: nowrap;
}

.info-label i {
    margin-right: 4px;
}

.category-badge {
    padding: 4px 12px;
    background: rgba(108, 99, 255, 0.15);
    border: 1px solid rgba(108, 99, 255, 0.3);
    border-radius: 20px;
    font-size: 12px;
    color: #6c63ff;
    transition: var(--transition);
}

.category-badge:hover {
    background: #6c63ff;
    color: #fff;
    border-color: #6c63ff;
}

.tag-badge {
    padding: 4px 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    font-size: 12px;
    color: var(--text-secondary);
}

.movie-detail-desc { margin-bottom: 20px; }
.movie-detail-desc h3 { font-size: 18px; margin-bottom: 10px; }
.movie-detail-desc p { color: var(--text-secondary); line-height: 1.8; }

.movie-detail-cast { margin-bottom: 25px; }
.movie-detail-cast p { margin-bottom: 5px; font-size: 14px; color: var(--text-secondary); }
.movie-detail-cast strong { color: var(--text-primary); }

.movie-detail-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-download {
    background: var(--accent);
    color: #000;
}

.btn-download:hover {
    background: var(--accent-hover);
    color: #000;
    transform: translateY(-2px);
}

.btn-trailer {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border);
}

.btn-trailer:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.btn-lg { padding: 16px 36px; font-size: 18px; }
.btn-sm { padding: 6px 14px; font-size: 13px; }

/* Trailer Section */
.trailer-section { padding: 40px 0; }
.trailer-section h2 { margin-bottom: 20px; }

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

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

/* Download Links Section */
.download-section { padding: 30px 0; }
.download-section h2 { margin-bottom: 20px; }

.download-links {
    display: grid;
    gap: 10px;
}

.download-link-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.download-link-card:hover {
    border-color: var(--accent);
    background: var(--bg-card-hover);
}

.download-link-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.download-quality {
    font-weight: 700;
    color: var(--accent);
}

.download-size {
    color: var(--text-muted);
    font-size: 13px;
}

.download-icon {
    color: var(--accent);
    font-size: 18px;
}

/* Seasons */
.seasons-section { padding: 30px 0; }
.seasons-section h2 { margin-bottom: 20px; }

.season-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
}

.season-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    cursor: pointer;
    user-select: none;
}

.season-header h3 { font-size: 16px; }

.season-header i {
    transition: var(--transition);
    color: var(--text-muted);
}

.season-card.open .season-header i {
    transform: rotate(180deg);
}

.season-episodes {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.season-card.open .season-episodes {
    max-height: 2000px;
}

.episode-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px 10px 30px;
    border-top: 1px solid var(--border);
}

.episode-item:hover { background: var(--bg-card-hover); }

.episode-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.episode-number {
    background: var(--accent-dim);
    color: var(--accent);
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
}

.episode-title { font-size: 14px; }

.no-episodes {
    padding: 20px;
    color: var(--text-muted);
    text-align: center;
}

/* Download Page */
.download-page {
    padding: 60px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.download-card {
    display: flex;
    gap: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    align-items: center;
}

.download-card-left {
    flex-shrink: 0;
    width: 200px;
}

.download-card-left img {
    width: 100%;
    border-radius: var(--radius-sm);
}

.download-card-right {
    flex: 1;
    text-align: center;
}

.download-type {
    display: inline-block;
    background: var(--accent);
    color: #000;
    padding: 3px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.download-card-right h1 {
    font-size: 28px;
    margin-bottom: 25px;
}

/* Countdown */
.countdown-container {
    margin: 20px 0;
}

.countdown-circle {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
}

.countdown-circle svg {
    transform: rotate(-90deg);
}

.countdown-bg {
    fill: none;
    stroke: var(--border);
    stroke-width: 6;
}

.countdown-progress {
    fill: none;
    stroke: var(--accent);
    stroke-width: 6;
    stroke-linecap: round;
    stroke-dasharray: 339.292;
    transition: stroke-dashoffset 1s linear;
}

.countdown-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    font-weight: 800;
    color: var(--accent);
}

.countdown-label {
    color: var(--text-secondary);
    font-size: 14px;
}

.download-ready { margin: 20px 0; }

.ready-icon {
    font-size: 60px;
    color: var(--success);
    margin-bottom: 15px;
}

.download-ready h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.download-ready p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 14px;
}

.download-note {
    font-size: 12px !important;
    color: var(--text-muted) !important;
    margin-top: 10px !important;
}

.download-info {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
    font-size: 13px;
    color: var(--text-secondary);
}

.download-info i { margin-right: 6px; color: var(--accent); }

/* Search Page */
.search-header {
    margin-bottom: 30px;
    text-align: center;
}

.search-header h1 { font-size: 28px; margin-bottom: 8px; }
.search-header p { color: var(--text-secondary); }

.search-form-large {
    margin-bottom: 30px;
}

.search-form-large form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
}

.search-form-large input {
    flex: 1;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius) 0 0 var(--radius);
    padding: 14px 20px;
    color: var(--text-primary);
    font-size: 16px;
    outline: none;
}

.search-form-large input:focus { border-color: var(--accent); }

.search-form-large button {
    background: var(--accent);
    border: none;
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 14px 28px;
    color: #000;
    font-weight: 700;
    cursor: pointer;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state i {
    font-size: 60px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.empty-state h3 { font-size: 22px; margin-bottom: 10px; }
.empty-state p { color: var(--text-secondary); margin-bottom: 20px; }

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.page-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 14px;
    transition: var(--transition);
}

.page-btn:hover,
.page-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #000;
}

/* Error Page */
.error-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    text-align: center;
}

.error-content { padding: 40px; }

.error-code {
    font-size: 120px;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 20px;
    opacity: 0.5;
}

.error-content h1 { font-size: 32px; margin-bottom: 10px; }
.error-content p { color: var(--text-secondary); margin-bottom: 30px; font-size: 18px; }

/* Footer */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 50px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-brand .brand-text { font-size: 20px; }
.footer-brand p { color: var(--text-secondary); margin-top: 10px; font-size: 14px; }

.footer-links h4 { font-size: 14px; margin-bottom: 15px; color: var(--text-primary); }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: var(--text-secondary); font-size: 13px; }
.footer-links a:hover { color: var(--accent); }

.footer-contact p { color: var(--text-secondary); font-size: 13px; margin-bottom: 10px; }
.footer-contact i { margin-right: 8px; }

.footer-social { display: flex; gap: 10px; margin-top: 15px; }
.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.footer-social a:hover { background: var(--accent); color: #000; border-color: var(--accent); }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
}

/* Ad Containers */
.ad-container {
    text-align: center;
    overflow: hidden;
}
.ad-header {
    padding: 10px 0;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
}
.ad-footer {
    padding: 10px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
}

/* Reviews Section */
.reviews-section {
    padding: 50px 0;
    border-top: 1px solid var(--border);
}

.reviews-header {
    text-align: center;
    margin-bottom: 35px;
}

.reviews-header h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
}

.reviews-header h2 i {
    color: var(--accent);
    margin-right: 8px;
}

.reviews-summary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 8px 20px;
}

.reviews-stars {
    display: flex;
    gap: 3px;
}

.reviews-stars i {
    color: var(--accent);
    font-size: 16px;
}

.reviews-stars .fa-star-o {
    color: var(--text-muted);
}

.reviews-avg {
    font-weight: 700;
    color: var(--accent);
    font-size: 16px;
}

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

/* Review Form */
.review-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px;
    margin-bottom: 35px;
}

.review-form-wrapper h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.review-form-wrapper h3::before {
    content: '\f303';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent);
}

.review-form {
    max-width: 100%;
}

.review-rating-select {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px 20px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}

.rating-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 600;
    white-space: nowrap;
}

.star-rating {
    display: flex;
    flex-direction: row-reverse;
    gap: 6px;
}

.star-rating input {
    display: none;
}

.star-rating label {
    cursor: pointer;
    font-size: 28px;
    color: var(--text-muted);
    transition: all 0.2s ease;
    line-height: 1;
}

.star-rating label i {
    font-size: 28px;
}

.star-rating label:hover,
.star-rating label:hover ~ label {
    color: var(--accent);
    transform: scale(1.15);
}

.star-rating input:checked ~ label {
    color: var(--accent);
}

.star-rating input:checked + label {
    animation: starPop 0.3s ease;
}

@keyframes starPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.review-form .form-group {
    margin-bottom: 16px;
}

.review-form input[type="text"],
.review-form textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 14px;
    outline: none;
    transition: var(--transition);
}

.review-form input:focus,
.review-form textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-dim);
}

.review-form textarea {
    resize: vertical;
    min-height: 100px;
}

.review-form .form-row {
    display: flex;
    gap: 15px;
}

.review-form .form-row .form-group {
    flex: 1;
}

.review-form .btn-download {
    padding: 12px 32px;
    font-size: 15px;
}

/* Review List */
.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
    transition: var(--transition);
}

.review-card:hover {
    border-color: var(--border-light);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.review-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-dim), rgba(245, 197, 24, 0.3));
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 17px;
    flex-shrink: 0;
    border: 2px solid rgba(245, 197, 24, 0.2);
}

.review-meta {
    flex: 1;
    min-width: 0;
}

.review-author {
    display: block;
    font-weight: 600;
    font-size: 15px;
    color: var(--text-primary);
}

.review-date {
    font-size: 12px;
    color: var(--text-muted);
}

.review-rating {
    display: flex;
    gap: 3px;
    flex-shrink: 0;
}

.review-rating i {
    color: var(--accent);
    font-size: 15px;
}

.review-rating .fa-star-o {
    color: var(--text-muted);
}

.review-card-body {
    padding-left: 56px;
}

.review-card-body p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.8;
}

.no-reviews {
    text-align: center;
    color: var(--text-muted);
    padding: 50px 20px;
    font-size: 15px;
    background: var(--bg-card);
    border: 1px dashed var(--border);
    border-radius: var(--radius);
}

@media (max-width: 768px) {
    .review-card-body {
        padding-left: 0;
        margin-top: 10px;
    }
    .review-card-header {
        flex-wrap: wrap;
    }
    .review-rating-select {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .review-form .form-row {
        flex-direction: column;
        gap: 0;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .movie-detail-content { flex-direction: column; align-items: center; text-align: center; }
    .movie-detail-poster { width: 200px; }
    .movie-detail-meta { justify-content: center; }
    .movie-detail-genres { justify-content: center; }
    .movie-detail-actions { justify-content: center; }
    .download-card { flex-direction: column; text-align: center; }
    .download-card-left { width: 150px; }
    .footer-content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-primary);
        border-bottom: 1px solid var(--border);
        padding: 20px;
        gap: 5px;
    }
    .nav-search input { width: 120px; }
    .nav-search input:focus { width: 160px; }
    .hero-content h1 { font-size: 32px; }
    .hero-content p { font-size: 16px; }
    .movie-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 15px; }
    .movie-detail-poster { width: 160px; }
    .footer-content { grid-template-columns: 1fr; }
    .movie-detail-info h1 { font-size: 26px; }
    .section-header { flex-direction: column; align-items: flex-start; }
    .filter-tabs { overflow-x: auto; width: 100%; padding-bottom: 5px; }
}

@media (max-width: 480px) {
    .movie-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .nav-search { display: none; }
    .hero-content h1 { font-size: 26px; }
    .download-card { padding: 20px; }
    .movie-card-info h3 { font-size: 12px; }
    .movie-card-meta { font-size: 11px; }
}
