*{
    padding: 0;
    margin: 0;
    font-family: 'Poppins',sans-serif;
    box-sizing: border-box;
}

/* New animated card design variables */
:root {
    --bg: 25% 0.0075 70;
    --pink: 77.75% 0.1003 350.51;
    --gold: 84.16% 0.1169 71.19;
    --mint: 84.12% 0.1334 165.28;
    --mobile--w: 360px;
    --mobile--h: 540px;
    --outline-w: 9px;
    --preview-bg: #fff;
}

body {
	background: linear-gradient(
		50deg,
		oklch(from oklch(var(--bg)) 50% c h),
		oklch(from oklch(var(--bg)) 90% c h)
	);
	background-attachment: fixed;
	height: 100%;
	padding: 3rem 2dvw;
	color: #fff;
}

.navbar{
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    transition: background-color 0.3s ease;
}
.navbar .logo img {
    height: 40px;
    width: auto;
}

.navbar ul{
    display: flex;
    align-items: center;
    gap: 3rem;
}
.navbar ul li{
    list-style: none;
}
.navbar ul li a{
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    transition: 0.3s ease-in-out;
}
.navbar ul li a:hover{
    color: #e2d703;
}
.navbar ul .btn{
    border: 2px solid #e2d703;
    color: #e2d703;
    padding: 10px 30px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    background-color: #1d1a28;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}
.navbar ul .btn:is(:hover, :focus) {
    background: #e2d703;
    color: #1d1a28;
}
.nav-list .logo{
    display: none;
    align-items: center;
    justify-content: space-around;
    padding-top: 20px;
}
.nav-list .logo .close{
    background-color: transparent;
    color: #fff;
    font-size: 20px;
    border: none;
}
.hamburger{
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
}
.hamburger .line{
    width: 25px;
    height: 3px;
    border-radius: 5px;
    background-color: #fff;
}

.search-icon {
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    margin-left: 1rem;
    transition: color 0.3s ease;
}

.search-icon:hover {
    color: #e2d703;
}

.profile-icon {
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    margin-left: 1rem;
    transition: color 0.3s ease;
}

.profile-icon:hover {
    color: #e2d703;
}
.hero{
    background: url(../images/hero-bg-2.png) no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0px 30px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    z-index: 1;
}

.hero .main {
    position: relative;
    z-index: 2;
    max-width: 50%;
}
.hero .main .content{
    max-width: 60%;
}
.hero .main .content p{
    font-size: 26px;
    font-weight: 700;
    color: #e2d703;
    margin-bottom: 0.5rem;
}
.hero .content h1{
    font-size: 50px;
    color: #fff;
    line-height: 62px;
}
.hero .content strong{
    color: #e2d703;
}
.hero .meta-wrapper{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 1.5rem;
}
.hero .meta-wrapper .badge span:nth-child(1){
    background-color: #fff;
    color: #171d21;
    font-weight: 700;
    padding: 5px 10px;
    font-size: 12px;
    margin-right: 0.5rem;
}
.hero .meta-wrapper .badge span:nth-child(2){
    background-color: #171d21;
    color: #fff;
    border: 2px solid #fff;
    font-weight: 700;
    padding: 3px 10px;
    font-size: 12px;
}
.hero .meta-wrapper .genre a{
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s ease-in-out;
}
.hero .meta-wrapper .genre a:hover{
    color: #e2d703;
}
.hero .meta-wrapper .date-time span{
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}
.hero .meta-wrapper .date-time span:nth-child(1){
    margin-right: 0.5rem;
}
.hero .date-time i{
    color: #e2d703;
}
.hero .watch-btn{
    margin-top: 3.4rem;
}
.hero .watch-btn i{
    margin-right: 0.5rem;
}
.hero .content .watch-btn button{
    border: 2px solid #e2d703;
    color: #fff;
    padding: 13px 30px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 700;
    background-color: #1d1a28;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}
.hero .content .watch-btn button:is(:hover, :focus) {
    background: #e2d703;
    color: #1d1a28;
}
.upcoming-movie{
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url(../images/upcoming-bg.png) no-repeat;
    background-size: cover;
    background-position: center;
    padding: 100px 30px;
    margin-top: 80px;
}
.upcoming-movie .header{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.upcoming-movie .header .subtitle small{
    font-size: 12px;
    color: #e2d703;
    text-transform: uppercase;
    font-weight: 500;
}
.upcoming-movie .header .subtitle h4{
    font-size: 40px;
    color: #fff;
}
.upcoming-movie .header .buttons{
    display: flex;
    gap: 1rem;
}
.upcoming-movie .header .buttons button{
    color: #fff;
    background-color: #21232b;
    font-weight: 500;
    font-size: 12px;
    padding: 10px 20px;
    border-radius: 30px;
    border: 2px solid #2e303e;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}
.upcoming-movie .header .buttons button:focus{
    border: 2px solid #e2d703;
}

.upcoming-movie .movie-card{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
}
.card__container {
	display: flex;
	flex-wrap: wrap;
	place-items: center;
	place-content: center;
	height: 100%;

	/* fade out other cards when one is :hover/:focus-within */
	&:has(:hover, :focus-within) {
		.card:not(:hover, :focus-within) {
			opacity: 0.4;
		}
	}
}

  .wrapper .movie-carousel{
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 10px;
    padding: 20px 0;
    scroll-behavior: smooth;
    scrollbar-width: none;
  }
  .movie-carousel::-webkit-scrollbar {
    display: none;
  }
  .movie-carousel.no-transition {
    scroll-behavior: auto;
  }
  .movie-carousel.dragging {
    scroll-snap-type: none;
    scroll-behavior: auto;
  }
  .movie-carousel.dragging .card {
    cursor: grab;
    user-select: none;
  }
  .card {
  	--bg-pos-y--start: 0;
  	--bg-pos-y--end: 0;
  	--bg-pos-y: var(--bg-pos-y--start);
  	--delay: 0;
  	--duration: 6s;
  
  	--img: url(https://assets.codepen.io/2392/360__homepage--full.png);
  
  	--shadow-blur: 24px;
  	--shadow-color: oklch(var(--bg));
  
  	background-clip: padding-box;
  	background-image: var(--img);
  	background-position-y: var(--bg-pos-y);
  	background-repeat: no-repeat;
  	background-size: cover;
  	background-attachment: fixed;
  
  	border: var(--outline-w) solid var(--border-color, transparent);
  	border-radius: 6px;
  	box-shadow: 0 0 var(--shadow-blur) 0 var(--shadow-color);
  
  	transition-property: border, box-shadow, filter, outline-offset, opacity, rotate, scale, z-index;
  	transition-duration: 0.15s, 0.15s, 0.6s, 0.6s, 0.3s, 0.3s, 0.3s, 0.15s;
  
  	filter: grayscale(100%) sepia(5%);
  	mix-blend-mode: multiply;
  	opacity: 0.69;
  
  	scale: 0.85;
  	rotate: var(--rotation, -4deg);
  
  	outline: var(--outline-w) solid var(--preview-bg);
  	outline-offset: var(--outline-w);
  
  	min-height: var(--mobile--h);
  	height: 100%;
  
  	min-width: var(--mobile--w);
  	width: 100%;
  
  	position: relative;
  
  	animation-name: bg-scroll;
  	animation-delay: var(--delay);
  	animation-duration: var(--duration);
  	animation-fill-mode: forwards;
  
  	&:focus-within,
  	&:hover {
  		--shadow-blur: 200px;
  		--shadow-color: oklch(var(--gold));
  		--border-color: var(--shadow-color);
  
  		background-color: white;
  		mix-blend-mode: initial;
  		filter: none;
  		opacity: 1;
  
  		outline-offset: calc(var(--outline-w) / 2);
  
  		scale: 1;
  		rotate: 0deg;
  
  		transition-property: border, box-shadow, filter, outline-offset, opacity, rotate, scale, z-index;
  		transition-duration: 0.15s, 0.15s, 0.3s, 0.3s, 0.3s, 0.3s, 0.3s, 0.15s;
  	}
  
  	&:focus-within {
  		--shadow-color: oklch(var(--pink));
  		z-index: 5;
  	}
  
  	&:hover	{
  		z-index: 6;
  		&:focus { --shadow-color: oklch(var(--mint)); }
  	}
  
  	&.mobile {
  		max-height: var(--mobile--h);
  		max-width: var(--mobile--w);
  	}
  
  	&:nth-of-type(2) {
  		--bg-pos-y--end: calc(var(--mobile--h) * -1.025);
  		--rotation: 3deg;
  	}
  
  	&:nth-of-type(3) {
  		--bg-pos-y--end: calc(var(--mobile--h) * -2.25);
  		--duration: 6.5s;
  		--rotation: -1deg;
  	}
  
  	&:nth-of-type(4) {
  		--bg-pos-y--end: calc(var(--mobile--h) * -3.75);
  		--duration: 6.75s;
  		--rotation: -5deg;
  	}
  
  	&:nth-of-type(5) {
  		--bg-pos-y--end: calc(var(--mobile--h) * -4.82);
  		--duration: 7s;
  		--rotation: -2deg;
  	}
  
  	&:nth-of-type(6) {
  		--bg-pos-y--end: calc(var(--mobile--h) * -5.85);
  		--duration: 7.25s;
  		--rotation: 2deg;
  	}
  
  	&:nth-of-type(7) {
  		--bg-pos-y--end: calc(var(--mobile--h) * -7.21);
  		--duration: 7.5s;
  		--rotation: 4deg;
  	}
  }
.movie-carousel .card .img img{
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.movie-carousel .card:hover .img img {
    transform: scale(1.05);
}

.watchlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    z-index: 10;
}

.movie-carousel .card:hover .watchlist-btn,
.movie-carousel .card:focus-within .watchlist-btn {
    opacity: 1;
}

.watchlist-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.watchlist-btn i {
    color: #fff;
    font-size: 16px;
}

.watchlist-btn.active i {
    color: #e2d703;
}
.movie-carousel .card .title{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
    width: 100%;
}
.movie-carousel .card .title a{
    color: #fff;
    text-decoration: none;
    transition: 0.3s ease-in-out;
}
.movie-carousel .card .title a:hover{
    color: #e2d703;
}
.movie-carousel .card .title span{
    color: #e2d703;
    font-weight: 600;
    font-size: 14px;
}
.movie-carousel .card .footer{
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
}
.movie-carousel .card .footer span{
    color: #e2d703;
    padding: 3px 10px;
    border: 2px solid #fff;
    font-size: 12px;
    font-weight: 600;

}
.movie-carousel .card .footer .time-rating span{
    color: #fff;
    padding: 0px;
    border: none;
}
.movie-carousel .card .footer .time-rating i{
    color: #e2d703;
    margin-right: 0.3rem;
}

.service{
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url(../images/service-bg.jpg) no-repeat;
    background-position: center;
    background-size: cover;
    padding: 100px 30px;
}
.service .main{
    display: flex;
    align-items: center;
    gap: 1rem;
}
.service .main .img img{
    width: 90%;
}
.service .content {
    width: 50%;
}
.service .content small{
    font-size: 13px;
    color: #bdbdbd;
    text-transform: uppercase;
    font-weight: 600;
}
.service .content h4{
    font-size: 40px;
    color: #fff;
    line-height: 52px;
    margin: 0.5rem 0rem;
}
.service .content p{
    color: #bdbdbd;
    font-size: 15px;
    font-weight: 500;
}
.service .content ul{
    margin-top: 2rem;
}
.service .content ul li{
    list-style: none;
    margin-top: 1rem;
}
.service .content li .service-card{
    display: flex;
    align-items: center;
    gap: 2rem;
}

.service li .service-card .img{
    border: 1px dashed #e2d703;
    padding: 5px;
    border-radius: 50%;
}
.service hr{
    border: none;
    border-bottom: 1px dashed hsla(0, 0%, 100%, 0.1);
    height: 2px;
    outline: none;
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.service li .service-card .icon{
    background-color: transparent;
    padding: 20px;
    border-radius: 50%;
    transition: 0.3s ease-in-out;
}
.service li .service-card i{
    color: #fff;
    font-size: 30px;
}
.service li .service-card:hover .icon{
    background-color: #e2d703;
}
.service li .service-card h5{
    font-size: 20px;
    color: #fff;
    margin-bottom: 0.5rem;
}

.top-movie{
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url(../images/top-rated-bg.jpg) no-repeat;
    background-size: cover;
    padding: 100px 30px;
}
.top-movie .header,.tv-series .header{
    text-align: center;
}
.top-movie .header small,.tv-series .header small{
    color: #e2d703;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 500;
}
.top-movie .header h4,.tv-series .header h4{
    color: #fff;
    font-size: 40px;
}
.top-movie .top-movie-main .buttons{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.5rem;
}
.top-movie .top-movie-main .buttons button{
    background-color: #0a0f0f;
    color: #cecaca;
    border-radius: 5px;
    font-size: 13px;
    padding: 12px 20px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    border: 2px solid #000000cc;
    transition: 0.3s ease-in-out;
}
.top-movie .top-movie-main .buttons button:is(:hover,:focus) {
    color: #e2d703;
    text-shadow: 0 3px 25px hsl(57deg 97% 45% / 50%);
}

.top-movie .top-movie-main .buttons button.active {
    color: #e2d703;
    text-shadow: 0 3px 25px hsl(57deg 97% 45% / 50%);
}
.same .wrapper{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    justify-content: center;
    row-gap: 50px;
    column-gap: 30px;
    margin-top: 3rem;
}
.same .wrapper .card{
    width: 100%;
}
.movie-card .card .img img{
    width: 100%;
    object-fit: cover;
    border-radius: 6px;
}
.movie-card .card .title{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
    width: 100%;
}
.movie-card .card .title a{
    color: #fff;
    text-decoration: none;
    transition: 0.3s ease-in-out;
}
.movie-card .card .title a:hover{
    color: #e2d703;
}
.movie-card .card .title span{
    color: #e2d703;
    font-weight: 600;
    font-size: 14px;
}
.movie-card .card .footer{
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
}
.movie-card .card .footer span{
    color: #e2d703;
    padding: 3px 10px;
    border: 2px solid #fff;
    font-size: 12px;
    font-weight: 600;

}
.movie-card .card .footer .time-rating span{
    color: #fff;
    padding: 0px;
    border: none;
}
.movie-card .card .footer .time-rating i{
    color: #e2d703;
    margin-right: 0.3rem;
}

.tv-series{
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url(../images/tv-series-bg.jpg) no-repeat;
    background-size: cover;
    padding: 100px 30px;
}

.recommendations{
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url(../images/top-rated-bg.jpg) no-repeat;
    background-size: cover;
    padding: 100px 30px;
}

.trending{
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url(../images/service-bg.jpg) no-repeat;
    background-size: cover;
    padding: 100px 30px;
}

.trial{
    background: url(../images/cta-bg.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    padding: 50px 30px;
}
.trial .main{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.trial .content h4{
    font-size: 30px;
    text-transform: uppercase;
}
.trial .content p{
    font-size: 15px;
    font-weight: 500;
}
.trial .form .input{
    background-color: #fff;
    width: 400px;
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 5px;
    border-radius: 5px;
}
.trial .form .input input{
    width: calc(100%/2);
    height: 40px;
    padding: 0px 10px;
    border: none;
    outline: none;
    font-size: 14px;
    font-weight: 500;
}
.trial .form button{
    text-transform: uppercase;
    font-size: 15px;
    padding: 10px 18px;
    background-color: #0a0f0f;
    color: #e2d703;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}
.trial .form button:hover{
    color: #0a0f0f;
    border: 2px solid #0a0f0f;
    background-color: #e2d703;
}

footer .footer-top{
    background: url(../images/footer-bg.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    padding: 100px 30px;
}

.footer-top nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-top nav ul{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}
.footer-top nav ul li{
    list-style: none;
}
.footer-top ul li a{
    text-decoration: none;
    color: #cecaca;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    transition: 0.3s ease-in-out;
}
.footer-top ul li a:hover{
    color: #e2d703;
}
.footer-top hr{
    height: 4px;
    margin-block: 40px;
    border: none;
    border-top: 1px solid #11141d;
    border-bottom: 1px solid #ffffff1a;
}
.footer-top .links{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-top .links .text-links{
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-top .text-links a{
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 13px;
    color: #cecaca;
    transition: 0.3s ease-in-out;
}
.footer-top .text-links a:hover{
    color: #e2d703;
}
.footer-top .social-links{
    display: flex;
    gap: 1rem;
}
.footer-top .social-links a{
    color: #cecaca;
    background-color: #11141d;
    padding: 10px 13px;
    font-size: 12px;
    border-radius: 50%;
    transition: 0.3s ease-in-out;
}
.footer-top .social-links a:hover{
    color: #e2d703;
}
.footer-bottom{
    background-color: #171d21;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
}
.footer-bottom .copyright p{
    color: #cecaca;
    font-size: 13px;
    font-weight: 500;
}
.footer-bottom .copyright a{
    color: #e2d703;
    text-decoration: none;
}
.back-to-top{
    position: fixed;
    opacity: 0;
    bottom: 20px;
    right: 20px;
    z-index: 2;
    background-color: #e2d703;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    padding: 15px;
}
.back-to-top.show {
    opacity: 1;
    transition: opacity 1s, transform 1s;
}

/* Profile Modal */
.profile-modal {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #141414;
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.profile-modal-content {
    text-align: center;
    color: #fff;
}

.profile-modal-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.profiles {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.profile:hover {
    transform: scale(1.1);
}

.profile img {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.profile p {
    font-size: 1.2rem;
    margin: 0;
}

.add-profile {
    border: 2px dashed #666;
    width: 100px;
    height: 100px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
}

.add-profile i {
    font-size: 2rem;
    color: #666;
}

.manage-profiles-btn {
    background: transparent;
    border: 1px solid #666;
    color: #666;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.manage-profiles-btn:hover {
    border-color: #fff;
    color: #fff;
}

/* Background scrolling animation for cards */
@keyframes bg-scroll {
    to {
        background-position-y: var(--bg-pos-y--end);
    }
}

@media only screen and (max-width: 909px){
    .hamburger{
        display: flex;
    }
    .navbar .nav-list{
        position: fixed;
        right: -100%;
        top: 0;
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
        background-color: #171d21;
        width: 100%;
        max-width: 300px;
        height: 100vh;
        transition: 0.3s;
        z-index: 4;
        padding-top: 1rem;
    }
    .nav-list li{
        width: 100%;
        border-bottom: 1px solid hsla(0, 0%, 100%, 0.1);
        padding: 0px 25px 20px 20px;
    }
    .nav-list .home{
        margin-top: 1rem;
        border-top: 1px solid hsla(0, 0%, 100%, 0.1);
        padding-top: 15px;
    }
    .nav-list .btn{
        margin: 20px 20px;
    }
    .nav-list.active{
        right: 0;
    }
    .nav-list.active .logo{
        display: flex;
        width: inherit;
    }
    .hero{
        background-position: center;
    }
    .hero .content{
        max-width: max-content!important;
    }
    .hero .content p{
        font-size: 24px;
    }
    .hero .content h1{
        font-size: 42px;
    }
    .hero .content .badge span{
        font-size: 11px;
    }
    .hero .content .genre a{
        font-size: 14px;
    }
    .upcoming-movie .header{
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        align-items: center;
    }
    .service .main{
        flex-direction: column;
        gap: 2rem;
    }
    .service img{
        max-width: max-content;
    }
    .service .content{
        width: 80%;
    }
    .trial .main{
        justify-content: center;
        gap: 2rem;
    }
    .trial .content{
        text-align: center;
    }
    .movie-detail .main{
        flex-direction: column;
    }
}
@media only screen and (max-width: 767px){
    .upcoming-movie .wrapper .movie-carousel{
        grid-auto-columns: calc((100% / 2) - 15px);
    }
    .same .wrapper{
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-top nav,.footer-top .links,.footer-bottom{
        flex-direction: column;
        gap: 2rem;
    }
    .footer-top nav ul,.footer-top .links .text-links{
        justify-content: center;
    }
}
@media only screen and (max-width: 549px){
    .hero .content h1{
        font-size: 36px;
    }
    .upcoming-movie .header .subtitle h4,.service .content h4,.top-movie .header h4,.tv-series .header h4{
        font-size: 32px;
    }
    .upcoming-movie .wrapper .movie-carousel{
        grid-auto-columns: calc((100%) - 15px);
    }
    .same .wrapper{
        grid-template-columns: repeat(1, 1fr);
    }
    .service .content{
        width: 90%;
    }
    .service .service-card{
        flex-direction: column;
        align-items: flex-start!important;
    }
}
@media only screen and (max-width: 450px){
    .trial .form .input{
        width: 350px;
    }
}
@media (min-width: 1200px){
    .upcoming-movie .wrapper .movie-carousel{
        grid-auto-columns: calc((100%/4) - 15px);
    }
    .same .wrapper{
        grid-template-columns: repeat(4, 1fr);
    }
    
}