* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: Arial, Helvetica, sans-serif;
    background-color: rgb(35, 24, 24);
}
html{
    scroll-behavior: smooth;
}
header{
    top: 0;
    width: 100%;
    position: fixed;
    background-color: transparent;
    z-index: 100;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid dimgray;
    padding: 1rem 2rem;
   
}
nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1440px;
    margin: 0 auto;
}
.logo{
    display: flex;
    align-items: center;
}
.logo img{
    height: 35px;
}

.nav-link{
    display: flex;
    gap: 5px;
    background-color: black;
    padding:15px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 126, 126, 0.5);

}
.nav-link a{
    text-decoration: none;
    text-transform: capitalize;
    color: white;
    font-size: 1rem;
    transition: all 0.3s;
    padding: 0.3rem 0.5rem;
    
}
.nav-link a:hover{
    background-color: rgb(51, 24, 24);
    border-radius: 8px;

   
}
.nav-link a.active{
    background-color: rgb(73, 54, 54);
}
.nav-icon{
    display: flex;
    align-items: center;
    gap: 10px;
}
.icon-btn{
    background:none;
    border: none;
    color: rgb(121, 115, 126);
    font-size: 1rem;
    cursor: pointer;
    transition: color 0.3;
    width: 20px;
    height: 20px;
  border-radius: 50%;
}
.icon-btn:hover{
    background-color: cadetblue;
    color: brown;
}


.hero{
    position: relative;
    padding: 0;
    overflow: hidden;
    padding-top: 100px;
    min-height: 100vh;
    background-image: url(img2/hero.png);
   background-size: cover;
   background-position: center;
   color: wheat;
  display: flex;
  align-items: flex-end;
  
   
}
.hero::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.9)100% );
    z-index: 1;
}
.hero-content{
    position: relative;
    z-index: 2;
    
    margin: 0 auto;
    text-align: center;
    padding-top: 0;
}
.hero-content h1{
  font-size: 3rem;
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.hero-content p{
    color: antiquewhite;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
      margin-bottom: 1rem;
}
.youtube{
    background-color: #E50000;
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
    transition: background-color 0.3s;
      margin-bottom: 3rem;
}
.youtube:hover{
    background-color: #6e0505;
}

.categories{
    width: 100%;
    margin: 0 auto;
    padding: 4rem;
    background-color: #141414;

}
.categories-header{
    margin-bottom: 2rem;
    display: flex;
    flex-direction:row;
    justify-content: space-between;
    
    gap: 1rem;
    position: relative;
    

}

.categories-header h2{
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
}
.categories-header p{
    color: #999;
    font-size: 1rem;
    padding-bottom: 1rem;
   
}

.categories-nav{
    position: relative;
    right: 0;
    top: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-btn{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background-color: darkslategray;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}
.nav-btn:hover{
    background-color: #472e2e;
}
.nav-indicator{
    display: flex;
    gap: 0.5rem;
    
}
.indicator{
    width: 24px;
    height: 4px;
    background-color: #E50000;
    border-radius: 2px;
}
.indicator.active{
    background-color: #6e0505;
}

.category-grid{
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 1.5rem;
}
.category-card{
    background-color: #472e2e;
    border-radius: 12px;
    overflow: hidden;
    transition:transform 0.3s;
}

.category-card:hover{
    transform: translateY(-5px);
}
.movie-poster{
    padding: 10px;

}
.movie-poster img{
    width:100%;
    height: 250px;
    object-fit: cover;
   
    border-radius: 8px;
}
.category-titel{
    display: flex;
    justify-content:space-around;
    align-items: center;
    padding: 0.5rem;
    font-size: 13px;
    color: white;
}
.category-titel i{
    cursor: pointer;
}

.devices{
    width: 100%;
    margin: 0 auto;
    padding: 3rem;
    background-color: #141414;
    color: white;
}
.devices-header{
    margin-bottom: 2rem;
    width: 80%;
    margin: 0 auto;
}
.devices-header h2{
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.devices-header p{
    color: #999;
    font-size: 1rem;
    line-height: 1.5;
    padding-bottom: 3rem;
}
.devices-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 80%;
    margin: 0 auto;
    justify-content: center;
}
.devices-card{
    background:linear-gradient(135deg, rgba(255, 0, 0, 0.3),transparent);
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.3s;
    border: 1px solid rgba(255, 0, 0, 0.1);
}
.devices-card:hover{
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.2),transparent);
    border: 1px solid rgba(255, 0, 0, 0.2);
}
.devices-icon{
    width: 45px;
    height: 45px;
    background-color:#ff0000 ;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
 
.devices-icon i{
    font-size: 1.5rem;
    color: white;

}
.devices-card h3{
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.devices-card p{
    color: #999;
    font-size: 1rem;
    line-height: 1.6;
}


.faq{
    width: 80%;
    margin: 0 auto;
    padding: 3rem 2rem;
    color: white;

}

.faq-header{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
}
.faq-text h2{
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.faq-text p{
    color: dimgray;
    font-size: 1rem;
    max-width: 600px;
}
.ask-question{
    background-color: #E50000;
    border: none;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}
.ask-question:hover{
    background-color: #6e0505;
}
.faq-grid{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item{
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
}
.faq-question{
    display: flex;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.05);
    transition: background-color 0.3s;
}

.faq-question:hover{
    background:rgba(255, 255, 255, 0.01);
}
.question-nuber{
    color: #999;
    font-size: 1rem;
    margin-right: 1rem;
    font-weight: 500;
}
.faq-question h3{
    flex: 1;
    font-size: 1rem;
    font-weight: 500;
}
.faq-question.active i{
   transform: rotate(45deg);
}
.faq-ans{
    max-height: 0;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.02);
    transition: max-height 0.3s ease-out;
  
   
}
.faq-ans p{
      color: #999;
      line-height: 1.6;
      padding: 1.5rem;
}

.subscription{
 width: 74%;
 margin: 0 auto;
 padding: 3rem 1rem;
 margin-bottom: 5rem;
 color: white;

}

.subscription-header{
    text-align: center;
    margin-bottom: 3rem;
}

.subscription-header h2{
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    

}
.subscription-header p{
    color: #999;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}
.plan-btn{
    display: inline-flex;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem;
    border-radius: 8px;
    gap: 0.5rem;
}

.toggle-btn{
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    color: #999;
    background: none;
    cursor: pointer;
}

.toggle-btn.active{
    background-color: #E50000;
    color: white;
}
.plan-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
   

}

.plan-card{
  
    background:linear-gradient(135deg, rgba(255, 0, 0, 0.3),transparent);
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.3s;
    border: 1px solid rgba(255, 0, 0, 0.1);
}
.plan-card:hover{
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.2),transparent);
    border: 1px solid rgba(255, 0, 0, 0.2);
}

.plan-content h3{
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.plan-content p{
    color: #999;
    font-size: 0.9rem;
    line-height: 1.6;
    min-height: 70px;
    margin-bottom: 2rem;

}
.price{
    margin-bottom: 1.5rem;
    
}

.ammount{
    font-size: 1.7rem;
    font-weight: 700;
    color: white;
   
}
.period{
    color: #999;
    font-size: 1rem;
}
.plan-button{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.btn-trial{
    background:none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.5rem;
    border-radius: 8px;
    cursor: pointer;

}
.btn-trial:hover{
    background: rgba(255, 255, 255, 0.1);
}
.btn-choose{
    background-color: #E50000;
    border: none;
    color: white;
    padding: 0.3rem;
    cursor: pointer;
    border-radius: 8px;
}
.btn-choose:hover{
    background: #6e0505;
}

.free-trail{
    width: 74%;
    margin: 0 auto;
    padding: 3rem;
    background-image: url(img2/last.png);
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(133, 126, 126, 0.1);
    color: white;
}

.free-trail::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    
    
}
.trail-content{
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.trail-content h2{
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.trail-content p{
    color: #999;
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}
.trail-btn{
    background-color: #E50000;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}
.trail-btn:hover{
    background-color: #6e0505;
}

footer{
    background-color: black;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-content{
    width: 90%;
    margin: 0 auto;
    color: white;
}
.footer-links{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
    
}

.footer-col h3{
    text-transform: capitalize;
    margin-bottom: 1.5rem;
}
.footer-col a{
    display: block;
    color: #999;
    text-decoration: none;
    margin-bottom: 1rem;
    font-size: 14px;
}

.footer-col a:hover{
    color: white;
}
.social-link{
    display: flex;
    gap: 1rem;
}
.social-link a{
    width: 30px;
    height: 30px;
    border-radius: 5px;
    background: rgba(255, 126, 126, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}
.social-link a:hover{
    background-color: violet;
}

.footer-bottom{
    padding-top: 2rem;
    border-top: 1px solid rgb(255, 255, 255, 0.5);
    display: flex;
    color: white;
    justify-content: space-around;
    align-content: center;
}
.footer-legal{
    display: flex;
    gap: 1rem;
}
.footer-legal a{
    color: #999;
    text-decoration: none;
    font-size: 14px;
}

.footer-legal a:hover{
    color: white;
}



/* responsive*/
@media (max-width: 480px) {
    .nav-link{
        display: none;
    }
    .logo img{
        margin-left: -20px;
    }
    .nav-icon{
        margin-right: 20px;
        display: flex;
        gap: 40px;
        align-items: center;
        justify-content: center;
    }
    .hero-content{
        margin-top: 2.5rem;
    }

    .categories{
        width: 100%;
        padding: 2rem;
    }
    .category-grid{
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;

    }

    .movie-poster{
        padding: 1rem;
    }
    .movie-poster img{
        width: 100%;
        height: auto;
    }

    .devices{
        width: 100%;
        padding: 2.5rem;

    }
    .devices-grid{
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        width: 100%;
    }
    .devices-card{
        padding: 1rem;
    }
    .faq{
        padding: 2.5rem;
        width: 100%;

    }
   .subscription{
    width: 80%;
    padding: 3rem 0;
   }
   
   .plan-grid{
    grid-template-columns: repeat(1, 1fr);
   }

   .footer-content{
    width: 80%;
    margin: 0 auto;
   }
   .footer-links{
    grid-template-columns: repeat(2, 1fr);
   }

   .footer-legal{
    display: none;
   }

    
}
