/* ===== CSS VARIABLES ===== */ :root { --primary-black: #0a0a0a; --secondary-black: #1a1a1a; --accent-black: #2a2a2a; --primary-white: #ffffff; --secondary-white: #f0f0f0; --accent-white: #e0e0e0; --highlight: #e50914; --highlight-hover: #b20710; --success: #28a745; --warning: #ffc107; --danger: #dc3545; --admin-color: #00a8ff; --info: #17a2b8; } /* ===== BASE STYLES ===== */ * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; } body { background-color: var(--primary-black); color: var(--primary-white); line-height: 1.6; overflow-x: hidden; min-height: 100vh; } /* ===== UTILITY CLASSES ===== */ .hidden { display: none !important; } .visible { display: block !important; } .text-center { text-align: center; } .text-right { text-align: right; } /* ===== HEADER & NAVIGATION ===== */ header { background-color: rgba(10, 10, 10, 0.98); padding: 1.2rem 2rem; position: fixed; width: 100%; top: 0; z-index: 1000; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(255, 255, 255, 0.05); } .logo { display: flex; align-items: center; gap: 12px; text-decoration: none; } .logo i { color: var(--highlight); font-size: 2.2rem; } .logo h1 { font-size: 1.9rem; font-weight: 900; letter-spacing: 1.2px; background: linear-gradient(45deg, var(--primary-white), var(--accent-white)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; } /* ===== CLEAN SEARCH BAR ===== */ .search-container { flex: 1; max-width: 600px; margin: 0 2rem; position: relative; } .search-wrapper { position: relative; } .search-input { width: 100%; padding: 14px 50px 14px 20px; background: rgba(255, 255, 255, 0.05); border: 2px solid rgba(255, 255, 255, 0.1); border-radius: 30px; color: var(--primary-white); font-size: 1rem; transition: all 0.3s; backdrop-filter: blur(10px); } .search-input:focus { outline: none; border-color: var(--highlight); box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.2); background: rgba(255, 255, 255, 0.08); } .search-input::placeholder { color: var(--accent-white); opacity: 0.6; } .search-button { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); background: var(--highlight); border: none; color: var(--primary-white); font-size: 1.1rem; cursor: pointer; padding: 10px 20px; border-radius: 25px; transition: all 0.3s; display: flex; align-items: center; gap: 8px; font-weight: 600; } .search-button:hover { background: var(--highlight-hover); transform: translateY(-50%) scale(1.05); } /* ===== SEARCH RESULTS ===== */ .search-results { position: absolute; top: calc(100% + 10px); left: 0; right: 0; background: var(--secondary-black); border-radius: 15px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7); max-height: 500px; overflow-y: auto; display: none; z-index: 1001; border: 1px solid rgba(255, 255, 255, 0.1); backdrop-filter: blur(20px); } .search-results.active { display: block; animation: slideDown 0.3s ease-out; } @keyframes slideDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } } .search-result-item { padding: 15px 20px; border-bottom: 1px solid rgba(255, 255, 255, 0.05); cursor: pointer; transition: all 0.2s; display: flex; align-items: center; gap: 15px; } .search-result-item:hover { background: rgba(255, 255, 255, 0.05); } .search-result-item img { width: 60px; height: 80px; object-fit: cover; border-radius: 8px; flex-shrink: 0; } .search-result-info { flex: 1; } .search-result-info h4 { font-size: 1.1rem; margin-bottom: 5px; color: var(--primary-white); } .search-result-info p { font-size: 0.9rem; color: var(--accent-white); opacity: 0.8; } .no-results { padding: 40px 20px; text-align: center; color: var(--accent-white); } .no-results i { font-size: 3rem; margin-bottom: 15px; opacity: 0.3; } /* ===== MOBILE MENU ===== */ .mobile-menu-btn { display: none; background: none; border: none; color: var(--primary-white); font-size: 1.5rem; cursor: pointer; padding: 8px; transition: all 0.3s; border-radius: 5px; } .mobile-menu-btn:hover { background: rgba(255, 255, 255, 0.1); } nav { display: flex; gap: 2rem; align-items: center; } nav a { color: var(--secondary-white); text-decoration: none; font-weight: 600; font-size: 1rem; transition: all 0.3s; padding: 8px 0; position: relative; } nav a:hover { color: var(--primary-white); } nav a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--highlight); transition: width 0.3s; } nav a:hover::after { width: 100%; } /* ===== HERO SECTION ===== */ .hero { margin-top: 80px; padding: 8rem 2rem; text-align: center; background: linear-gradient(135deg, rgba(10, 10, 10, 0.9), rgba(26, 26, 26, 0.9)), url('https://images.unsplash.com/photo-1536440136628-849c177e76a1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1925&q=80'); background-size: cover; background-position: center; position: relative; overflow: hidden; } .hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(45deg, rgba(229, 9, 20, 0.1), rgba(0, 168, 255, 0.1)); z-index: 1; } .hero-content { max-width: 900px; margin: 0 auto; position: relative; z-index: 2; } .hero h2 { font-size: 4rem; margin-bottom: 1.5rem; letter-spacing: 1px; text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.8); line-height: 1.2; background: linear-gradient(45deg, var(--primary-white), var(--accent-white)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; } .hero p { font-size: 1.3rem; margin-bottom: 3rem; color: var(--accent-white); max-width: 700px; margin-left: auto; margin-right: auto; font-weight: 300; line-height: 1.6; } /* ===== MOVIES SECTION ===== */ .movies-section { padding: 6rem 2rem; max-width: 1400px; margin: 0 auto; } .section-title { font-size: 3rem; margin-bottom: 3rem; text-align: center; position: relative; display: inline-block; left: 50%; transform: translateX(-50%); } .section-title::after { content: ''; position: absolute; bottom: -15px; left: 50%; transform: translateX(-50%); width: 100px; height: 5px; background: var(--highlight); border-radius: 5px; } .movies-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2.5rem; margin-bottom: 4rem; } /* ===== MOVIE CARD ===== */ .movie-card { background: var(--secondary-black); border-radius: 15px; overflow: hidden; transition: all 0.4s; position: relative; border: 1px solid rgba(255, 255, 255, 0.05); height: 100%; display: flex; flex-direction: column; } .movie-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(229, 9, 20, 0.2); border-color: rgba(229, 9, 20, 0.3); } .movie-poster-container { position: relative; overflow: hidden; height: 380px; } .movie-poster { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s; } .movie-card:hover .movie-poster { transform: scale(1.1); } .movie-badge { position: absolute; top: 15px; right: 15px; background: var(--highlight); color: white; padding: 6px 15px; border-radius: 5px; font-size: 0.85rem; font-weight: 700; z-index: 1; } .movie-info { padding: 2rem; flex-grow: 1; display: flex; flex-direction: column; } .movie-title { font-size: 1.5rem; margin-bottom: 1rem; color: var(--primary-white); line-height: 1.3; font-weight: 700; } .movie-meta { display: flex; justify-content: space-between; margin-bottom: 1.5rem; font-size: 0.95rem; color: var(--accent-white); } .movie-rating { color: #ffcc00; font-weight: 700; display: flex; align-items: center; gap: 5px; } .movie-genre { background: var(--accent-black); padding: 5px 15px; border-radius: 20px; font-size: 0.85rem; font-weight: 600; } .movie-description { color: var(--accent-white); margin-bottom: 2rem; font-size: 1rem; line-height: 1.6; flex-grow: 1; } .watch-now-btn { display: block; width: 100%; padding: 15px; background: var(--highlight); color: var(--primary-white); border: none; border-radius: 10px; font-size: 1.1rem; font-weight: 700; cursor: pointer; transition: all 0.3s; text-align: center; text-decoration: none; display: flex; align-items: center; justify-content: center; gap: 10px; } .watch-now-btn:hover { background: var(--highlight-hover); transform: translateY(-3px); box-shadow: 0 10px 25px rgba(229, 9, 20, 0.3); } /* ===== ADMIN LOGIN MODAL ===== */ .admin-login-modal { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.97); z-index: 3000; display: none; align-items: center; justify-content: center; } .admin-login-modal.active { display: flex; } .login-form { background: var(--secondary-black); padding: 4rem; border-radius: 25px; width: 100%; max-width: 500px; box-shadow: 0 30px 80px rgba(0, 168, 255, 0.4); border: 1px solid rgba(0, 168, 255, 0.3); animation: slideUp 0.4s ease-out; } @keyframes slideUp { from { opacity: 0; transform: translateY(50px); } to { opacity: 1; transform: translateY(0); } } .login-form h3 { color: var(--primary-white); margin-bottom: 2.5rem; text-align: center; font-size: 2.2rem; display: flex; align-items: center; justify-content: center; gap: 15px; } .login-error { color: var(--danger); margin-bottom: 1.5rem; text-align: center; font-size: 0.95rem; padding: 15px; background: rgba(220, 53, 69, 0.1); border-radius: 10px; border-left: 4px solid var(--danger); display: flex; align-items: center; justify-content: center; gap: 10px; } .form-group { margin-bottom: 1.8rem; } .form-group label { display: block; margin-bottom: 0.8rem; color: var(--accent-white); font-weight: 600; font-size: 1.05rem; } .form-control { width: 100%; padding: 15px; background: var(--accent-black); border: 2px solid rgba(255, 255, 255, 0.1); border-radius: 10px; color: var(--primary-white); font-size: 1rem; transition: all 0.3s; } .form-control:focus { outline: none; border-color: var(--admin-color); box-shadow: 0 0 0 3px rgba(0, 168, 255, 0.2); background: rgba(0, 168, 255, 0.05); } .login-actions { display: flex; gap: 1.5rem; margin-top: 2.5rem; padding-top: 2.5rem; border-top: 2px solid rgba(255, 255, 255, 0.1); } .btn { padding: 15px 35px; border: none; border-radius: 10px; font-size: 1.05rem; font-weight: 700; cursor: pointer; transition: all 0.3s; display: flex; align-items: center; gap: 12px; flex: 1; justify-content: center; } .btn-primary { background: var(--admin-color); color: var(--primary-white); box-shadow: 0 8px 20px rgba(0, 168, 255, 0.3); } .btn-primary:hover { background: #0097e6; transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0, 168, 255, 0.4); } .btn-secondary { background: var(--accent-black); color: var(--accent-white); border: 2px solid rgba(255, 255, 255, 0.1); } .btn-secondary:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-3px); border-color: rgba(255, 255, 255, 0.2); } /* ===== ADMIN PANEL OVERLAY ===== */ .admin-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.97); z-index: 2000; display: none; overflow-y: auto; padding: 20px; } .admin-overlay.active { display: block; } .admin-panel { max-width: 1300px; margin: 2rem auto; background: var(--secondary-black); border-radius: 20px; overflow: hidden; box-shadow: 0 30px 90px rgba(0, 168, 255, 0.3); border: 1px solid rgba(0, 168, 255, 0.2); animation: slideUp 0.4s ease-out; } .admin-header { background: linear-gradient(135deg, var(--admin-color), #0097e6); padding: 1.8rem 2.5rem; display: flex; justify-content: space-between; align-items: center; } .admin-header h2 { color: var(--primary-white); font-size: 2.2rem; display: flex; align-items: center; gap: 15px; } .close-admin { background: rgba(255, 255, 255, 0.1); border: none; color: var(--primary-white); font-size: 1.5rem; cursor: pointer; padding: 12px; border-radius: 50%; transition: all 0.3s; width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; } .close-admin:hover { background: rgba(255, 255, 255, 0.2); transform: rotate(90deg); } /* ===== ADMIN CONTENT ===== */ .admin-content { padding: 2.5rem; } .admin-tabs { display: flex; gap: 10px; margin-bottom: 2.5rem; background: var(--accent-black); padding: 15px; border-radius: 15px; flex-wrap: wrap; } .admin-tab { padding: 15px 30px; background: transparent; border: none; color: var(--accent-white); cursor: pointer; border-radius: 10px; transition: all 0.3s; font-weight: 700; display: flex; align-items: center; gap: 12px; font-size: 1rem; flex: 1; min-width: 200px; justify-content: center; } .admin-tab.active { background: var(--admin-color); color: var(--primary-white); box-shadow: 0 8px 25px rgba(0, 168, 255, 0.3); transform: translateY(-2px); } .admin-form { display: none; } .admin-form.active { display: block; } .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.8rem; } .admin-actions { display: flex; gap: 1.5rem; margin-top: 3rem; padding-top: 2.5rem; border-top: 2px solid rgba(255, 255, 255, 0.1); } .btn-danger { background: var(--danger); color: var(--primary-white); box-shadow: 0 8px 20px rgba(220, 53, 69, 0.3); } .btn-danger:hover { background: #c82333; transform: translateY(-3px); box-shadow: 0 12px 30px rgba(220, 53, 69, 0.4); } .btn-success { background: var(--success); color: var(--primary-white); box-shadow: 0 8px 20px rgba(40, 167, 69, 0.3); } .btn-success:hover { background: #218838; transform: translateY(-3px); box-shadow: 0 12px 30px rgba(40, 167, 69, 0.4); } /* ===== MOVIES LIST IN ADMIN ===== */ .movies-list-container { background: var(--accent-black); border-radius: 15px; padding: 1.5rem; max-height: 600px; overflow-y: auto; } .movies-list-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 2px solid rgba(255, 255, 255, 0.1); } .movies-list-header h3 { color: var(--primary-white); font-size: 1.5rem; display: flex; align-items: center; gap: 10px; } .movies-list { display: flex; flex-direction: column; gap: 15px; } .movie-list-item { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem; background: var(--secondary-black); border-radius: 12px; transition: all 0.3s; border: 2px solid transparent; } .movie-list-item:hover { transform: translateX(10px); border-color: rgba(0, 168, 255, 0.3); box-shadow: 0 10px 30px rgba(0, 168, 255, 0.2); } .movie-list-info { flex: 1; min-width: 0; } .movie-list-info h4 { color: var(--primary-white); margin-bottom: 8px; font-size: 1.2rem; display: flex; align-items: center; gap: 10px; } .movie-list-info p { color: var(--accent-white); font-size: 0.9rem; opacity: 0.8; display: flex; align-items: center; gap: 15px; flex-wrap: wrap; } .movie-list-actions { display: flex; gap: 12px; flex-shrink: 0; } .action-btn { padding: 10px 25px; border: none; border-radius: 8px; cursor: pointer; font-size: 0.95rem; transition: all 0.3s; display: flex; align-items: center; gap: 8px; font-weight: 600; min-width: 120px; justify-content: center; } .edit-btn { background: var(--warning); color: var(--primary-black); } .edit-btn:hover { background: #e0a800; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255, 193, 7, 0.3); } .delete-btn { background: var(--danger); color: var(--primary-white); } .delete-btn:hover { background: #c82333; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(220, 53, 69, 0.3); } .preview-btn { background: var(--info); color: var(--primary-white); } .preview-btn:hover { background: #138496; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(23, 162, 184, 0.3); } /* ===== FOOTER ===== */ footer { background: linear-gradient(180deg, var(--accent-black), var(--primary-black)); padding: 5rem 2rem 2rem; margin-top: 6rem; border-top: 1px solid rgba(255, 255, 255, 0.05); } .footer-content { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 4rem; } .footer-section h3 { font-size: 1.5rem; margin-bottom: 2rem; color: var(--primary-white); position: relative; padding-bottom: 15px; } .footer-section h3::after { content: ''; position: absolute; bottom: 0; left: 0; width: 50px; height: 4px; background: var(--highlight); border-radius: 2px; } .footer-links { list-style: none; display: flex; flex-direction: column; gap: 15px; } .footer-links li a { color: var(--accent-white); text-decoration: none; transition: all 0.3s; display: flex; align-items: center; gap: 12px; padding: 8px 0; } .footer-links li a:hover { color: var(--primary-white); transform: translateX(10px); } .copyright { text-align: center; margin-top: 4rem; padding-top: 3rem; border-top: 1px solid rgba(255, 255, 255, 0.1); color: var(--accent-white); font-size: 0.95rem; } /* ===== NOTIFICATIONS ===== */ .notification { position: fixed; top: 100px; right: 20px; padding: 20px 25px; border-radius: 15px; color: white; font-weight: 600; display: flex; align-items: center; gap: 15px; max-width: 400px; box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4); z-index: 9999; animation: slideInRight 0.3s ease-out; backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.1); } @keyframes slideInRight { from { opacity: 0; transform: translateX(100%); } to { opacity: 1; transform: translateX(0); } } .notification.success { background: linear-gradient(135deg, var(--success), #218838); border-color: rgba(40, 167, 69, 0.3); } .notification.error { background: linear-gradient(135deg, var(--danger), #c82333); border-color: rgba(220, 53, 69, 0.3); } .notification.info { background: linear-gradient(135deg, var(--info), #138496); border-color: rgba(23, 162, 184, 0.3); } /* ===== RESPONSIVE DESIGN ===== */ @media (max-width: 1200px) { .movies-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); } .admin-tabs { flex-direction: column; } .admin-tab { min-width: 100%; } } @media (max-width: 992px) { .hero h2 { font-size: 3rem; } .section-title { font-size: 2.5rem; } .form-row { grid-template-columns: 1fr; } } @media (max-width: 768px) { header { padding: 1rem; flex-wrap: wrap; } .search-container { order: 3; margin: 1rem 0 0; max-width: 100%; } .search-button span { display: none; } .search-button { padding: 12px; min-width: 50px; width: 50px; height: 50px; justify-content: center; } .mobile-menu-btn { display: block; } nav { position: fixed; top: 80px; left: 0; right: 0; background: var(--secondary-black); padding: 1.5rem; flex-direction: column; gap: 1.5rem; display: none; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); border-top: 1px solid rgba(255, 255, 255, 0.1); z-index: 999; } nav.active { display: flex; } .hero { padding: 6rem 1.5rem; margin-top: 70px; } .hero h2 { font-size: 2.5rem; } .movies-section { padding: 4rem 1.5rem; } .admin-panel { margin: 1rem; } .admin-content { padding: 1.5rem; } .movie-list-item { flex-direction: column; gap: 1.5rem; text-align: center; } .movie-list-actions { width: 100%; justify-content: center; } .login-form { padding: 3rem 2rem; margin: 1rem; } } @media (max-width: 576px) { .hero h2 { font-size: 2rem; } .section-title { font-size: 2rem; } .movies-grid { grid-template-columns: 1fr; } .admin-actions, .login-actions { flex-direction: column; } .btn { width: 100%; } .footer-content { grid-template-columns: 1fr; gap: 3rem; } }
Stream thousands of movies and TV shows with direct watch links. All movies are managed through a secure admin panel.