* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #141414;
    color: #ffffff;
    overflow-x: hidden;
}

/* Header / Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 50px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    color: #e50914;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    cursor: pointer;
    transition: transform 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.logo:hover {
    transform: scale(1.05);
    color: #e50914;
}

.logo-img {
    max-height: 40px;
    width: auto;
    object-fit: contain;
}

.footer-logo-img {
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 25px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: #e5e5e5;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    padding: 5px 0;
}

.nav-links a:hover {
    color: #fff;
}

.nav-links a.active {
    color: #fff;
    font-weight: 600;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #e50914;
}

.list-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: #e50914;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border-radius: 3px;
    margin-left: 6px;
    line-height: 1;
    transition: all 0.3s ease;
    vertical-align: middle;
}

.nav-links a:hover .list-badge {
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 2px 8px rgba(229, 9, 20, 0.5);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

/* Search Icon & Box */
.search-icon {
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-icon:hover {
    color: #e50914;
    transform: scale(1.1);
}

.search-box {
    position: absolute;
    right: 125px;
    top: 50%;
    transform: translateY(-50%) translateX(20px);
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 8px 16px;
    align-items: center;
    gap: 8px;
    min-width: 300px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
}

.search-box.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(-50%) translateX(0);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

.search-box input {
    flex: 1;
    background: none;
    border: none;
    color: #fff;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    outline: none;
    padding: 5px;
}

.search-box input::placeholder {
    color: #999;
}

.search-close {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 16px;
    padding: 5px;
    transition: color 0.3s;
}

.search-close:hover {
    color: #fff;
}

/* Notification Button & Dropdown */
.notification-container {
    position: relative;
}

.notification-btn {
    position: relative;
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s;
}

.notification-btn:hover {
    color: #e50914;
    transform: scale(1.1);
}

.notification-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: #e50914;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 5px;
    border-radius: 10px;
    min-width: 16px;
    text-align: center;
}

.notification-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 380px;
    max-height: 500px;
    background-color: rgba(20, 20, 20, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid #333;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.6);
    display: none;
    flex-direction: column;
    z-index: 1001;
    animation: dropdownSlide 0.3s ease;
}

.notification-dropdown.active {
    display: flex;
}

@keyframes dropdownSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.notification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #333;
}

.notification-header h3 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.mark-all-read {
    background: none;
    border: none;
    color: #e50914;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s;
}

.mark-all-read:hover {
    color: #ff1f2f;
    text-decoration: underline;
}

.notification-list {
    overflow-y: auto;
    max-height: 380px;
    scrollbar-width: thin;
    scrollbar-color: #555 transparent;
}

.notification-list::-webkit-scrollbar {
    width: 6px;
}

.notification-list::-webkit-scrollbar-track {
    background: transparent;
}

.notification-list::-webkit-scrollbar-thumb {
    background: #555;
    border-radius: 3px;
}

.notification-item {
    display: flex;
    gap: 12px;
    padding: 15px 20px;
    border-bottom: 1px solid #222;
    cursor: pointer;
    transition: all 0.3s;
}

.notification-item:hover {
    background-color: rgba(255,255,255,0.05);
}

.notification-item.unread {
    background-color: rgba(229, 9, 20, 0.05);
}

.notification-item {
    cursor: pointer;
}

.notification-empty {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.notification-empty i {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.5;
}

.notification-empty p {
    font-size: 14px;
    color: #999;
}

.notification-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e50914, #831010);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
}

.notification-content {
    flex: 1;
}

.notification-text {
    font-size: 13px;
    color: #e5e5e5;
    line-height: 1.5;
    margin: 0 0 5px 0;
}

.notification-text strong {
    color: #fff;
    font-weight: 600;
}

.notification-time {
    font-size: 11px;
    color: #999;
}

.notification-footer {
    padding: 12px 20px;
    border-top: 1px solid #333;
    text-align: center;
}

.notification-footer a {
    color: #e50914;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.3s;
}

.notification-footer a:hover {
    color: #ff1f2f;
    text-decoration: underline;
}

/* User Profile Container */
.user-profile-container {
    position: relative;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.user-profile:hover {
    background: rgba(255, 255, 255, 0.1);
}

.user-profile img {
    width: 35px;
    height: 35px;
    border-radius: 4px;
    object-fit: cover;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.user-profile:hover img {
    border-color: #e50914;
}

.user-profile i {
    color: #fff;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.user-profile-container:hover .user-profile i {
    transform: rotate(180deg);
}

/* User Dropdown */
.user-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: #181818;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    overflow: hidden;
}

.user-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown-header {
    background: linear-gradient(135deg, #e50914 0%, #b20710 100%);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-dropdown-header img {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.user-dropdown-header .user-info {
    flex: 1;
    min-width: 0;
}

.user-info h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.subscription-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.subscription-badge.free {
    background: rgba(108, 117, 125, 0.3);
    color: #fff;
}

.subscription-badge.basic {
    background: rgba(23, 162, 184, 0.3);
    color: #17a2b8;
}

.subscription-badge.standard {
    background: rgba(255, 193, 7, 0.3);
    color: #ffc107;
}

.subscription-badge.premium {
    background: rgba(255, 215, 0, 0.3);
    color: #ffd700;
}

.user-dropdown-body {
    padding: 10px 0;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.dropdown-item i {
    width: 20px;
    color: #b3b3b3;
    font-size: 16px;
}

.dropdown-item.admin-panel {
    color: #ff9800;
    font-weight: 600;
}

.dropdown-item.admin-panel i {
    color: #ff9800;
}

.dropdown-item.admin-panel:hover {
    background: rgba(255, 152, 0, 0.1);
}

.dropdown-item.logout {
    color: #e50914;
}

.dropdown-item.logout i {
    color: #e50914;
}

.dropdown-item.logout:hover {
    background: rgba(229, 9, 20, 0.1);
}

.dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 10px 0;
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

/* Mobile Menu */
.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(0,0,0,0.98);
    backdrop-filter: blur(10px);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-menu.active {
    max-height: 500px;
    border-top: 1px solid #333;
}

.mobile-menu ul {
    list-style: none;
    padding: 20px 30px;
}

.mobile-menu ul li {
    margin: 0;
}

.mobile-menu ul li a {
    display: block;
    color: #e5e5e5;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 15px 10px;
    border-bottom: 1px solid #222;
    transition: all 0.3s;
}

.mobile-menu ul li a:hover {
    color: #e50914;
    padding-left: 20px;
}

.mobile-menu ul li a i {
    margin-right: 10px;
    width: 20px;
}

.mobile-menu-divider {
    height: 1px;
    background-color: #333;
    margin: 10px 0;
}

/* Hero Slider Section */
.hero-slider {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    display: flex;
    align-items: center;
    padding: 0 50px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-slide[data-movie="the-dark-knight"] {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(20,20,20,1)),
                url('https://images.unsplash.com/photo-1536440136628-849c177e76a1?w=1920&h=1080&fit=crop') center/cover;
}

.hero-slide[data-movie="inception"] {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(20,20,20,1)),
                url('https://images.unsplash.com/photo-1594908900066-3f47337549d8?w=1920&h=1080&fit=crop') center/cover;
}

.hero-slide[data-movie="interstellar"] {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(20,20,20,1)),
                url('https://images.unsplash.com/photo-1489599849927-2ee91cede3ba?w=1920&h=1080&fit=crop') center/cover;
}

.hero-content {
    max-width: 650px;
    margin-top: 80px;
    animation: slideInContent 0.8s ease-out;
}

@keyframes slideInContent {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
}

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #e5e5e5;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.25s ease;
    letter-spacing: 0.3px;
}

.btn i {
    font-size: 18px;
}

.btn-play {
    background: #ffffff;
    color: #000;
    text-decoration: none;
}

.btn-play:hover {
    background: #e8e8e8;
    transform: scale(1.05);
}

.btn-play:active {
    transform: scale(1);
}

.btn-info {
    background: #2a2a2a;
    color: #fff;
}

.btn-info:hover {
    background: #3a3a3a;
    transform: scale(1.05);
}

.btn-info:active {
    transform: scale(1);
}

/* Hero Slider Controls */
.hero-prev,
.hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.hero-prev:hover,
.hero-next:hover {
    background-color: rgba(229,9,20,0.8);
    transform: translateY(-50%) scale(1.1);
}

.hero-prev {
    left: 20px;
}

.hero-next {
    right: 20px;
}

/* Hero Indicators */
.hero-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-indicators .indicator:hover {
    background-color: rgba(255,255,255,0.8);
}

.hero-indicators .indicator.active {
    background-color: #e50914;
    width: 30px;
    border-radius: 6px;
}

/* Movie Modal */
.movie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.85);
    z-index: 2000;
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
}

.movie-modal.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    position: relative;
    max-width: 900px;
    margin: 60px auto;
    background-color: #181818;
    border-radius: 8px;
    overflow: hidden;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(0,0,0,0.7);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background-color: #e50914;
    transform: rotate(90deg);
}

.modal-body {
    display: flex;
    gap: 30px;
    padding: 40px;
}

.modal-poster {
    flex-shrink: 0;
    width: 300px;
}

.modal-poster img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.modal-info {
    flex: 1;
}

.modal-info h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #fff;
}

.modal-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    font-size: 14px;
    color: #bbb;
}

.modal-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.modal-description,
.modal-cast,
.modal-crew,
.modal-genres {
    margin-bottom: 25px;
}

.modal-description h3,
.modal-cast h3,
.modal-genres h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #fff;
}

.modal-description p {
    line-height: 1.7;
    color: #ddd;
    font-size: 15px;
}

.cast-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cast-member {
    background-color: rgba(255,255,255,0.1);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    color: #fff;
}

.modal-crew {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.crew-item h4 {
    font-size: 14px;
    color: #888;
    margin-bottom: 5px;
}

.crew-item p {
    font-size: 15px;
    color: #fff;
}

.genre-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.genre-tag {
    background-color: rgba(229,9,20,0.2);
    border: 1px solid #e50914;
    color: #e50914;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
}

/* Movie Sections */
.movie-section {
    padding: 40px 50px;
    position: relative;
}

.section-title {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
}

.movie-row-container {
    position: relative;
}

.movie-row {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 10px 0;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.movie-row::-webkit-scrollbar {
    display: none;
}

/* Slider Navigation Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.7);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 150;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.movie-section:hover .slider-btn {
    opacity: 1;
}

.slider-btn:hover {
    background: rgba(255,255,255,0.9);
    color: #000;
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: -25px;
}

.slider-btn.next {
    right: -25px;
}

.slider-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Movie Cards - Vertical Poster Style */
.movie-card {
    min-width: 220px;
    width: 220px;
    height: 330px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    border: 1px solid transparent;
}

.movie-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(229,9,20,0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 1;
    pointer-events: none;
}

.movie-card:hover::before {
    opacity: 1;
}

.movie-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s ease;
    filter: brightness(0.95);
}

.movie-card:hover {
    transform: translateY(0);
    z-index: 100;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5), 0 0 15px rgba(229, 9, 20, 0.2);
    border-color: rgba(229, 9, 20, 0.4);
}

.movie-card:hover img {
    transform: scale(1);
    filter: brightness(1.05);
}

/* Hover Overlay with Play Button */
.movie-card::after {
    content: '\f04b';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 24px;
    color: #fff;
    background: rgba(229, 9, 20, 0.9);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 3;
    box-shadow: 0 3px 12px rgba(229, 9, 20, 0.4);
    pointer-events: none;
}

.movie-card:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.movie-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.98) 0%, rgba(0,0,0,0.85) 50%, transparent 100%);
    padding: 25px 12px 12px;
    transform: translateY(0);
    transition: all 0.4s ease;
    z-index: 2;
}

.movie-card:hover .movie-info {
    background: linear-gradient(to top, rgba(0,0,0,0.98) 0%, rgba(0,0,0,0.9) 60%, transparent 100%);
    padding-bottom: 15px;
}

.movie-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.movie-meta {
    font-size: 12px;
    color: #d1d1d1;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 2px;
}

.rating {
    color: #ffd700;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: rgba(255, 215, 0, 0.15);
    padding: 3px 8px;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.rating::before {
    content: '\f005';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 10px;
}

.movie-year {
    color: #999;
    background: rgba(255,255,255,0.1);
    padding: 3px 8px;
    border-radius: 10px;
    font-weight: 500;
}

/* Action buttons on hover */
.movie-actions {
    display: none;
    gap: 8px;
    margin-top: 12px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.movie-card:hover .movie-actions {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.movie-action-btn {
    background: rgba(255,255,255,0.95);
    border: 2px solid transparent;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #000;
    font-size: 13px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.movie-action-btn:hover {
    background: #e50914;
    color: #fff;
    border-color: #fff;
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 4px 12px rgba(229, 9, 20, 0.5);
}

.movie-action-btn:active {
    transform: scale(0.95);
}

.movie-action-btn.active {
    background: #e50914;
    color: #fff;
    border-color: #fff;
}

.movie-action-btn.active:hover {
    background: #b20710;
}

/* Watch Page Styles */
.watch-section {
    margin-top: 65px;
    background-color: #000;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.video-player {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    background-color: #000;
}

/* Video.js Custom Styles */
.video-js {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    max-height: 700px;
    font-family: 'Montserrat', sans-serif;
    background-color: #000;
}

/* Büyük Oynat Butonu */
.video-js .vjs-big-play-button {
    border: none;
    background-color: rgba(229, 9, 20, 0.9);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    font-size: 36px;
    top: 50%;
    left: 50%;
    margin-top: -35px;
    margin-left: -35px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-js .vjs-big-play-button:hover {
    background-color: #e50914;
    transform: scale(1.05);
}

.video-js .vjs-big-play-button .vjs-icon-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.video-js .vjs-big-play-button .vjs-icon-placeholder:before {
    position: relative;
    top: 0;
    left: 2px;
}

/* Kontrol Barı */
.video-js .vjs-control-bar {
    background-color: #1a1a1a;
    height: 3em;
    display: flex;
}

/* Progress Bar */
.video-js .vjs-progress-control {
    position: relative;
}

.video-js .vjs-play-progress {
    background-color: #e50914;
}

.video-js .vjs-play-progress:before {
    color: #fff;
    font-size: 0.8em;
}

.video-js .vjs-load-progress {
    background-color: rgba(255, 255, 255, 0.2);
}

.video-js .vjs-load-progress div {
    background-color: rgba(255, 255, 255, 0.3);
}

.video-js .vjs-slider {
    background-color: rgba(255, 255, 255, 0.15);
}

/* Ses Seviyesi */
.video-js .vjs-volume-level {
    background-color: #e50914;
}

/* Butonlar */
.video-js .vjs-button {
    color: #fff;
}

.video-js .vjs-button:hover {
    color: #e50914;
}

/* Zaman Göstergeleri */
.video-js .vjs-current-time,
.video-js .vjs-duration,
.video-js .vjs-remaining-time {
    font-family: 'Montserrat', sans-serif;
    font-size: 1em;
    color: #ccc;
}

.video-js .vjs-time-divider {
    color: #666;
}

/* Tooltip */
.video-js .vjs-time-tooltip,
.video-js .vjs-mouse-display .vjs-time-tooltip,
.video-js .vjs-play-progress .vjs-time-tooltip {
    background-color: #1a1a1a;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9em;
    padding: 5px 8px;
    border-radius: 3px;
}

/* Menü (Playback Rate & Quality) */
.video-js .vjs-menu-button-popup .vjs-menu {
    background-color: #1a1a1a;
    border-radius: 4px;
}

.video-js .vjs-menu-content {
    background-color: #1a1a1a;
}

.video-js .vjs-menu li {
    background-color: #1a1a1a;
    color: #ccc;
    font-family: 'Montserrat', sans-serif;
    padding: 0.5em;
    font-size: 1em;
}

.video-js .vjs-menu li:hover {
    background-color: #333;
    color: #fff;
}

.video-js .vjs-menu li.vjs-selected {
    background-color: #e50914;
    color: #fff;
}

.video-js .vjs-menu li.vjs-selected:before {
    content: '✓ ';
    margin-right: 5px;
}

/* Loading Spinner */
.video-js .vjs-loading-spinner {
    border-color: rgba(255, 255, 255, 0.2);
}

.video-js .vjs-loading-spinner:before,
.video-js .vjs-loading-spinner:after {
    border-color: #e50914 transparent transparent transparent;
}

/* Geri Butonu */
.video-back-btn-fixed {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: rgba(26, 26, 26, 0.9);
    border: none;
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    z-index: 1000;
}

.video-back-btn-fixed:hover {
    background-color: #e50914;
}

.video-back-btn-fixed i {
    font-size: 14px;
}

/* Movie Details */
.movie-details {
    background-color: #0a0a0a;
    padding: 30px 0;
}

.details-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

.details-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #1a1a1a;
}

.details-left {
    flex: 1;
}

.movie-details-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 12px;
}

.movie-details-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.meta-item {
    font-size: 15px;
    color: #d1d1d1;
    display: flex;
    align-items: center;
    gap: 5px;
}

.meta-item i {
    color: #ffd700;
}

.badge-18 {
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid #666;
    font-weight: 600;
}

.quality-badge {
    background: linear-gradient(135deg, #e50914, #831010);
    padding: 4px 12px;
    border-radius: 6px;
    font-weight: 700;
    color: #fff;
}

.movie-genres {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.genre-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    border: 1px solid #333;
    transition: all 0.3s;
}

.genre-badge:hover {
    background: rgba(229, 9, 20, 0.2);
    border-color: #e50914;
}

.details-right {
    display: flex;
    gap: 12px;
}

.action-detail-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #333;
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.action-detail-btn:hover {
    background: #e50914;
    border-color: #e50914;
}

.action-detail-btn.active {
    background: rgba(229, 9, 20, 0.3);
    border-color: #e50914;
    color: #e50914;
}

.action-detail-btn.active:hover {
    background: #e50914;
    color: #fff;
}

/* Toast Messages */
.toast-message {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #333;
    color: #fff;
    padding: 15px 25px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 99999;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.toast-message.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast-message.success {
    background: linear-gradient(135deg, #46d369, #2d8a4e);
}

.toast-message.error {
    background: linear-gradient(135deg, #e50914, #b20710);
}

.toast-message i {
    font-size: 18px;
}

/* Similar Card Link Style */
.similar-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

.similar-card .no-poster {
    width: 100%;
    height: 100%;
    background: rgba(30, 30, 30, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #444;
}

.details-content {
    display: grid;
    gap: 20px;
}

.description-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #1a1a1a;
}

.description-box h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #e50914;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.description-box p {
    font-size: 14px;
    line-height: 1.6;
    color: #d1d1d1;
}

.cast-crew-box {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.cast-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #1a1a1a;
    flex: 1;
    min-width: 200px;
}

.cast-item h4 {
    font-size: 11px;
    font-weight: 700;
    color: #e50914;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cast-item p {
    font-size: 13px;
    color: #d1d1d1;
    line-height: 1.5;
}

.cast-item-full {
    flex: 1 1 100%;
    min-width: 100%;
}

/* Episodes Section */
.episodes-section {
    margin-top: 30px;
}

.episodes-section h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.season-selector {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.season-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #333;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.season-btn.active,
.season-btn:hover {
    background: #e50914;
    border-color: #e50914;
}

.episodes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.episode-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #1a1a1a;
    transition: all 0.3s;
    cursor: pointer;
}

.episode-card:hover {
    border-color: #e50914;
    transform: translateY(-3px);
}

.episode-thumbnail {
    position: relative;
    width: 100%;
    height: 170px;
    overflow: hidden;
}

.episode-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.episode-card:hover .episode-thumbnail img {
    transform: scale(1.05);
}

.episode-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.episode-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(229, 9, 20, 0.9);
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
}

.episode-card:hover .episode-play-btn {
    transform: translate(-50%, -50%) scale(1);
}

.episode-info {
    padding: 15px;
}

.episode-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.episode-info p {
    font-size: 13px;
    color: #999;
    line-height: 1.5;
}

/* Similar Movies Section */
.similar-section {
    background-color: #000;
    padding: 50px 0;
}

.similar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

.similar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.similar-card {
    cursor: pointer;
    transition: all 0.3s;
}

.similar-card:hover {
    transform: translateY(-5px);
}

.similar-image {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
}

.similar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.similar-card:hover .similar-image img {
    transform: scale(1.05);
}

.similar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.similar-card:hover .similar-overlay {
    opacity: 1;
}

.similar-play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #e50914;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.similar-play-btn:hover {
    background: #fff;
    color: #e50914;
    transform: scale(1.1);
}

.similar-info {
    padding: 15px 5px;
}

.similar-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.similar-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    color: #999;
}

.similar-meta i {
    color: #ffd700;
    margin-right: 4px;
}

/* Page Header */
.page-header {
    margin-top: 70px;
    padding: 80px 50px 40px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border-bottom: 2px solid #e50914;
}

.page-header-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #fff 0%, #e50914 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header-content p {
    font-size: 18px;
    color: #999;
}

/* Filter Bar */
.filter-bar {
    padding: 30px 50px;
    background-color: #0a0a0a;
    border-bottom: 1px solid #1a1a1a;
    position: sticky;
    top: 65px;
    z-index: 100;
}

.filter-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-left {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 16px;
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 20px;
    color: #999;
    font-size: 13px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.filter-btn i {
    font-size: 12px;
}

.filter-btn:hover {
    background-color: #252525;
    border-color: #e50914;
    color: #fff;
}

.filter-btn.active {
    background-color: #e50914;
    border-color: #e50914;
    color: #fff;
}

.filter-right {
    display: flex;
    gap: 12px;
}

.genre-select,
.sort-select {
    padding: 10px 16px;
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    outline: none;
    transition: all 0.3s;
}

.genre-select:hover,
.sort-select:hover {
    border-color: #e50914;
    background-color: #252525;
}

/* Content Grid */
.content-grid {
    padding: 40px 50px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.content-card {
    background-color: #0a0a0a;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.content-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(229, 9, 20, 0.3);
    border-color: #e50914;
}

.card-image {
    position: relative;
    width: 100%;
    height: 375px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.content-card:hover .card-image img {
    transform: scale(1.1);
}

.card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    background: linear-gradient(135deg, #e50914, #831010);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    z-index: 2;
}

.card-badge.new {
    background: linear-gradient(135deg, #46d369, #2b8a47);
}

.card-badge.trending {
    background: linear-gradient(135deg, #ff6b00, #ff9500);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.3s;
}

.content-card:hover .card-overlay {
    opacity: 1;
}

.play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #e50914;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn:hover {
    background-color: #fff;
    color: #e50914;
    transform: scale(1.1);
}

.card-actions {
    display: flex;
    gap: 10px;
}

.action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.action-btn:hover {
    background-color: #fff;
    color: #e50914;
    border-color: #fff;
}

.card-info {
    padding: 20px;
}

.card-info h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 13px;
    color: #999;
}

.card-meta .rating {
    color: #ffc107;
    font-weight: 600;
}

.card-meta .rating i {
    margin-right: 4px;
}

.card-desc {
    font-size: 13px;
    line-height: 1.6;
    color: #999;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-genres {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.genre-tag {
    padding: 4px 10px;
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    font-size: 11px;
    color: #999;
}

/* Footer */
footer {
    background: linear-gradient(to bottom, #0a0a0a, #000);
    color: #999;
    margin-top: 60px;
    padding: 60px 0 0;
    border-top: 1px solid #1a1a1a;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

/* Footer Top */
.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    padding-bottom: 50px;
}

/* Footer Brand */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    font-size: 36px;
    font-weight: 800;
    color: #e50914;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 10px;
}

.footer-tagline {
    color: #999;
    font-size: 15px;
    line-height: 1.6;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 2px solid #333;
    color: #999;
    text-decoration: none;
}

.social-link:hover {
    transform: translateY(-5px);
    border-color: #e50914;
    color: #fff;
    box-shadow: 0 5px 15px rgba(229, 9, 20, 0.3);
}

.social-link.facebook:hover {
    background-color: #1877f2;
    border-color: #1877f2;
}

.social-link.twitter:hover {
    background-color: #1da1f2;
    border-color: #1da1f2;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: #e1306c;
}

.social-link.youtube:hover {
    background-color: #ff0000;
    border-color: #ff0000;
}

.social-link.tiktok:hover {
    background-color: #000;
    border-color: #00f2ea;
    color: #00f2ea;
}

/* Footer Links */
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-column h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #e50914;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column ul li a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-column ul li a i {
    font-size: 10px;
    opacity: 0;
    transition: all 0.3s;
}

.footer-column ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-column ul li a:hover i {
    opacity: 1;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-top: 1px solid #1a1a1a;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer-bottom-left p {
    font-size: 13px;
    color: #666;
}

.footer-badges {
    display: flex;
    gap: 10px;
}

.badge {
    padding: 6px 12px;
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    color: #999;
    transition: all 0.3s;
}

.badge:hover {
    background-color: #252525;
    border-color: #e50914;
    color: #fff;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e50914, #b20710);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 999;
    box-shadow: 0 4px 20px rgba(229, 9, 20, 0.4);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 30px rgba(229, 9, 20, 0.5);
}

.scroll-to-top i {
    transition: transform 0.3s ease;
}

.scroll-to-top:hover i {
    animation: bounceUp 0.6s ease infinite;
}

@keyframes bounceUp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

/* Responsive */
@media (max-width: 1024px) {
    .movie-section {
        padding: 30px 30px;
    }
    
    .movie-card {
        min-width: 170px;
        width: 170px;
        height: 255px;
    }

    .movie-card:hover {
        transform: translateY(0);
    }

    .movie-card::after {
        font-size: 18px;
        width: 42px;
        height: 42px;
    }

    .movie-actions {
        display: none !important;
    }

    .video-back-btn-fixed {
        padding: 8px 14px;
        font-size: 13px;
    }

    .video-js {
        max-height: 600px;
    }

    .video-js .vjs-big-play-button {
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 32px;
        margin-top: -30px;
        margin-left: -30px;
    }

    .details-container {
        padding: 0 30px;
    }

    .details-header {
        flex-direction: column;
    }

    .details-right {
        width: 100%;
        flex-wrap: wrap;
    }

    .movie-details-title {
        font-size: 32px;
    }

    .similar-container {
        padding: 0 30px;
    }

    .similar-grid {
        grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    }

    .page-header {
        padding: 60px 30px 30px;
    }

    .page-header-content h1 {
        font-size: 36px;
    }

    .filter-bar {
        padding: 20px 30px;
    }

    .filter-left {
        gap: 10px;
    }

    .content-grid {
        padding: 30px 30px;
    }

    .grid-container {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 25px;
    }

    .footer-container {
        padding: 0 30px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .nav-links {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

    .search-box {
        right: 20px;
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 12px 20px;
    }

    .logo {
        font-size: 22px;
    }

    .nav-right {
        gap: 12px;
    }

    .notification-container {
        display: block;
    }

    .notification-dropdown {
        width: 320px;
        right: -50px;
    }

    .search-box {
        right: 15px;
        min-width: 200px;
        padding: 6px 12px;
    }

    .search-box input {
        font-size: 13px;
    }

    .user-profile img {
        width: 32px;
        height: 32px;
    }

    .user-profile i {
        display: none;
    }

    .user-dropdown {
        width: 260px;
        right: -10px;
    }

    .user-dropdown-header {
        padding: 15px;
    }

    .user-dropdown-header img {
        width: 45px;
        height: 45px;
    }

    .user-info h4 {
        font-size: 14px;
    }

    .user-info p {
        font-size: 11px;
    }

    .hero-slider {
        height: 60vh;
    }

    .hero-slide {
        padding: 0 20px;
    }

    .hero-content {
        margin-top: 60px;
    }

    .hero-content h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .hero-buttons {
        gap: 10px;
    }

    .btn {
        padding: 12px 28px;
        font-size: 14px;
    }

    .btn i {
        font-size: 16px;
    }

    .hero-prev,
    .hero-next {
        display: none;
    }

    .hero-indicators {
        bottom: 25px;
    }

    .slider-btn {
        display: none;
    }

    .modal-body {
        flex-direction: column;
        padding: 30px 20px;
    }

    .modal-poster {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .modal-crew {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .movie-section {
        padding: 25px 15px;
    }

    .section-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .movie-card {
        min-width: 150px;
        width: 150px;
        height: 225px;
    }

    .movie-card:hover {
        transform: translateY(0);
    }

    .movie-card::after {
        font-size: 16px;
        width: 38px;
        height: 38px;
    }

    .movie-actions {
        display: none !important;
    }

    .video-back-btn-fixed {
        padding: 7px 12px;
        font-size: 12px;
        top: 15px;
        left: 15px;
    }

    .video-js {
        max-height: 450px;
    }

    .video-js .vjs-big-play-button {
        width: 55px;
        height: 55px;
        line-height: 55px;
        font-size: 28px;
        margin-top: -27.5px;
        margin-left: -27.5px;
    }

    .details-container {
        padding: 0 20px;
    }

    .movie-details-title {
        font-size: 28px;
    }

    .movie-details-meta {
        gap: 12px;
    }

    .meta-item {
        font-size: 14px;
    }

    .action-detail-btn {
        padding: 10px 16px;
        font-size: 13px;
    }

    .description-box {
        padding: 18px;
    }

    .cast-item {
        padding: 10px 14px;
        min-width: 180px;
    }

    .episodes-grid {
        grid-template-columns: 1fr;
    }

    .similar-container {
        padding: 0 20px;
    }

    .similar-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .similar-image {
        height: 225px;
    }

    .movie-title {
        font-size: 13px;
    }

    .movie-action-btn {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .movie-meta {
        font-size: 10px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .slider-btn.prev {
        left: -15px;
    }

    .slider-btn.next {
        right: -15px;
    }

    .footer-container {
        padding: 0 20px;
    }

    footer {
        padding: 40px 0 0;
        margin-top: 40px;
    }

    .footer-top {
        padding-bottom: 40px;
    }

    .footer-brand {
        text-align: center;
        align-items: center;
    }

    .footer-logo {
        font-size: 32px;
    }

    .footer-tagline {
        max-width: 100%;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        padding: 25px 0;
    }

    .footer-bottom-left {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .page-header {
        padding: 50px 20px 25px;
    }

    .page-header-content h1 {
        font-size: 28px;
    }

    .page-header-content p {
        font-size: 16px;
    }

    .filter-bar {
        padding: 15px 20px;
    }

    .filter-container {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-left {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 5px;
        gap: 8px;
    }

    .filter-left::-webkit-scrollbar {
        height: 4px;
    }

    .filter-left::-webkit-scrollbar-thumb {
        background: #e50914;
        border-radius: 2px;
    }

    .filter-btn {
        padding: 6px 12px;
        font-size: 12px;
        border-radius: 16px;
        gap: 5px;
        white-space: nowrap;
    }

    .filter-btn i {
        font-size: 11px;
    }

    .filter-right {
        width: 100%;
    }

    .genre-select,
    .sort-select {
        flex: 1;
        font-size: 13px;
        padding: 8px 12px;
    }

    .content-grid {
        padding: 25px 20px;
    }

    .grid-container {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 20px;
    }

    .card-image {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 20px;
    }

    .notification-dropdown {
        width: calc(100vw - 40px);
        right: -80px;
    }

    .hero-slider {
        height: 50vh;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 13px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .btn {
        padding: 10px 24px;
        font-size: 13px;
        gap: 6px;
    }

    .btn i {
        font-size: 14px;
    }

    .hero-prev,
    .hero-next {
        display: none;
    }

    .hero-indicators {
        bottom: 15px;
        gap: 8px;
    }

    .hero-indicators .indicator {
        width: 8px;
        height: 8px;
    }

    .hero-indicators .indicator.active {
        width: 20px;
    }

    .modal-content {
        margin: 20px;
        max-width: calc(100% - 40px);
    }

    .modal-info h2 {
        font-size: 24px;
    }

    .modal-meta {
        flex-wrap: wrap;
        gap: 10px;
    }

    .movie-section {
        padding: 20px 10px;
    }

    .section-title {
        font-size: 18px;
        padding-left: 5px;
    }

    .movie-card {
        min-width: 130px;
        width: 130px;
        height: 195px;
    }

    .movie-card:hover {
        transform: translateY(0);
    }

    .movie-card::after {
        font-size: 14px;
        width: 35px;
        height: 35px;
    }

    .movie-actions {
        display: none !important;
    }

    .video-back-btn-fixed {
        padding: 6px 10px;
        font-size: 11px;
        top: 10px;
        left: 10px;
    }

    .video-js {
        max-height: 350px;
    }

    .video-js .vjs-big-play-button {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 24px;
        margin-top: -25px;
        margin-left: -25px;
    }

    .details-container {
        padding: 0 15px;
    }

    .movie-details {
        padding: 30px 0;
    }

    .movie-details-title {
        font-size: 24px;
    }

    .movie-details-meta {
        gap: 10px;
        font-size: 13px;
    }

    .meta-item {
        font-size: 13px;
    }

    .action-detail-btn {
        padding: 8px 14px;
        font-size: 12px;
        flex: 1;
    }

    .details-right {
        gap: 8px;
    }

    .description-box h3 {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .description-box p {
        font-size: 13px;
        line-height: 1.5;
    }

    .description-box {
        padding: 15px;
    }

    .cast-item {
        padding: 10px 12px;
        min-width: 100%;
        flex: 1 1 100%;
    }

    .cast-item h4 {
        font-size: 10px;
    }

    .cast-item p {
        font-size: 12px;
    }

    .cast-crew-box {
        gap: 10px;
    }

    .similar-container {
        padding: 0 15px;
    }

    .similar-section {
        padding: 40px 0;
    }

    .similar-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 15px;
    }

    .similar-image {
        height: 195px;
    }

    .similar-info h4 {
        font-size: 14px;
    }

    .similar-meta {
        font-size: 12px;
    }

    .movie-title {
        font-size: 12px;
    }

    .movie-meta {
        font-size: 10px;
        gap: 6px;
    }

    .rating {
        padding: 2px 6px;
        font-size: 10px;
    }

    .movie-year {
        padding: 2px 6px;
        font-size: 10px;
    }

    .movie-actions {
        gap: 5px;
        margin-top: 8px;
    }

    .movie-action-btn {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .slider-btn.prev {
        left: -10px;
    }

    .slider-btn.next {
        right: -10px;
    }

    .footer-container {
        padding: 0 15px;
    }

    footer {
        padding: 30px 0 0;
        margin-top: 30px;
    }

    .footer-top {
        padding-bottom: 30px;
    }

    .footer-logo {
        font-size: 28px;
    }

    .footer-tagline {
        font-size: 14px;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-column h4 {
        font-size: 15px;
    }

    .footer-column ul li a {
        font-size: 13px;
    }

    .footer-bottom {
        padding: 20px 0;
    }

    .footer-badges {
        justify-content: center;
    }

    .language-selector {
        width: 100%;
    }

    .page-header {
        padding: 40px 15px 20px;
    }

    .page-header-content h1 {
        font-size: 24px;
    }

    .page-header-content p {
        font-size: 14px;
    }

    .filter-bar {
        padding: 10px 15px;
    }

    .filter-left {
        gap: 6px;
    }

    .filter-btn {
        padding: 5px 10px;
        font-size: 11px;
        border-radius: 14px;
        gap: 4px;
    }

    .filter-btn i {
        font-size: 10px;
    }

    .genre-select,
    .sort-select {
        font-size: 12px;
        padding: 7px 10px;
    }

    .content-grid {
        padding: 20px 15px;
    }

    .grid-container {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 15px;
    }

    .card-image {
        height: 240px;
    }

    .card-info {
        padding: 15px;
    }

    .card-info h3 {
        font-size: 16px;
    }

    .card-meta {
        font-size: 12px;
        gap: 10px;
    }

    .card-desc {
        font-size: 12px;
    }
}

/* Loading Animation */
.loader {
    display: none;
    border: 4px solid #333;
    border-top: 4px solid #e50914;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 40px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ==================== ARAMA SONUÇLARI DROPDOWN ==================== */
.search-results-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    min-width: 100%;
    max-width: 450px;
    background: rgba(20, 20, 20, 0.98);
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    max-height: 500px;
    overflow-y: auto;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-results-dropdown.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
}

/* Scrollbar Styling */
.search-results-dropdown::-webkit-scrollbar {
    width: 6px;
}

.search-results-dropdown::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.search-results-dropdown::-webkit-scrollbar-thumb {
    background: rgba(229, 9, 20, 0.5);
    border-radius: 4px;
}

.search-results-dropdown::-webkit-scrollbar-thumb:hover {
    background: rgba(229, 9, 20, 0.8);
}

/* Loading State */
.search-results-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    gap: 10px;
    color: #999;
}

.search-results-loading i {
    font-size: 20px;
    color: #e50914;
}

/* No Results State */
.search-no-results {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    color: #999;
    gap: 10px;
}

.search-no-results i {
    font-size: 40px;
    color: #444;
    margin-bottom: 5px;
}

.search-no-results p {
    font-size: 14px;
}

/* Results List */
.search-results-list {
    padding: 8px;
}

/* Individual Result Item */
.search-result-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 12px;
    border-radius: 6px;
    transition: all 0.2s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: rgba(229, 9, 20, 0.1);
    transform: translateX(5px);
}

/* Result Poster */
.search-result-poster {
    position: relative;
    flex-shrink: 0;
    width: 50px;
    height: 75px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.search-result-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-result-type {
    position: absolute;
    bottom: 3px;
    right: 3px;
    background: rgba(229, 9, 20, 0.95);
    color: white;
    font-size: 9px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-result-type.series {
    background: rgba(9, 120, 229, 0.95);
}

/* Result Info */
.search-result-info {
    flex: 1;
    min-width: 0;
    padding-top: 2px;
}

.search-result-title {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 6px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.search-result-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    color: #999;
    margin-bottom: 4px;
}

.search-result-year,
.search-result-rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.search-result-rating i {
    color: #ffd700;
    font-size: 10px;
}

.search-result-genre {
    font-size: 11px;
    color: #777;
    margin: 4px 0 0 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .search-results-dropdown {
        left: 0;
        right: 0;
        min-width: 100%;
        max-width: 100%;
        top: calc(100% + 8px);
    }
    
    .search-result-item {
        gap: 12px;
        padding: 10px;
    }
    
    .search-result-poster {
        width: 45px;
        height: 67px;
    }
    
    .search-result-title {
        font-size: 13px;
    }
    
    .search-result-meta {
        font-size: 10px;
        gap: 10px;
    }
    
    .search-result-genre {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .search-results-dropdown {
        left: 0;
        right: 0;
        min-width: 100%;
        max-width: 100%;
        top: calc(100% + 8px);
    }
    
    .search-result-item {
        gap: 10px;
        padding: 8px;
    }
    
    .search-result-poster {
        width: 40px;
        height: 60px;
    }
}
