*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: "Segoe UI", sans-serif;
}

body{
  background:#0c0c0c;
  color:#fff;
  overflow-x:hidden;
}

/* ================= HEADER ================= */
.header{
  width:100%;
  height:80px;
  background:#000;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 30px;
  position:relative;
  z-index:1000;
}

.logo img{
  height:66px;
  width:auto;
  object-fit:contain;
}

.nav{
  display:flex;
  gap:30px;
  align-items:center;
}

.nav a{
  text-decoration:none;
  color:#fff;
  font-weight:600;
  font-size:20px;
  transition:.3s;
}

.nav a:hover{
  color:#ff7a00;
}

.signup-btn{
  background:#ff7a00;
  border:none;
  padding:12px 26px;
  color:#000;
  font-size:18px;
  font-weight:bold;
  border-radius:30px;
  cursor:pointer;
  transition:.3s;
}

.signup-btn:hover{
  background:#ffa94d;
  transform:scale(1.05);
}

.menu-btn{
  width:32px;
  height:24px;
  display:none;
  flex-direction:column;
  justify-content:space-between;
  cursor:pointer;
}

.menu-btn span{
  width:100%;
  height:4px;
  background:#fff;
  border-radius:5px;
  transition:.3s;
}

.menu-btn.active span:nth-child(1){
  transform:rotate(45deg) translateY(10px);
}
.menu-btn.active span:nth-child(2){
  opacity:0;
}
.menu-btn.active span:nth-child(3){
  transform:rotate(-45deg) translateY(-10px);
}

/* ================= MOBILE MENU ================= */
@media(max-width:768px){

  .menu-btn{
    display:flex;
  }

  .nav{
    position:absolute;
    top:80px;
    left:0;
    width:100%;
    background:#000;
    flex-direction:column;
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
  }

  .nav.show{
    max-height:1000px; /* FIX */
  }

  .nav a,
  .signup-btn{
    width:100%;
    padding:19px;
    text-align:center;
    border-bottom:1px solid #222;
    box-sizing:border-box;
    display:block; /* FIX */
  }
}


/* ================= HERO SLIDER ================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, Helvetica, sans-serif;
}

.hero-slider{
  position:relative;
  width:100%;
  height:90vh;
  overflow:hidden;
}

/* SLIDE */
.hero-slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transform:translateX(100%);
  transition:all 1s ease;
}

.hero-slide.active{
  opacity:1;
  transform:translateX(0);
  z-index:2;
}

.hero-slide.prev{
  transform:translateX(-100%);
  opacity:0;
}

/* DARK OVERLAY */
.hero-slide::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(22, 22, 22, 0.55);
}

/* CONTENT */
.hero-content{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  text-align:center;
  color:#fff;
  z-index:3;
  padding:20px;
}

.hero-content span{
  font-size:18px;
  letter-spacing:2px;
}

.hero-content h1{
  font-size:60px;
  margin:15px 0;
}

/* BUTTON */
.hero-btn{
  background:#ff7a00;
  color:#fff;
  border:none;
  padding:14px 36px;
  border-radius:30px;
  font-size:16px;
  cursor:pointer;
  transition:0.3s;
}

.hero-btn:hover{
  background:#ff9a3c;
}

/* ARROWS */
.hero-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:48px;
  height:48px;
  border-radius:50%;
  background:rgba(0,0,0,0.6);
  color:#fff;
  border:none;
  font-size:24px;
  cursor:pointer;
  z-index:10;
}

.hero-arrow.left{ left:20px; }
.hero-arrow.right{ right:20px; }

/* ---------- TABLET ---------- */
@media(max-width:1024px){
  .hero-slider{ height:70vh; }
  .hero-content h1{ font-size:44px; }
}

/* ---------- MOBILE ---------- */
@media(max-width:768px){
  .hero-slider{ height:60vh; }

  .hero-content span{
    font-size:14px;
  }

  .hero-content h1{
    font-size:30px;
  }

  .hero-btn{
    padding:10px 26px;
    font-size:14px;
  }

  .hero-arrow{
    width:40px;
    height:40px;
    font-size:20px;
  }
}

/* ---------- SMALL MOBILE ---------- */
@media(max-width:500px){
  .hero-content h1{
    font-size:24px;
  }
}

/* ================= FEATURE SLIDER ================= */
.feature-slider{
  overflow:hidden;
  background:#0b0b0b;
  padding:25px 0;
  border-top:1px solid #222;
  border-bottom:1px solid #222;
}

.slider-track{
  display:flex;
  width:200%;
  animation:slideRight 35s linear infinite;
}

@keyframes slideRight{
  0%{ transform:translateX(-50%); }
  100%{ transform:translateX(0); }
}

.feature-item{
  width:25%;
  display:flex;
  align-items:center;
  gap:15px;
  padding:15px 30px;
  border-right:1px solid #222;
  cursor:pointer;
  transition:0.3s ease;
  background:transparent;
}

.feature-item i{
  font-size:30px;
  color:#fff;
  transition:0.3s ease;
}

.feature-item h4{
  font-size:16px;
  color:#fff;
  transition:0.3s ease;
}

.feature-item p{
  font-size:13px;
  color:#aaa;
  transition:0.3s ease;
}

/* ORANGE HOVER / TOUCH */
.feature-item:hover,
.feature-item:active{
  background:rgba(255,122,0,0.18);
}

.feature-item:hover i,
.feature-item:active i,
.feature-item:hover h4,
.feature-item:active h4{
  color:#ff7a00;
}

.feature-item:hover p,
.feature-item:active p{
  color:#ffd2a6;
}

/* PAUSE ON HOVER SLIDER */
.feature-slider:hover .slider-track{
  animation-play-state: paused;
}

/* ================= PRODUCTS ================= */
.products{
  padding:80px 6%;
  text-align:center;
}

.section-title{
  font-size:42px;
  margin-bottom:10px;
  text-shadow:0 0 7px #ff7a00;
}

.title-line{
  display:block;
  width:100px;
  height:5px;
  background:#ff7a00;
  margin:12px auto 45px;
  border-radius:10px;
  box-shadow:0 0 10px rgba(255,122,0,0.7);
}

.product-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:35px;
}

.product-card{
  background:#1e1e1e;
  padding:25px;
  border-radius:16px;
  position:relative;
  transition:.4s;
}

.product-card:hover{
  transform:translateY(-12px);
  box-shadow:0 15px 40px rgba(255,122,0,0.3);
}

.product-card img{
  width:200px;
  height:200px;
  object-fit:contain;
  margin-bottom:5px;
}

.product-card h3{
  font-size:20px;
  margin-bottom:8px;
}

.desc{
  font-size:14px;
  color:#bbb;
  line-height:1.6;
  max-height:3.2em;
  overflow:hidden;
  transition:max-height .4s ease;
}

.desc.expanded{
  max-height:200px;
}

.read-more-btn{
  margin-top:12px;
  background:#ff7a00;
  border:none;
  padding:8px 18px;
  border-radius:20px;
  font-size:13px;
  font-weight:600;
  cursor:pointer;
  transition:.3s;
}

.read-more-btn:hover{
  background:#ffa94d;
  transform:scale(1.05);
}

/* ===============================
  VIEW ALL GAMES BUTTON
================================ */
.view-btn {
  display: block;
  width: fit-content;
  margin: -20px auto;
  padding: 12px 28px;
  background: linear-gradient(135deg, #ff7a18, #ff9a1f);
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  transition: 0.3s ease;
  box-shadow: 0 4px 12px rgba(255,122,24,0.4);
  text-align: center;
}

/* hover effect */
.view-btn:hover {
  background: linear-gradient(135deg, #ff9a1f, #ff7a18);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255,122,24,0.6);
}


/* ===================== TESTIMONIAL SLIDER ===================== */
.testimonial-slider {
    position: relative;
    width: 100%;           /* increased width from 50% */
    max-width: 1700px;    /* max width */
    height: 80vh;
    margin: 50px auto;    /* auto left/right to center, top margin to adjust position */
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.6); /* optional shadow */
    background: #161616;
    transition: all 0.5s ease;
}



/* SLIDES */
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05); 
  transition: all 1s ease;
  border-radius: 25px;
  filter: brightness(0.70);
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
  filter: brightness(1);
}

/* OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(48, 47, 47, 0.6), rgba(0,0,0,0.3));
  border-radius: 25px;
}

/* CONTENT */
.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  width: 100%;           /* increased from 80% to 95% */
  max-width: 1800px;    /* increased max-width */
  height: 50%;  
  z-index: 3;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  text-shadow: 0 0 10px rgba(0,0,0,0.6);
}

/* Active slide zoom effect */
.slide.active .content {
  transform: translate(-50%, -50%) scale(1.05);
  box-shadow: 0 0 40px rgba(255,165,0,0.5); 
}

.slide.active .content {
  transform: translate(-50%, -50%) scale(1.05);
  box-shadow: 0 0 40px rgb(255, 94, 0); /* soft glow */
}

.profile {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 5px solid rgb(255, 94, 0);
  margin-bottom: 20px;
  margin-top: 40px; /* Add margin-top to push it down */
  transition: transform 0.3s ease, box-shadow 0.5s ease;
  box-shadow: 0 0 20px rgba(255,165,0,0.4);
}

.profile:hover {
  transform: scale(1.15);
  box-shadow: 0 0 40px rgb(255, 94, 0);
}

.content h3 {
  font-size: 28px;
  margin-bottom: 5px;
  text-shadow: 0 0 8px rgba(36, 35, 35, 0.7);
}

.content span {
  color: rgb(255, 94, 0);
  font-size: 16px;
  text-shadow: 0 0 5px rgba(0,0,0,0.7);
}

.content p {
  margin-top: 15px;
  color: #fff;
  line-height: 1.8;
  font-size: 18px;
  text-shadow: 0 0 6px rgba(29, 29, 29, 0.582);
}

/* DOTS */
.dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 14px;
  z-index: 5;
}

.dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #aaa;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 5px rgba(255,165,0,0.3);
}

.dot:hover {
  background: rgb(255, 94, 0);
  transform: scale(1.7);
  box-shadow: 0 0 15px rgb(255, 94, 0);
}

.dot.active {
  background: rgb(255, 94, 0);
  transform: scale(1.8);
  box-shadow: 0 0 25px rgb(255, 94, 0);
}

/* RESPONSIVE */
@media(max-width:1024px){
  .testimonial-slider {
    max-width: 85%;
  }
  .content {
    width: 80%;
  }
  .profile {
    width: 100px;
    height: 100px;
  }
  .content h3 {
    font-size: 24px;
  }
  .content p {
    font-size: 16px;
  }
}

@media(max-width:768px){
  .testimonial-slider {
    height: 70vh;
  }
  .content {
    width: 90%;
  }
  .profile {
    width: 80px;
    height: 80px;
  }
  .content h3 {
    font-size: 18px;
  }
  .content p {
    font-size: 14px;
  }
}


/* BIG BANNER SECTION */
.big-banner{
  width:100%;
  max-width:1400px;
  min-height:450px; 
  margin:80px auto;
  padding:50px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
  background:#292828;
  border-radius:20px;
  box-shadow:0 10px 25px rgba(206, 88, 10, 0.719);
  overflow:hidden;
}

/* IMAGE */
.big-banner-img{
  flex:1;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: floatImg 3s ease-in-out infinite;
}

.big-banner-img img{
  width:100%;
  max-width:600px;
  height:auto;
  border-radius:15px;
  object-fit:contain;
}

/* CONTENT */
.big-banner-content{
  flex:1;
}

.big-banner-content h2{
  font-size:42px;
  font-weight:700;
  color:#ff8731;
  margin-bottom:15px;
  letter-spacing:1px;
  text-transform:uppercase;
  text-shadow: 0 0 8px rgba(255,135,49,0.7);
}

.big-banner-content p{
  font-size:16px;
  line-height:1.6;
  color:#ffffff;
  margin-bottom:20px;
}

.download-btn{
  display:inline-block;   
  padding:12px 28px;
  border:none;
  border-radius:30px;
  background:#ff6a00;
  color:#fff;
  font-size:16px;
  cursor:pointer;
  text-decoration:none;  
  transition:0.3s;
}

.download-btn:hover{
  background:#000;
}

/* IMAGE ANIMATION */
@keyframes floatImg{
  0%{ transform:translateY(0px); }
  50%{ transform:translateY(-10px); }
  100%{ transform:translateY(0px); }
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media(max-width: 900px){
  .big-banner{
    flex-direction:column;
    padding:30px 20px;
    height:auto;
    text-align:center;
  }

  .big-banner-img img{
    max-width:450px;
  }

  .big-banner-content h2{
    font-size:30px;
  }

  .big-banner-content p{
    font-size:15px;
  }
}

/* Mobile */
@media(max-width: 500px){
  .big-banner{
    margin:40px 10px;
    padding:20px 15px;
    border-radius:15px;
  }

  .big-banner-img img{
    max-width:100%;
  }

  .big-banner-content h2{
    font-size:22px;
  }

  .big-banner-content p{
    font-size:14px;
  }

  .download-btn{
    padding:10px 20px;
    font-size:14px;
  }
}

/* FOOTER */

.footer-overlay{
  background:linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.7));
  padding:47px 44px 25px;
}

.footer-container{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:50px;
}

.footer-box h3{
  margin-bottom:18px;
  font-size:18px;
  color:#ff7a18;
  text-transform:uppercase;
  letter-spacing:1px;
  position:relative;
}

.footer-box h3::after{
  content:"";
  width:40px;
  height:3px;
  background:#ff7a18;
  position:absolute;
  left:0;
  bottom:-6px;
}

.footer-box p,
.footer-box a{
  color:#ccc;
  font-size:14px;
  text-decoration:none;
  line-height:1.8;
  transition:0.3s;
}

.footer-box ul{
  list-style:none;
}

.footer-box ul li{
  margin-bottom:10px;
}

.footer-box a:hover{
  color:#ff7a18;
  padding-left:6px;
}

.newsletter{
  display:flex;
  margin-top:12px;
  border-radius:30px;
  overflow:hidden;
  box-shadow:0 0 12px rgba(255,122,24,0.4);
}

.newsletter input{
  flex:1;
  padding:10px 15px;
  border:none;
  outline:none;
  font-size:14px;
}

.newsletter button{
  background:#ff7a18;
  border:none;
  padding:0 18px;
  cursor:pointer;
  color:#000;
  font-size:16px;
  transition:.3s;
}

.newsletter button:hover{
  background:#ffa14a;
}

.social-icons{
  margin-top:18px;
}

.social-icons a{
  display:inline-block;
  width:36px;
  height:36px;
  line-height:36px;
  text-align:center;
  background:#222;
  border-radius:50%;
  margin-right:5px;
  color:#fff;
  font-size:15px;
  transition:.3s;
}

.social-icons a:hover{
  background:#ff7a18;
  transform:translateY(-5px);
  box-shadow:0 0 10px rgba(255,122,24,0.6);
}

.footer-bottom{
  border-top:1px solid #333;
  margin-top:45px;
  padding-top:18px;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  flex-wrap:wrap;
}

.footer-bottom p{
  font-size:15px;
  color:#aaa;
}

.payments img{
  height:26px;
  margin-left:10px;
  filter:brightness(0) invert(1);
  opacity:0.8;
  transition:.3s;
}

.payments img:hover{
  opacity:1;
}

@media(max-width:900px){
  .footer-container{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:500px){
  .footer-container{
    grid-template-columns:1fr;
  }

  .footer-bottom{
    flex-direction:column;
    gap:12px;
    text-align:center;
  }
}

