/* Netflix-style CSS */

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

body {
    font-family: 'Netflix Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #141414;
    color: #ffffff;
    line-height: 1.4;
    overflow-x: hidden;
}

/* Netflix Header */
.netflix-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    transition: background-color 0.3s ease;
    padding: 0 4%;
    height: 68px;
}

.netflix-header.scrolled {
    background-color: #141414;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

.logo h1 {
    color: #e50914;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.main-nav {
    display: flex;
    gap: 0.5rem;
    margin-left: 2rem;
    align-items: center;
}

.nav-link {
    color: #e5e5e5;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.nav-link.active {
    color: #ffffff;
    background: rgba(229, 9, 20, 0.2);
    border: 1px solid rgba(229, 9, 20, 0.3);
    box-shadow: 0 2px 8px rgba(229, 9, 20, 0.2);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: #e50914;
    border-radius: 1px;
}

.nav-link span {
    font-size: 0.8em;
    color: #999;
    margin-left: 5px;
    transition: color 0.3s ease;
}

.nav-link:hover span {
    color: #ccc;
}

/* Dropdown Navigation */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    color: #e5e5e5;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
}

.nav-dropdown-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.nav-dropdown-toggle:hover::before {
    left: 100%;
}

.nav-dropdown-toggle:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.nav-dropdown-toggle.active {
    color: #ffffff;
    background: rgba(229, 9, 20, 0.2);
    border: 1px solid rgba(229, 9, 20, 0.3);
    box-shadow: 0 2px 8px rgba(229, 9, 20, 0.2);
}

.nav-dropdown-toggle.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: #e50914;
    border-radius: 1px;
}

.nav-dropdown-arrow {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
    color: #999;
}

.nav-dropdown:hover .nav-dropdown-arrow,
.nav-dropdown.active .nav-dropdown-arrow {
    transform: rotate(180deg);
    color: #ffffff;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #e50914, #f40612, #e50914);
    background-size: 200% 100%;
    animation: shimmer 2s linear infinite;
}

.nav-dropdown.active .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-item {
    display: block;
    padding: 0.75rem 1rem;
    color: #e5e5e5;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.nav-dropdown-item:last-child {
    border-bottom: none;
}

.nav-dropdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(229, 9, 20, 0.1), transparent);
    transition: left 0.5s ease;
}

.nav-dropdown-item:hover::before {
    left: 100%;
}

.nav-dropdown-item:hover {
    color: #ffffff;
    background: rgba(229, 9, 20, 0.1);
    padding-left: 1.5rem;
}

.nav-dropdown-item.active {
    color: #ffffff;
    background: rgba(229, 9, 20, 0.2);
    border-left: 3px solid #e50914;
}

.nav-dropdown-item span {
    font-size: 0.8em;
    color: #999;
    margin-left: 5px;
}

.nav-dropdown-item:hover span {
    color: #ccc;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.search-container {
    position: relative;
}

.search-toggle {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.search-toggle:hover {
    color: #e50914;
}

.search-box {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: none;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid #333;
    border-radius: 4px;
    padding: 0.5rem;
    min-width: 300px;
}

.search-box.active {
    display: flex;
    align-items: center;
}

.search-box input {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 0.9rem;
    padding: 0.5rem;
    outline: none;
    flex: 1;
}

.search-box input::placeholder {
    color: #999;
}

.search-btn {
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background-color: #e50914;
    color: white;
}

.search-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.search-btn .fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.profile-menu {
    position: relative;
}

.profile-btn {
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid #333;
    border-radius: 4px;
    min-width: 200px;
    display: none;
    padding: 0.5rem 0;
}

.profile-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: block;
    color: #e5e5e5;
    text-decoration: none;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.6rem;
    flex-direction: column;
    gap: 4px;
    position: relative;
    z-index: 1001;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
}

.mobile-menu-toggle span {
    width: 22px;
    height: 3px;
    background-color: #ffffff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    border-radius: 2px;
}

.mobile-menu-toggle:hover span {
    background-color: #e50914;
    box-shadow: 0 0 8px rgba(229, 9, 20, 0.3);
}

.mobile-menu-toggle.active {
    background: rgba(229, 9, 20, 0.2);
    border-color: rgba(229, 9, 20, 0.4);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background-color: #e50914;
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background-color: #e50914;
}

.mobile-menu {
    position: fixed;
    top: 68px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 68px);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.98) 0%, rgba(20, 20, 20, 0.95) 100%);
    z-index: 999;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    backdrop-filter: blur(20px);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.5);
}

.mobile-menu.active {
    left: 0;
    box-shadow: 4px 0 30px rgba(0, 0, 0, 0.7);
}

.mobile-menu-content {
    padding: 2rem;
    padding-bottom: 120px;
    /* Space for footer */
    animation: slideInFromLeft 0.5s ease-out;
    position: relative;
    min-height: 100%;
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    color: #e5e5e5;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 1.2rem 1rem;
    margin: 0.5rem 0;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.mobile-nav-link:hover::before {
    left: 100%;
}

.mobile-nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(8px);
}

.mobile-nav-link.active {
    color: #ffffff;
    background: rgba(229, 9, 20, 0.2);
    border-color: rgba(229, 9, 20, 0.4);
    box-shadow: 0 4px 12px rgba(229, 9, 20, 0.3);
}

.mobile-nav-link.active::after {
    content: '';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #e50914;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(229, 9, 20, 0.5);
}

.mobile-nav-link i {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
    margin-right: 12px;
    color: #e50914;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover i {
    color: #ffffff;
    transform: scale(1.1);
}

.mobile-nav-link.active i {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(229, 9, 20, 0.5);
}

.mobile-nav-link span {
    font-size: 1rem;
    color: #e5e5e5;
    margin-left: 0;
    transition: color 0.3s ease;
    flex: 1;
}

.mobile-nav-link:hover span {
    color: #ffffff;
}

/* Mobile Dropdown Navigation */
.mobile-nav-dropdown {
    position: relative;
    margin: 0.3rem 0;
}

.mobile-nav-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 0.8rem;
    color: #e5e5e5;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    margin: 0.3rem 0;
}

.mobile-nav-dropdown-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.mobile-nav-dropdown-toggle:hover::before {
    left: 100%;
}

.mobile-nav-dropdown-toggle:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.mobile-nav-dropdown-toggle.active {
    color: #ffffff;
    background: rgba(229, 9, 20, 0.2);
    border-color: rgba(229, 9, 20, 0.4);
    box-shadow: 0 2px 8px rgba(229, 9, 20, 0.2);
}

.mobile-nav-dropdown-toggle.active::after {
    content: '';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #e50914;
    border-radius: 50%;
}

.mobile-nav-dropdown-arrow {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
    color: #999;
}

.mobile-nav-dropdown.active .mobile-nav-dropdown-arrow {
    transform: rotate(180deg);
    color: #ffffff;
}

.mobile-nav-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    margin: 0.5rem 0 0 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav-dropdown.active .mobile-nav-dropdown-menu {
    max-height: 500px;
    padding: 0.5rem 0;
}

.mobile-nav-dropdown-item {
    display: block;
    padding: 0.8rem 1.5rem;
    color: #e5e5e5;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    margin: 0 0.5rem;
    border-radius: 6px;
}

.mobile-nav-dropdown-item:last-child {
    border-bottom: none;
}

.mobile-nav-dropdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(229, 9, 20, 0.1), transparent);
    transition: left 0.5s ease;
}

.mobile-nav-dropdown-item:hover::before {
    left: 100%;
}

.mobile-nav-dropdown-item:hover {
    color: #ffffff;
    background: rgba(229, 9, 20, 0.1);
    padding-left: 2rem;
}

.mobile-nav-dropdown-item.active {
    color: #ffffff;
    background: rgba(229, 9, 20, 0.2);
    border-left: 3px solid #e50914;
}

.mobile-nav-dropdown-item i {
    font-size: 1rem;
    width: 20px;
    text-align: center;
    margin-right: 10px;
    color: #999;
}

.mobile-nav-dropdown-item:hover i {
    color: #ffffff;
    transform: scale(1.1);
}

.mobile-nav-dropdown-item span {
    font-size: 0.9rem;
    color: #e5e5e5;
    margin-left: 0;
}

.mobile-nav-dropdown-item:hover span {
    color: #ffffff;
}

.mobile-nav-dropdown-item .movie-count {
    font-size: 0.8em;
    color: #999;
    margin-left: 5px;
}

.mobile-nav-dropdown-item:hover .movie-count {
    color: #ccc;
}

/* Mobile Menu Header */
.mobile-menu-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-header h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.mobile-menu-header p {
    color: #b3b3b3;
    font-size: 0.9rem;
    margin: 0;
}

/* Mobile Nav Section */
.mobile-nav-section {
    margin-bottom: 2rem;
}

/* Mobile Menu Footer */
.mobile-menu-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.3);
}

.mobile-social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.mobile-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #b3b3b3;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-social-link:hover {
    background: #e50914;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(229, 9, 20, 0.4);
}

.mobile-copyright {
    text-align: center;
    color: #888;
    font-size: 0.8rem;
    margin: 0;
}

/* Main Content */
main {
    padding-top: 68px;
    /* Add space for fixed header */
}

/* Hero Banner */
.hero-banner {
    position: relative;
    height: 100vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 4%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    text-align: center;
    width: 100%;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: #e5e5e5;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    text-align: center;
    width: 100%;
    line-height: 1.4;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background-color: #ffffff;
    color: #000000;
}

.btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.btn-secondary {
    background-color: rgba(109, 109, 110, 0.7);
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: rgba(109, 109, 110, 0.5);
}

.hero-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #e50914, #b81d13);
    opacity: 0.8;
    z-index: 1;
}

/* Additional centering improvements */
.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

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

/* Category Showcase */
.category-showcase {
    padding: 2rem 4%;
    background-color: #141414;
}

.category-section {
    margin-bottom: 3rem;
    position: relative;
}

.category-section[style*="border-left"] {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 2rem;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.category-header h2 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.category-header h2 span {
    font-weight: 400;
    font-size: 0.9rem;
}

.category-header a {
    color: #e50914;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.category-header a:hover {
    color: #ffffff;
}

.movie-scroller {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 1rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.movie-scroller::-webkit-scrollbar {
    display: none;
}

.movie-scroller-content {
    display: flex;
    gap: 0.5rem;
    padding-right: 2rem;
}

.movie-card {
    flex-shrink: 0;
    width: 200px;
    cursor: pointer;
    transition: transform 0.3s ease;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.movie-card:hover {
    transform: scale(1.05);
    z-index: 10;
}

.movie-poster {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.movie-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.null-box {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #333;
    border-radius: 4px;
}

.null-box-content {
    text-align: center;
    color: #666;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.null-box-content i {
    font-size: 2rem;
    color: #444;
}

.null-box-content span {
    font-size: 0.8rem;
    font-weight: 500;
    color: #777;
}

.movie-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 1rem;
    color: #ffffff;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.movie-card:hover .movie-card-info {
    transform: translateY(0);
}

.movie-card h3 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.movie-card p {
    font-size: 0.8rem;
    color: #e5e5e5;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Full Movie Display */
#full-movie-display {
    padding: 2rem 4%;
    background-color: #141414;
    min-height: 100vh;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #333;
}

.page-header h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
}

.display-options {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.display-options label {
    color: #e5e5e5;
    font-size: 0.9rem;
}

.display-options select {
    background-color: #333;
    color: #ffffff;
    border: 1px solid #555;
    border-radius: 4px;
    padding: 0.5rem;
    font-size: 0.9rem;
}

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

/* Pagination */
.pagination-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1rem;
    flex-wrap: wrap;
}

.page-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #e50914, #f40612);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(229, 9, 20, 0.3);
    position: relative;
    overflow: hidden;
}

.page-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.page-button:hover::before {
    left: 100%;
}

.page-button:hover:not(:disabled) {
    background: linear-gradient(135deg, #f40612, #e50914);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(229, 9, 20, 0.4);
}

.page-button:active:not(:disabled) {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(229, 9, 20, 0.3);
}

.page-button:disabled {
    background: linear-gradient(135deg, #333, #444);
    cursor: not-allowed;
    opacity: 0.6;
    transform: none;
    box-shadow: none;
}

.page-numbers {
    display: flex;
    gap: 0.3rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.page-number-link {
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 44px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.page-number-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.page-number-link:hover::before {
    left: 100%;
}

.page-number-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-number-link.active {
    background: linear-gradient(135deg, #e50914, #f40612);
    color: #ffffff;
    border-color: rgba(229, 9, 20, 0.5);
    box-shadow: 0 4px 12px rgba(229, 9, 20, 0.4);
    transform: translateY(-1px);
}

.page-number-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: #ffffff;
    border-radius: 1px;
}

.clear-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
    position: relative;
    overflow: hidden;
}

.clear-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.clear-button:hover::before {
    left: 100%;
}

.clear-button:hover {
    background: linear-gradient(135deg, #c82333, #dc3545);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4);
}

.clear-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(220, 53, 69, 0.3);
}

/* Favorites Counter */
.favorites-counter {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(229, 9, 20, 0.1);
    color: #e50914;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(229, 9, 20, 0.2);
    margin-left: 1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Favorites Status */
.favorites-status {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(229, 9, 20, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(229, 9, 20, 0.1);
}

.favorites-status-icon {
    font-size: 1.5rem;
    color: #e50914;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.favorites-status-text {
    flex: 1;
}

.favorites-status-text h3 {
    color: #ffffff;
    margin: 0 0 0.25rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.favorites-status-text p {
    color: #b3b3b3;
    margin: 0;
    font-size: 0.9rem;
}

/* Favorites Actions */
.favorites-actions {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.favorites-action-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.favorites-action-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-1px);
}

.favorites-action-btn.active {
    background: rgba(229, 9, 20, 0.2);
    border-color: rgba(229, 9, 20, 0.4);
    color: #e50914;
}

/* Empty Favorites State */
.favorites-empty {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border: 2px dashed rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.favorites-empty-icon {
    font-size: 4rem;
    color: #e50914;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.favorites-empty h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.favorites-empty p {
    color: #b3b3b3;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.favorites-empty-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #e50914, #f40612);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(229, 9, 20, 0.3);
}

.favorites-empty-btn:hover {
    background: linear-gradient(135deg, #f40612, #e50914);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(229, 9, 20, 0.4);
    color: #ffffff;
    text-decoration: none;
}

/* Netflix-style Alert Modal */
.netflix-alert {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.netflix-alert.show {
    display: flex;
    animation: alertFadeIn 0.3s ease-out;
}

.netflix-alert-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    animation: backdropFadeIn 0.3s ease-out;
}

.netflix-alert-container {
    position: relative;
    max-width: 500px;
    width: 100%;
    animation: alertSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.netflix-alert-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    position: relative;
}

.netflix-alert-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e50914, #f40612, #e50914);
    background-size: 200% 100%;
    animation: shimmer 2s linear infinite;
}

.netflix-alert-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 2rem 1rem 2rem;
}

.netflix-alert-icon i {
    font-size: 3rem;
    color: #e50914;
    animation: pulse 2s infinite;
}

.netflix-alert-icon.success i {
    color: #00d4aa;
}

.netflix-alert-icon.warning i {
    color: #ffa500;
}

.netflix-alert-icon.error i {
    color: #e50914;
}

.netflix-alert-icon.info i {
    color: #007bff;
}

.netflix-alert-body {
    padding: 0 2rem 1rem 2rem;
    text-align: center;
}

.netflix-alert-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.netflix-alert-message {
    color: #b3b3b3;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.netflix-alert-actions {
    display: flex;
    gap: 1rem;
    padding: 1.5rem 2rem 2rem 2rem;
    justify-content: center;
}

.netflix-alert-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.netflix-alert-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.netflix-alert-btn:hover::before {
    left: 100%;
}

.netflix-alert-btn-primary {
    background: linear-gradient(135deg, #e50914, #f40612);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(229, 9, 20, 0.3);
}

.netflix-alert-btn-primary:hover {
    background: linear-gradient(135deg, #f40612, #e50914);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(229, 9, 20, 0.4);
}

.netflix-alert-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

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

/* Alert Animations */
@keyframes alertFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes backdropFadeIn {
    from {
        opacity: 0;
        backdrop-filter: blur(0px);
    }

    to {
        opacity: 1;
        backdrop-filter: blur(8px);
    }
}

@keyframes alertSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-50px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

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

    100% {
        background-position: 200% 0;
    }
}

/* Responsive Alert */
@media (max-width: 768px) {
    .netflix-alert-container {
        max-width: 90%;
        margin: 0 1rem;
    }

    .netflix-alert-content {
        border-radius: 8px;
    }

    .netflix-alert-icon {
        padding: 1.5rem 1.5rem 0.5rem 1.5rem;
    }

    .netflix-alert-icon i {
        font-size: 2.5rem;
    }

    .netflix-alert-body {
        padding: 0 1.5rem 0.5rem 1.5rem;
    }

    .netflix-alert-title {
        font-size: 1.25rem;
    }

    .netflix-alert-message {
        font-size: 0.9rem;
    }

    .netflix-alert-actions {
        padding: 1rem 1.5rem 1.5rem 1.5rem;
        flex-direction: column;
        gap: 0.75rem;
    }

    .netflix-alert-btn {
        width: 100%;
        min-width: auto;
    }
}

/* Audio Section */
.audio-section {
    padding: 2rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    min-height: 100vh;
}

.audio-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.audio-header {
    text-align: center;
    margin-bottom: 3rem;
}

.audio-header h2 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #e50914, #f40612);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.audio-header p {
    color: #b3b3b3;
    font-size: 1.2rem;
    margin: 0;
}

.audio-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.audio-category {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.audio-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e50914, #f40612, #e50914);
    background-size: 200% 100%;
    animation: shimmer 2s linear infinite;
}

.audio-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(229, 9, 20, 0.3);
}

.audio-category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.audio-category-header i {
    font-size: 2rem;
    color: #e50914;
    animation: pulse 2s infinite;
}

.audio-category-header h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.audio-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.audio-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.audio-item:hover {
    background: rgba(229, 9, 20, 0.1);
    border-color: rgba(229, 9, 20, 0.3);
    transform: translateX(5px);
}

.audio-cover {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e50914, #f40612);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.audio-cover i {
    font-size: 1.5rem;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.audio-item:hover .audio-cover i {
    transform: scale(1.1);
}

.audio-info {
    flex: 1;
    min-width: 0;
}

.audio-info h4 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.audio-info p {
    color: #b3b3b3;
    font-size: 0.875rem;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.audio-duration {
    color: #b3b3b3;
    font-size: 0.875rem;
    font-weight: 500;
    flex-shrink: 0;
}

.audio-features {
    margin-bottom: 2rem;
}

.audio-features h3 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #e50914, #f40612, #e50914);
    background-size: 200% 100%;
    animation: shimmer 2s linear infinite;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.feature-card i {
    font-size: 2.5rem;
    color: #e50914;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.feature-card h4 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.feature-card p {
    color: #b3b3b3;
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.5;
}

/* Responsive Audio Section */
@media (max-width: 768px) {
    .audio-container {
        padding: 0 1rem;
    }

    .audio-header h2 {
        font-size: 2rem;
    }

    .audio-header p {
        font-size: 1rem;
    }

    .audio-categories {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .audio-category {
        padding: 1.5rem;
    }

    .audio-category-header i {
        font-size: 1.5rem;
    }

    .audio-category-header h3 {
        font-size: 1.25rem;
    }

    .audio-item {
        padding: 0.75rem;
    }

    .audio-cover {
        width: 40px;
        height: 40px;
    }

    .audio-cover i {
        font-size: 1.25rem;
    }

    .audio-info h4 {
        font-size: 0.875rem;
    }

    .audio-info p {
        font-size: 0.75rem;
    }

    .audio-duration {
        font-size: 0.75rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-card i {
        font-size: 2rem;
    }

    .feature-card h4 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .audio-category {
        padding: 1rem;
    }

    .audio-item {
        padding: 0.5rem;
    }

    .audio-cover {
        width: 35px;
        height: 35px;
    }

    .audio-cover i {
        font-size: 1rem;
    }

    .feature-card {
        padding: 1rem;
    }

    .feature-card i {
        font-size: 1.75rem;
    }
}

/* Info Section */
.info-section {
    padding: 2rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    min-height: 100vh;
}

/* Info Category Navigation */
.info-category-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.info-category-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    color: #b3b3b3;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-category-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(229, 9, 20, 0.2), transparent);
    transition: left 0.5s ease;
}

.info-category-btn:hover::before {
    left: 100%;
}

.info-category-btn:hover {
    color: #ffffff;
    border-color: rgba(229, 9, 20, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.info-category-btn.active {
    background: linear-gradient(135deg, #e50914, #f40612);
    border-color: #e50914;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(229, 9, 20, 0.3);
}

.info-category-btn i {
    font-size: 1rem;
}

.info-category-btn span {
    white-space: nowrap;
}

/* Info Category Content */
.info-category-content {
    position: relative;
}

.info-category-panel {
    display: none;
    animation: fadeInUp 0.5s ease-out;
}

.info-category-panel.active {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.info-header {
    text-align: center;
    margin-bottom: 3rem;
}

.info-header h2 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #e50914, #f40612);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-header p {
    color: #b3b3b3;
    font-size: 1.2rem;
    margin: 0;
}

.info-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.info-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e50914, #f40612, #e50914);
    background-size: 200% 100%;
    animation: shimmer 2s linear infinite;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(229, 9, 20, 0.3);
}

.info-icon {
    font-size: 3rem;
    color: #e50914;
    animation: pulse 2s infinite;
}

.info-text h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.info-text p {
    color: #b3b3b3;
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
}

.info-stats {
    margin-bottom: 4rem;
}

.info-stats h3 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #e50914, #f40612, #e50914);
    background-size: 200% 100%;
    animation: shimmer 2s linear infinite;
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #e50914;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(229, 9, 20, 0.3);
}

.stat-label {
    color: #b3b3b3;
    font-size: 1rem;
    font-weight: 500;
}

.info-features h3 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(229, 9, 20, 0.1);
    border-color: rgba(229, 9, 20, 0.3);
    transform: translateX(5px);
}

.feature-item i {
    color: #00d4aa;
    font-size: 1.2rem;
}

.feature-item span {
    color: #e5e5e5;
    font-size: 1rem;
    font-weight: 500;
}

/* Quality Showcase */
.quality-showcase h3 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.quality-item {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.quality-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e50914, #f40612, #e50914);
    background-size: 200% 100%;
    animation: shimmer 2s linear infinite;
}

.quality-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(229, 9, 20, 0.3);
}

.quality-icon {
    font-size: 3rem;
    color: #e50914;
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

.quality-info {
    flex: 1;
}

.quality-info h4 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.quality-info p {
    color: #b3b3b3;
    font-size: 1rem;
    margin: 0 0 1rem 0;
    line-height: 1.5;
}

.quality-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.quality-progress {
    height: 100%;
    background: linear-gradient(90deg, #e50914, #f40612);
    border-radius: 4px;
    transition: width 1s ease-out;
}

/* Support Showcase */
.support-showcase h3 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.support-item {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.support-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #e50914, #f40612, #e50914);
    background-size: 200% 100%;
    animation: shimmer 2s linear infinite;
}

.support-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.support-item i {
    font-size: 2.5rem;
    color: #e50914;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.support-item h4 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.support-item p {
    color: #b3b3b3;
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.5;
}

/* Privacy Showcase */
.privacy-showcase h3 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
}

.privacy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.privacy-item {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.privacy-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #e50914, #f40612, #e50914);
    background-size: 200% 100%;
    animation: shimmer 2s linear infinite;
}

.privacy-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.privacy-item i {
    font-size: 2.5rem;
    color: #e50914;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.privacy-item h4 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.privacy-item p {
    color: #b3b3b3;
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.5;
}

/* Stats Showcase */
.stats-showcase h3 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
}

/* Responsive Info Section */
@media (max-width: 768px) {
    .info-container {
        padding: 0 1rem;
    }

    .info-header h2 {
        font-size: 2rem;
    }

    .info-header p {
        font-size: 1rem;
    }

    .info-category-nav {
        gap: 0.5rem;
        margin-bottom: 2rem;
    }

    .info-category-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .info-category-btn i {
        font-size: 0.9rem;
    }

    .info-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .info-card {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }

    .info-icon {
        font-size: 2.5rem;
    }

    .quality-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .quality-item {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }

    .quality-icon {
        font-size: 2.5rem;
    }

    .support-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .support-item {
        padding: 1.5rem;
    }

    .support-item i {
        font-size: 2rem;
    }

    .privacy-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .privacy-item {
        padding: 1.5rem;
    }

    .privacy-item i {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-item {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .features-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .info-card {
        padding: 1rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* Netflix-style Footer */
.netflix-footer {
    background: linear-gradient(135deg, #141414 0%, #000000 100%);
    color: #b3b3b3;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
    border-top: 1px solid #333;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4%;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #e50914;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.footer-section h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section p {
    color: #b3b3b3;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #b3b3b3;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: #e50914;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(229, 9, 20, 0.4);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #b3b3b3;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: block;
    padding: 0.2rem 0;
}

.footer-links a:hover {
    color: #e50914;
    text-shadow: 0 0 8px rgba(229, 9, 20, 0.3);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-info p {
    margin: 0.3rem 0;
    font-size: 0.85rem;
    color: #888;
}

.footer-badges {
    display: flex;
    gap: 0.8rem;
}

.badge {
    background: linear-gradient(45deg, #e50914, #f40612);
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(229, 9, 20, 0.3);
}

/* Mobile Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .social-links {
        justify-content: center;
    }

    .footer-section h3 {
        font-size: 1.3rem;
    }

    .footer-section h4 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .netflix-footer {
        padding: 2rem 0 1rem;
    }

    .footer-container {
        padding: 0 2rem;
    }

    .footer-content {
        gap: 1.5rem;
    }

    .social-link {
        width: 35px;
        height: 35px;
    }

    .badge {
        padding: 0.2rem 0.6rem;
        font-size: 0.7rem;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .netflix-header {
        padding: 0 2%;
    }

    .main-nav {
        gap: 0.8rem;
    }

    .nav-link {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }

    .nav-dropdown-toggle {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }

    .nav-dropdown-menu {
        min-width: 180px;
    }

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

    .hero-description {
        font-size: 1.3rem;
    }

    .category-showcase {
        padding: 1.5rem 2%;
    }

    #full-movie-display {
        padding: 1.5rem 2%;
    }
}

@media (max-width: 900px) {
    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

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

    .hero-description {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .netflix-header {
        padding: 0 2%;
        height: 60px;
    }

    main {
        padding-top: 60px;
    }

    .header-container {
        gap: 1rem;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu {
        top: 60px;
        height: calc(100vh - 60px);
    }

    .mobile-menu-content {
        padding: 1.5rem;
        padding-bottom: 100px;
    }

    .mobile-nav-link {
        padding: 1rem 0.8rem;
        font-size: 1rem;
    }

    .mobile-nav-link i {
        font-size: 1.1rem;
        width: 20px;
        margin-right: 10px;
    }

    .search-container {
        order: 2;
    }

    .profile-menu {
        order: 3;
    }

    .hero-banner {
        height: 70vh;
        min-height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-content {
        padding: 0 2rem;
    }

    .hero-title {
        font-size: 2.2rem;
        text-align: center;
        width: 100%;
    }

    .hero-description {
        font-size: 1.1rem;
        text-align: center;
        width: 100%;
        max-width: 500px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .movie-card {
        width: 150px;
    }

    .movie-poster {
        height: 225px;
    }

    .null-box-content i {
        font-size: 1.5rem;
    }

    .null-box-content span {
        font-size: 0.7rem;
    }

    .movie-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 0.75rem;
    }

    .page-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
        padding: 1rem 2%;
    }

    .pagination-controls {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .page-button {
        padding: 0.8rem 1.2rem;
        font-size: 0.85rem;
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }

    .page-numbers {
        gap: 0.2rem;
        justify-content: center;
    }

    .page-number-link {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
        min-width: 40px;
    }

    .category-showcase {
        padding: 1rem 2%;
    }

    #full-movie-display {
        padding: 1rem 2%;
    }
}

@media (max-width: 480px) {
    .netflix-header {
        padding: 0 1rem;
        height: 56px;
    }

    main {
        padding-top: 56px;
    }

    .header-container {
        gap: 0.5rem;
    }

    .logo h1 {
        font-size: 1.3rem;
    }

    .search-toggle {
        padding: 0.25rem;
        font-size: 1rem;
    }

    .profile-btn {
        padding: 0.25rem;
    }

    .mobile-menu {
        top: 56px;
        height: calc(100vh - 56px);
    }

    .mobile-menu-content {
        padding: 1rem;
        padding-bottom: 80px;
    }

    .mobile-menu-header {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }

    .mobile-menu-header h3 {
        font-size: 1.3rem;
    }

    .mobile-nav-link {
        font-size: 0.95rem;
        padding: 0.8rem 0.6rem;
        margin: 0.3rem 0;
    }

    .mobile-nav-link i {
        font-size: 1rem;
        width: 18px;
        margin-right: 8px;
    }

    .mobile-nav-dropdown-toggle {
        padding: 0.8rem 0.6rem;
        font-size: 0.95rem;
    }

    .mobile-nav-dropdown-item {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }

    .mobile-nav-dropdown-item i {
        font-size: 0.9rem;
        width: 18px;
        margin-right: 8px;
    }

    .mobile-social-links {
        gap: 0.8rem;
    }

    .mobile-social-link {
        width: 35px;
        height: 35px;
    }

    .hero-banner {
        height: 60vh;
        min-height: 350px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
        text-align: center;
        width: 100%;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
        width: 100%;
        max-width: 200px;
    }

    .category-showcase,
    #full-movie-display {
        padding: 0.75rem 1rem;
    }

    .page-header {
        padding: 0.75rem 1rem;
    }

    .page-header h2 {
        font-size: 1.5rem;
    }

    .movie-card {
        width: 110px;
    }

    .movie-poster {
        height: 165px;
    }

    .null-box-content i {
        font-size: 1rem;
    }

    .null-box-content span {
        font-size: 0.55rem;
        line-height: 1.2;
        padding: 0 0.2rem;
    }

    .movie-grid {
        grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
        gap: 0.4rem;
    }

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

    .category-header a {
        font-size: 0.85rem;
    }

    .movie-scroller-content {
        gap: 0.5rem;
    }

    .pagination-controls {
        padding: 0.8rem;
        gap: 1rem;
    }

    .page-button {
        padding: 0.7rem 1rem;
        font-size: 0.8rem;
        width: 100%;
        max-width: 180px;
    }

    .page-button span {
        display: none;
    }

    .page-button i {
        margin: 0;
    }

    .page-numbers {
        gap: 0.15rem;
        max-width: 100%;
        overflow-x: auto;
        padding: 0.5rem 0;
        -webkit-overflow-scrolling: touch;
    }

    .page-numbers::-webkit-scrollbar {
        height: 4px;
    }

    .page-numbers::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 2px;
    }

    .page-numbers::-webkit-scrollbar-thumb {
        background: rgba(229, 9, 20, 0.5);
        border-radius: 2px;
    }

    .page-number-link {
        padding: 0.5rem 0.7rem;
        font-size: 0.8rem;
        min-width: 36px;
        flex-shrink: 0;
    }

    /* Hide some page numbers on very small screens */
    .page-number-link:nth-child(n+8) {
        display: none;
    }

    .page-number-link:last-child {
        display: flex;
    }

    /* Optimize movie-card info for mobile */
    .movie-card-info {
        padding: 0.6rem 0.4rem;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    }

    .movie-card h3 {
        font-size: 0.75rem;
        margin-bottom: 0.15rem;
        line-height: 1.2;
    }

    .movie-card p {
        font-size: 0.65rem;
        line-height: 1.1;
    }

    /* Always show movie info on mobile (no hover needed) */
    .movie-card .movie-card-info {
        transform: translateY(0);
        opacity: 0.9;
    }

    /* Reduce hover effects on mobile */
    .movie-card:hover {
        transform: scale(1.02);
    }
}

/* Extra Small Mobile (up to 360px) */
@media (max-width: 360px) {
    .movie-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 0.3rem;
        padding: 0 0.3rem;
    }

    .movie-card {
        width: 100px;
    }

    .movie-poster {
        height: 150px;
    }

    .movie-card-info {
        padding: 0.4rem 0.3rem;
    }

    .movie-card h3 {
        font-size: 0.7rem;
        margin-bottom: 0.1rem;
    }

    .movie-card p {
        font-size: 0.6rem;
    }

    .null-box-content i {
        font-size: 0.9rem;
    }

    .null-box-content span {
        font-size: 0.5rem;
        padding: 0 0.1rem;
    }

    .category-showcase,
    #full-movie-display {
        padding: 0.5rem 0.3rem;
    }

    .page-header {
        padding: 0.5rem 0.3rem;
    }
}

/* Ultra Small Mobile (up to 320px) */
@media (max-width: 320px) {
    .movie-grid {
        grid-template-columns: repeat(auto-fill, minmax(95px, 1fr));
        gap: 0.25rem;
        padding: 0 0.25rem;
    }

    .movie-card {
        width: 95px;
    }

    .movie-poster {
        height: 142px;
    }

    .movie-card-info {
        padding: 0.3rem 0.2rem;
    }

    .movie-card h3 {
        font-size: 0.65rem;
        margin-bottom: 0.05rem;
    }

    .movie-card p {
        font-size: 0.55rem;
    }

    .null-box-content i {
        font-size: 0.8rem;
    }

    .null-box-content span {
        font-size: 0.45rem;
    }
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: none;
    padding: 2rem 4%;
}

.search-overlay.active {
    display: block;
}

.search-overlay-content {
    max-width: 800px;
    margin: 0 auto;
}

.search-overlay input {
    width: 100%;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 2rem;
    outline: none;
    padding: 1rem 0;
    border-bottom: 2px solid #333;
}

.search-overlay input::placeholder {
    color: #666;
}

.search-results {
    margin-top: 2rem;
}

.search-result-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #333;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-result-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.search-result-item img {
    width: 80px;
    height: 120px;
    object-fit: cover;
    border-radius: 4px;
}

.search-result-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.search-result-info p {
    color: #999;
    font-size: 0.9rem;
}