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

        body {
            background-color: #141414;
            color: #ffffff;
            overflow-x: hidden;
        }

        /* Header Styles */
        header {
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 100;
            background-color: transparent;
            backdrop-filter: blur(10px);
            transition: background-color 0.3s ease;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo-container img {
            width: 40px;
            height: 40px;
            border-radius: 8px;
        }

        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .main-nav a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            font-size: 0.95rem;
        }

        .main-nav a:hover, .main-nav a.active {
            color: #e50914;
        }

        .user-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, #e50914, #f40612);
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            font-size: 1.2rem;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .user-icon:hover {
            transform: scale(1.1);
        }

        /* Hero Section */
        .hero-section {
            height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), 
                        url('https://img.freepik.com/fotos-premium/imagen-auditorio-cine-pequeno-e-intimo-asientos-comodos-ambiente-acogedor_168058-415.jpg?ga=GA1.1.184293385.1750638395&semt=ais_hybrid&w=740') center/cover;
            display: flex;
            align-items: center;
            padding: 0 2rem;
            position: relative;
        }

        .hero-content {
            max-width: 600px;
            z-index: 2;
        }

        .hero-content h2 {
            font-size: clamp(2rem, 5vw, 4rem);
            margin-bottom: 1rem;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
        }

        .hero-content p {
            font-size: clamp(1rem, 2.5vw, 1.3rem);
            margin-bottom: 2rem;
            color: #e5e5e5;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
        }

        .cta-button {
            padding: 1rem 2rem;
            background: linear-gradient(135deg, #e50914, #f40612);
            color: white;
            border: none;
            border-radius: 6px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(229, 9, 20, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(229, 9, 20, 0.4);
        }

        /* Main Content */
        main {
            padding: 2rem;
            margin-top: -10vh;
            position: relative;
            z-index: 3;
        }

        .local-mode-notice {
            background: linear-gradient(135deg, rgba(40, 167, 69, 0.2), rgba(40, 167, 69, 0.1));
            border: 1px solid rgba(40, 167, 69, 0.3);
            color: #28a745;
            padding: 1rem;
            border-radius: 12px;
            margin-bottom: 2rem;
            text-align: center;
            backdrop-filter: blur(10px);
        }

        .search-container {
            margin-bottom: 2rem;
            display: flex;
            justify-content: center;
        }

        .search-bar {
            display: flex;
            max-width: 500px;
            width: 100%;
            gap: 0.5rem;
        }

        .search-bar input {
            flex: 1;
            padding: 0.75rem 1rem;
            border: 2px solid rgba(255,255,255,0.1);
            border-radius: 8px;
            background-color: rgba(255,255,255,0.1);
            color: #fff;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .search-bar input:focus {
            outline: none;
            border-color: #e50914;
            background-color: rgba(255,255,255,0.15);
        }

        .search-bar button {
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 8px;
            background: linear-gradient(135deg, #e50914, #f40612);
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1rem;
        }

        .search-bar button:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(229, 9, 20, 0.3);
        }

        /* Section Titles */
        .section-title {
            font-size: clamp(1.5rem, 3vw, 2rem);
            margin: 3rem 0 1.5rem;
            color: #fff;
            position: relative;
            padding-left: 1rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            flex-wrap: wrap;
        }

        .section-title::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 4px;
            background: linear-gradient(135deg, #e50914, #f40612);
            border-radius: 2px;
        }

        .category-badge {
            background: linear-gradient(135deg, #e50914, #f40612);
            color: white;
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .category-badge.nueva {
            background: linear-gradient(135deg, #28a745, #20c997);
        }

        .category-badge.famosa {
            background: linear-gradient(135deg, #ffc107, #ffca2c);
            color: #000;
        }

        .category-badge.comun {
            background: linear-gradient(135deg, #6c757d, #868e96);
        }

        /* Category Sections */
        .category-section {
            margin-bottom: 4rem;
        }

        /* Movie Carousel */
        .movie-carousel {
            position: relative;
            margin-bottom: 2rem;
        }

        .carousel-container {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            padding: 1rem 0;
        }

        .movie-grid {
            display: flex;
            gap: 1rem;
            padding: 0 1rem;
            overflow-x: auto;
          
            padding-right: 2rem;
        }

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

        /* Movie Cards - Responsive Sizes */
        .movie-card {
            background: linear-gradient(145deg, #1f1f1f, #2a2a2a);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            position: relative;
            
            flex-shrink: 0;
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
        }

        .movie-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 12px 40px rgba(0,0,0,0.5);
            z-index: 0;
        }

        .movie-poster {
            position: relative;
            overflow: hidden;
            aspect-ratio: 2/3;
        }

        .movie-poster img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

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

        .movie-category-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            padding: 0.3rem 0.7rem;
            border-radius: 15px;
            font-size: 0.7rem;
            font-weight: 700;
            z-index: 5;
            text-transform: uppercase;
            backdrop-filter: blur(10px);
        }

        .movie-category-badge.nueva {
            background: rgba(40, 167, 69, 0.9);
            color: white;
        }

        .movie-category-badge.famosa {
            background: rgba(255, 193, 7, 0.9);
            color: #000;
        }

        .movie-category-badge.comun {
            background: rgba(108, 117, 125, 0.9);
            color: white;
        }
        /* Movie Is Disponible? */
        .movie-db-badge {
            position: absolute;
            top: 12px;
            right: 85%;
            padding: 0.3rem 0.7rem;
            border-radius: 15px;
            font-size: 0.7rem;
            font-weight: 700;
            z-index: 5;
            text-transform: uppercase;
            backdrop-filter: blur(10px);
        }
        .movie-db-badge.true {
            background: rgba(40, 167, 69, 0.9);
            color: white;
            padding-left: 100px;
        }

        .movie-db-badge.false {
            background: rgba(255, 7, 7, 0.9);
            color: white;
            padding-left: 100px;
        }
        .movie-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, transparent 70%);
            opacity: 0;
            transition: opacity 0.3s ease;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 1rem;
        }

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

        .rating {
            align-self: flex-start;
            background: rgba(0, 0, 0, 0.8);
            padding: 0.4rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            color: #ffd700;
            font-weight: 600;
            backdrop-filter: blur(10px);
        }

        .play-btn {
            align-self: center;
            margin-bottom: 1rem;
            background: rgba(229, 9, 20, 0.9);
            color: white;
            margin-top: 260px;
            border: none;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.2rem;
            backdrop-filter: blur(10px);
        }

