body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            margin: 0;
            background-color: #000;
            color: #fff;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        /* Заголовок (Header) */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 5%;
            background-color: rgba(0, 0, 0, 0.8);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-sizing: border-box;
        }

        .logo {
            font-size: 28px;
            font-weight: bold;
            color: #ff8c00;
            text-transform: uppercase;
        }

        nav ul {
            display: flex;
            gap: 25px;
        }

        nav a {
            font-size: 16px;
            color: #b0b0b0;
            transition: color 0.3s;
        }

        nav a:hover {
            color: #fff;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .search-container {
            position: relative;
        }

        .search-container input {
            background-color: #222;
            border: none;
            padding: 10px 15px 10px 40px;
            border-radius: 5px;
            color: #fff;
            font-size: 16px;
        }

        .search-container svg {
            position: absolute;
            left: 10px;
            top: 50%;
            transform: translateY(-50%);
            width: 20px;
            height: 20px;
            fill: #777;
        }

        .login-btn {
            color: #fff;
            font-weight: 600;
        }

        .signup-btn {
            background: linear-gradient(135deg, #ff8c00 0%, #ff4500 100%);
            color: #fff;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .signup-btn:hover {
            transform: scale(1.05);
        }

        
        .hero {
            position: relative;
            height: 90vh;
            display: flex;
            align-items: center;
            padding: 0 5%;
            background-size: cover;
            background-position: center;
            margin-top: 80px; /* offset for fixed header */
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, #000 0%, transparent 100%);
            z-index: 1;
        }

        .hero-poster-container {
            z-index: 2;
            width: 250px;
            height: 375px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.5);
        }
		
		.hero-poster-container img {
			width: 100%;
			height: 100%;
			
		}

        .hero-details {
            z-index: 2;
            max-width: 600px;
            margin-left: 50px;
        }

        .hero h1 {
            font-size: 48px;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .hero-meta {
            font-size: 16px;
            color: #b0b0b0;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .hero-meta .imdb-rating {
            background-color: #f5c518;
            color: #000;
            padding: 3px 8px;
            border-radius: 3px;
            font-weight: bold;
        }

        .hero-description {
            font-size: 18px;
            margin-bottom: 30px;
            color: #eee;
        }

        .hero-actions {
            display: flex;
            gap: 20px;
        }

        .watch-trailer-btn {
            background-color: #ff8c00;
            color: #fff;
            border: none;
            padding: 12px 25px;
            border-radius: 5px;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: background-color 0.3s;
        }

        .watch-trailer-btn:hover {
            background-color: #ff7518;
        }

        .watch-trailer-btn svg {
            width: 24px;
            height: 24px;
            fill: #fff;
        }

        .add-list-btn {
            color: #b0b0b0;
            font-size: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
            background: none;
            border: none;
            cursor: pointer;
            transition: color 0.3s;
        }

        .add-list-btn:hover {
            color: #fff;
        }

        .add-list-btn svg {
            width: 20px;
            height: 20px;
            fill: #b0b0b0;
        }

        /* Сетки с фильмами (Latest Trailers, Coming Soon) */
        .grid-section {
            padding: 60px 5%;
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }

        .grid-section h2 {
            font-size: 24px;
            font-weight: bold;
            margin: 0;
            text-transform: uppercase;
        }

        .view-all {
            font-size: 16px;
            color: #ff8c00;
            font-weight: 600;
        }

        .movie-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        /* Карточка фильма */
        .movie-card {
            background-color: #1a1a1a;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.3);
            transition: transform 0.3s;
        }

        .movie-card:hover {
            transform: scale(1.03);
        }

        .movie-poster {
            width: 100%;
            height: 200px; /* fixed height for consistency */
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .movie-duration {
            position: absolute;
            bottom: 10px;
            right: 10px;
            background-color: rgba(0, 0, 0, 0.7);
            color: #fff;
            padding: 3px 6px;
            border-radius: 3px;
            font-size: 14px;
        }

        .play-icon-container {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background-color: rgba(255, 140, 0, 0.8);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .movie-card:hover .play-icon-container {
            # opacity: 1;
        }

        .play-icon-container svg {
            width: 30px;
            height: 30px;
            fill: #fff;
        }

        .movie-info {
            padding: 15px;
        }

        .movie-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .movie-genre {
            font-size: 14px;
            color: #b0b0b0;
        }

        /* Секция "Coming Soon" */
        .coming-soon-grid {
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
			display: grid;
        }

        .coming-soon-poster {
            height: 300px;
            background-size: cover;
            background-position: center;
            border-radius: 10px;
            cursor: pointer;
            transition: box-shadow 0.3s;
        }

        .coming-soon-poster:hover {
            box-shadow: 0 0 15px rgba(255, 140, 0, 0.5);
        }

        /* Футер (Footer) */
        footer {
            padding: 60px 5% 30px;
            background-color: #111;
            border-top: 1px solid #333;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(3, 1fr) auto;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            font-size: 18px;
            margin-bottom: 15px;
            color: #fff;
            text-transform: uppercase;
        }

        .footer-column ul li {
            margin-bottom: 10px;
        }

        .footer-column ul a {
            font-size: 16px;
            color: #b0b0b0;
            transition: color 0.3s;
        }

        .footer-column ul a:hover {
            color: #fff;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            align-items: flex-start;
        }

        .social-icons a svg {
            width: 24px;
            height: 24px;
            fill: #777;
            transition: fill 0.3s;
        }

        .social-icons a:hover svg {
            fill: #fff;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid #333;
            padding-top: 20px;
            color: #777;
            font-size: 14px;
        }

        .powered-by a {
            color: #777;
            transition: color 0.3s;
        }

        .powered-by a:hover {
            color: #fff;
        }
		
		.video-js {
			width: 100%;
			height: 100%;
			
		}
		
		.video-js .vjs-big-play-button {
			width: 2em;
			background-color: rgba(255, 140, 0, 0.9);
			border:0;
			margin-left: -1em;
			
		}

        /* Медиа-запросы для адаптивности */
        @media (max-width: 1024px) {
            .hero-poster-container { width: 200px; height: 300px; }
            .hero h1 { font-size: 36px; }
            .hero-details { margin-left: 30px; }
            .movie-grid, .coming-soon-grid { grid-template-columns: repeat(3, 1fr); }
            .footer-content { grid-template-columns: repeat(2, 1fr); }
            .social-icons { grid-column: 1 / -1; justify-content: center; margin-top: 20px; }
        }

        @media (max-width: 768px) {
            header { padding: 10px 3%; flex-wrap: wrap; }
            .header-actions { margin-top: 10px; width: 100%; justify-content: space-between; }
            .search-container { order: 1; margin-right: auto;}
            .signup-btn { order: 2; }
            .login-btn { order: 3; }
            nav ul { font-size: 14px; gap: 15px; }

            .hero { flex-direction: column; height: auto; padding: 40px 5%; margin-top: 120px; text-align: center;}
            .hero-poster-container { margin-bottom: 30px; }
            .hero-details { margin-left: 0; }
            .hero h1 { font-size: 32px; }
            .hero-meta { justify-content: center; }
            .hero-actions { justify-content: center; flex-direction: column; gap: 10px;}

            .grid-section { padding: 40px 3%; }
            .grid-section h2 { font-size: 20px; }
            .view-all { font-size: 14px; }
            .movie-grid, .coming-soon-grid { grid-template-columns: repeat(2, 1fr); gap: 20px;}
            .movie-poster, .coming-soon-poster { height: 180px; }
            .movie-title { font-size: 16px; }

            .footer-content { grid-template-columns: 1fr; gap: 30px; text-align: center; }
            .social-icons { justify-content: center; }
            .footer-bottom { flex-direction: column; gap: 10px; font-size: 12px;}
			
			
        }

        @media (max-width: 480px) {
            nav ul { font-size: 12px; flex-wrap: wrap; justify-content: center;}
            .movie-grid, .coming-soon-grid { grid-template-columns: 1fr; }
            .hero h1 { font-size: 28px; }
            .header-actions { flex-wrap: wrap; justify-content: center; gap: 10px;}
            .search-container { width: 100%; margin: 0;}
            .search-container input { width: calc(100% - 40px);}
            .footer-bottom { margin-top: 30px; }
			
			
        }