
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, Helvetica, sans-serif;
}

body{
  background:#020814;
  color:#fff;
}

a{
  text-decoration:none;
  color:inherit;
}

.container{
  width:94%;
  max-width:1400px;
  margin:0 auto;
}

.header{
  position:relative;
  background:#030914;
  border-bottom:1px solid #0b2548;
  padding:18px 0;
  z-index:999;
}

.header-content{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo img{
  width:100px;
}


.nav-menu{
  display:flex;
  align-items:center;
  gap:34px;
  font-size:15px;
  font-weight:bold;
}

.nav-menu a{
  transition:.3s;
}

.nav-menu a:hover{
  color:#168cff;
}

.btn-login{
  border:1px solid #168cff;
  padding:13px 24px;
  border-radius:8px;
  font-weight:bold;
  transition:.3s;
}

.btn-login:hover{
  background:#168cff;
}

.menu-toggle{
  width:48px;
  height:48px;
  border:none;
  background:none;
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:6px;
  cursor:pointer;
  z-index:1002;
}

.menu-toggle span{
  width:28px;
  height:3px;
  background:#fff;
  border-radius:10px;
  transition:.3s;
}

.mobile-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.35);
  backdrop-filter:blur(6px);

  opacity:0;
  visibility:hidden;
  transition:.4s;

  z-index:998;
}

.mobile-overlay.active{
  opacity:1;
  visibility:visible;
}

.mobile-menu{
  position:fixed;
  top:0;
  right:-100%;

  width:50%;
  max-width:320px;
  height:100vh;

  background:
    linear-gradient(180deg,#031126,#020814);

  border-left:1px solid #0d376b;

  padding:110px 30px 40px;

  display:flex;
  flex-direction:column;
  justify-content:space-between;

  transition:.45s ease;

  z-index:1001;
}

.mobile-menu.active{
  right:0;
}

.mobile-nav{
  display:flex;
  flex-direction:column;
  gap:24px;
}

.mobile-nav a{
  font-size:18px;
  font-weight:600;
  color:#fff;
  transition:.3s;
}

.mobile-nav a:hover{
  color:#168cff;
}

.mobile-btn{
  width:100%;

  border:1px solid #168cff;
  color:#fff;

  padding:16px;
  border-radius:10px;

  font-weight:bold;
  font-size:16px;
  text-align:center;

  transition:.3s;
}

.mobile-btn:hover{
  background:#168cff;
}

@media(max-width:1000px){

  .nav-menu,
  .btn-login{
    display:none;
  }

  .menu-toggle{
    display:flex;
  }

  .logo img{
    width:100px;
  }

}

@media(max-width:600px){

  .mobile-menu{
    width:72%;
  }

}


.products-page{
  padding:120px 6% 70px;
}


.products-title{
  text-align:center;
  margin-bottom:60px;
}

.products-title h1{
  font-size:48px;
  font-weight:800;
  color:#fff;
}


.products-category{
  margin-bottom:70px;
}

.products-category h2{
  font-size:32px;
  margin-bottom:30px;
  color:#fff;
  position:relative;
  padding-left:18px;
}

.products-category h2::before{
  content:"";
  width:6px;
  height:100%;
  background:#168cff;
  position:absolute;
  left:0;
  top:0;
  border-radius:10px;
}

.products-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}


.product-card{
  background:#041225;
  border:1px solid #0d376b;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 0 18px rgba(0,132,255,0.08);
  transition:.35s;
}

.product-card:hover{
  transform:translateY(-7px);
  box-shadow:0 0 28px rgba(0,132,255,0.18);
}


.product-image{
  height:170px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.product-image img{
  width:170px;
  object-fit:contain;
  transition:.35s;
}

.product-card:hover .product-image img{
  transform:scale(1.08);
}

.netflix{
  background:linear-gradient(135deg,#140000,#6e0000);
}

.disney{
  background:linear-gradient(135deg,#00143a,#002a68);
}

.spotify{
  background:linear-gradient(135deg,#002b16,#003f20);
}

.hbo{
  background:linear-gradient(135deg,#120022,#3b075e);
}

.amazon{
  background:linear-gradient(135deg,#00141f,#003b57);
}

.youtube{
  background:#ffffff;
}

.crunchyroll{
  background:linear-gradient(135deg,#2b1600,#ff7b00);
}

.xbox{
  background:linear-gradient(135deg,#001b0d,#107c10);
}

.psplus{
  background:linear-gradient(135deg,#00153d,#005eff);
}

.canva{
  background:linear-gradient(135deg,#e2dfdf,#fff);
}

.capcut{
  background:#000;
}

.chatgpt{
  background:linear-gradient(135deg,#fff,#fff);
}

.gemini{
  background:linear-gradient(135deg,#ffffff,#fff);
}

.elevenlabs{
  background:#fff;
}

.product-info{
  padding:20px;
}

.product-badge{
  background:#087bff;
  padding:7px 12px;
  border-radius:6px;
  font-size:13px;
  font-weight:bold;
  display:inline-block;
  margin-bottom:14px;
}

.product-info h3{
  font-size:20px;
  margin-bottom:10px;
  color:#fff;
}

.product-category-text{
  color:#9fb3c8;
  font-size:14px;
  margin-bottom:14px;
}

.product-price{
  font-size:24px;
  color:#00a2ff;
  font-weight:bold;
  margin-bottom:18px;
}

.btn-buy{
  display:block;
  text-align:center;
  background:#087bff;
  padding:14px;
  border-radius:8px;
  font-weight:bold;
  transition:.3s;
  color:#fff;
}

.btn-buy:hover{
  background:#0067d8;
}


@media(max-width:1200px){

  .products-grid{
    grid-template-columns:repeat(3,1fr);
  }

}

@media(max-width:900px){

  .products-title h1{
    font-size:38px;
  }

  .products-category h2{
    font-size:28px;
  }

  .products-grid{
    grid-template-columns:repeat(2,1fr);
  }

}

@media(max-width:768px){

  .products-page{
    padding:100px 5% 50px;
  }

  .products-title{
    margin-bottom:45px;
  }

  .products-title h1{
    font-size:32px;
  }

  .products-category{
    margin-bottom:50px;
  }

  .products-category h2{
    font-size:24px;
    margin-bottom:22px;
  }

  .products-grid{
    grid-template-columns:1fr;
    gap:18px;
  }

  .product-image{
    height:190px;
  }

  .product-image img{
    width:190px;
  }

  .product-info{
    padding:18px;
  }

  .product-info h3{
    font-size:18px;
  }

  .product-price{
    font-size:22px;
  }

}


.footer{
  position:relative;
  margin-top:80px;
  padding:75px 0 25px;

  background:
  linear-gradient(180deg,#041225 0%, #020814 100%);

  border-top:1px solid rgba(22,140,255,0.18);

  overflow:hidden;
}


.footer::before{
  content:"";
  position:absolute;
  width:350px;
  height:350px;

  background:rgba(0,132,255,0.10);

  filter:blur(120px);

  top:-120px;
  right:-120px;

  border-radius:50%;
}

.footer-grid{
  position:relative;
  z-index:2;

  display:grid;

  grid-template-columns:
  1.6fr
  1fr
  1fr
  1.3fr;

  gap:55px;
}

.footer-brand img{
  width: 150px;
  margin-bottom:20px;
}

.footer-brand p{
  color:#b7c8dc;
  line-height:1.7;
  margin-bottom:10px;
  font-size:15px;
  max-width:280px;
}

.footer h4{
  color:#fff;
  font-size:20px;
  margin-bottom:24px;
  font-weight:700;
  position:relative;
}

.footer h4::after{
  content:"";
  width:45px;
  height:3px;

  background:#168cff;

  position:absolute;
  left:0;
  bottom:-10px;

  border-radius:10px;
}

.footer-links{
  display:flex;
  flex-direction:column;
}

.footer-links a{
  color:#b7c8dc;
  text-decoration:none;
  margin-bottom:14px;
  transition:.3s;
  width:fit-content;
  font-size:15px;
}

.footer-links a:hover{
  color:#168cff;
  transform:translateX(4px);
}

.footer-contact p{
  color:#b7c8dc;
  margin-bottom:14px;
  font-size:15px;
  line-height:1.6;
}

.payments-list{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.payment-item{
  min-width:72px;
  height:42px;

  display:flex;
  align-items:center;
  justify-content:center;

  background:rgba(255,255,255,0.08);

  border:1px solid rgba(255,255,255,0.08);

  backdrop-filter:blur(10px);

  border-radius:12px;

  color:#fff;

  font-size:13px;
  font-weight:700;

  transition:.3s;
}

.payment-item:hover{
  border-color:#168cff;

  transform:translateY(-3px);

  box-shadow:
  0 0 18px rgba(0,132,255,0.18);
}

.footer-copy{
  position:relative;
  z-index:2;

  text-align:center;

  margin-top:60px;

  padding-top:25px;

  border-top:1px solid rgba(255,255,255,0.06);

  color:#7e95b1;

  font-size:14px;
}

@media(max-width:1100px){

  .footer-grid{
    grid-template-columns:repeat(2,1fr);
    gap:45px;
  }

}

@media(max-width:768px){

  .footer{
    margin-top:60px;
    padding:60px 0 20px;
  }

  .footer-grid{
    grid-template-columns:1fr;
    gap:38px;
  }

  .footer-brand{
    text-align:center;
  }

  .footer-brand img{
    width:180px;
    margin:0 auto 18px;
    display:block;
  }

  .footer-brand p{
    max-width:100%;
    font-size:14px;
  }

  .footer h4{
    font-size:18px;
    margin-bottom:22px;
  }

  .footer h4::after{
    width:38px;
  }

  .footer-links a,
  .footer-contact p{
    font-size:14px;
  }

  .payments-list{
    gap:10px;
  }

  .payment-item{
    min-width:68px;
    height:40px;
    font-size:12px;
  }

  .footer-copy{
    margin-top:45px;
    padding-top:20px;
    font-size:13px;
  }

}