* { margin: 0; padding: 0; box-sizing: border-box; } :root { --primary-color: #e50914; --primary-dark: #b20710; --secondary-color: #f5c518; --text-color: #ffffff; --text-light: #b3b3b3; --bg-dark: #141414; --bg-card: #1f1f1f; --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3); --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4); } html { scroll-behavior: smooth; } body { font-family: 'Heebo', 'Segoe UI', Tahoma, sans-serif; line-height: 1.6; color: var(--text-color); background-color: var(--bg-dark); } .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; } .btn { display: inline-block; padding: 12px 28px; border-radius: 8px; text-decoration: none; font-weight: 600; transition: all 0.3s ease; cursor: pointer; border: none; font-size: 1rem; } .btn-primary { background-color: var(--primary-color); color: var(--text-color); } .btn-primary:hover { background-color: var(--primary-dark); transform: translateY(-2px); } .btn-secondary { background-color: transparent; color: var(--text-color); border: 2px solid var(--text-color); } .btn-secondary:hover { background-color: var(--text-color); color: var(--bg-dark); } .section-title { text-align: center; font-size: 2.5rem; margin-bottom: 50px; color: var(--text-color); } .header { position: fixed; top: 0; left: 0; right: 0; background: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, transparent 100%); z-index: 1000; transition: background 0.3s ease; } .nav { display: flex; justify-content: space-between; align-items: center; padding: 15px 20px; } .logo { font-size: 1.8rem; font-weight: 700; color: var(--primary-color); text-decoration: none; } .nav-menu { display: flex; list-style: none; gap: 30px; } .nav-menu a { text-decoration: none; color: var(--text-color); font-weight: 500; transition: color 0.3s ease; } .nav-menu a:hover { color: var(--primary-color); } .nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 5px; } .nav-toggle span { width: 25px; height: 3px; background-color: var(--text-color); transition: all 0.3s ease; } .hero { background: linear-gradient(135deg, var(--bg-dark) 0%, #2d0a0a 100%); color: var(--text-color); padding: 150px 0 100px; min-height: 100vh; display: flex; align-items: center; } .hero-content { max-width: 700px; } .hero h1 { font-size: 3.5rem; margin-bottom: 20px; line-height: 1.2; } .hero p { font-size: 1.25rem; margin-bottom: 30px; color: var(--text-light); } .hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; } .movies { padding: 100px 0; background-color: var(--bg-dark); } .movies-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; } .movie-card { background-color: var(--bg-card); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); transition: transform 0.3s ease, box-shadow 0.3s ease; cursor: pointer; } .movie-card:hover { transform: translateY(-10px) scale(1.02); box-shadow: var(--shadow-lg); } .movie-poster { height: 300px; background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%); display: flex; align-items: center; justify-content: center; font-size: 5rem; } .movie-info { padding: 20px; } .movie-info h3 { margin-bottom: 8px; font-size: 1.2rem; } .movie-meta { color: var(--text-light); font-size: 0.9rem; margin-bottom: 10px; } .movie-rating { color: var(--secondary-color); font-weight: 600; } .categories { padding: 100px 0; background-color: #1a1a1a; } .categories-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 20px; } .category-card { background-color: var(--bg-card); padding: 30px 20px; border-radius: 12px; text-align: center; transition: transform 0.3s ease, background-color 0.3s ease; cursor: pointer; } .category-card:hover { transform: translateY(-5px); background-color: var(--primary-color); } .category-icon { font-size: 2.5rem; margin-bottom: 15px; } .category-card h3 { margin-bottom: 5px; } .category-card p { color: var(--text-light); font-size: 0.9rem; } .pricing { padding: 100px 0; background-color: var(--bg-dark); } .pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; align-items: start; } .pricing-card { background-color: var(--bg-card); padding: 40px 30px; border-radius: 12px; text-align: center; box-shadow: var(--shadow); position: relative; } .pricing-card.featured { border: 3px solid var(--primary-color); transform: scale(1.05); } .badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background-color: var(--primary-color); color: var(--text-color); padding: 5px 20px; border-radius: 20px; font-size: 0.85rem; font-weight: 600; } .pricing-card h3 { font-size: 1.5rem; margin-bottom: 10px; } .price { font-size: 3rem; font-weight: 700; color: var(--primary-color); } .price-desc { color: var(--text-light); margin-bottom: 25px; } .pricing-card ul { list-style: none; margin-bottom: 30px; } .pricing-card ul li { padding: 10px 0; border-bottom: 1px solid #333; color: var(--text-light); } .pricing-card ul li:last-child { border-bottom: none; } .contact { padding: 100px 0; background-color: #1a1a1a; } .contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; } .contact-info h3 { font-size: 1.8rem; margin-bottom: 15px; } .contact-info > p { color: var(--text-light); margin-bottom: 30px; } .contact-details { display: flex; flex-direction: column; gap: 20px; } .contact-item { display: flex; align-items: center; gap: 15px; } .contact-icon { font-size: 1.5rem; } .contact-form { display: flex; flex-direction: column; gap: 20px; } .form-group input, .form-group textarea { width: 100%; padding: 15px; border: 2px solid #333; border-radius: 8px; font-size: 1rem; font-family: inherit; background-color: var(--bg-card); color: var(--text-color); transition: border-color 0.3s ease; } .form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--primary-color); } .form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-light); } .contact-form .btn { align-self: flex-start; } .footer { background-color: #0a0a0a; color: var(--text-color); padding: 60px 0 20px; } .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 40px; } .footer-section h4 { font-size: 1.2rem; margin-bottom: 20px; } .footer-section p { color: var(--text-light); } .footer-section ul { list-style: none; } .footer-section ul li { margin-bottom: 10px; } .footer-section ul a { color: var(--text-light); text-decoration: none; transition: color 0.3s ease; } .footer-section ul a:hover { color: var(--primary-color); } .social-links { display: flex; gap: 15px; } .social-links a { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; background-color: #333; border-radius: 50%; color: var(--text-color); text-decoration: none; font-size: 0.85rem; font-weight: 600; transition: background-color 0.3s ease; } .social-links a:hover { background-color: var(--primary-color); } .footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid #333; } .footer-bottom p { color: var(--text-light); } @media (max-width: 768px) { .nav-toggle { display: flex; } .nav-menu { position: absolute; top: 100%; left: 0; right: 0; background-color: var(--bg-dark); flex-direction: column; padding: 20px; gap: 15px; box-shadow: var(--shadow); display: none; } .nav-menu.active { display: flex; } .hero h1 { font-size: 2.2rem; } .section-title { font-size: 2rem; } .contact-wrapper { grid-template-columns: 1fr; } .pricing-card.featured { transform: scale(1); } } @media (max-width: 480px) { .hero h1 { font-size: 1.8rem; } .hero-buttons { flex-direction: column; } .hero-buttons .btn { width: 100%; text-align: center; } }