/* ================= GLOBAL ================= */
*{
  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 */
  }
}


/* Banner Section */
.banner-section {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.banner-section .banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(60%); 
}

.banner-section .banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

/* Section Title same style as existing */
.banner-section .section-title{
  font-size:35px;
  margin-bottom:10px;
  text-align:center;              
  font-weight:800;
  letter-spacing:2px;
  color:hsl(30, 100%, 96%);                  
  text-transform:uppercase;
  text-shadow: 0 0 20px #f77f0f, 0 0 0px #fffbf7;
}

.banner-section .section-title::after{
  content:"";
  width:120px;
  height:4px;
  background:#ff7a00;
  display:block;
  margin:10px auto 0;   
  border-radius:5px;
}

.banner-section p {
  font-size:30px;
  margin-top:15px;
  color: #fff;
  font-style: italic;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
}




/* ================= ABOUT SECTION ================= */
.about-container{
  max-width:1200px;
  margin:50px auto;
  display:flex;
  gap:50px;
  align-items:center;
  flex-wrap:wrap;
}

.about-text{
  flex:1;
}

.about-text h3{
  font-size:28px;
  margin-bottom:15px;
  color:#ff7a00;
  text-shadow: 0 0 10px #ff7a00;
}

.about-text p{
  font-size:16px;
  margin-bottom:15px;
  line-height:1.6;
  color:#fff;
}

.about-text ul{
  list-style:none;
  padding-left:0;
}

.about-text ul li{
  margin-bottom:10px;
  font-size:16px;
}

.about-image{
  flex:1;
  text-align:center;
}

.about-image img{
  max-width:100%;
  border-radius:10px;
  box-shadow: 0 0 10px rgba(255,122,0,0.3),
              0 0 25px rgba(255,122,0,0.2),
              0 0 50px rgba(255,122,0,0.15);
  transition:0.3s;
}

.about-image img:hover{
  transform:scale(1.05);
  box-shadow: 0 0 20px rgba(255,122,0,0.5),
              0 0 40px rgba(255,122,0,0.3);
}

/* MINI PUZZLE TITLE STYLE */
.mini-puzzle-section .section-title{
  text-align: center;
  font-size: 45px;              /* font moto */
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 
    0 0 20px #ff7a00;
}


.mini-puzzle{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
  justify-content:center;
  align-items:center;
}

.emoji-draggable{
  font-size:50px;
  cursor:grab;
  transition:0.3s;
  user-select:none;
}

.emoji-draggable.dragging{
  opacity:0.5;
}

.emoji-dropbox{
  width:150px;
  height:150px;
  border:2px dashed #aaa;
  border-radius:15px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  font-weight:600;
  color:#fff;
  position:relative;
  transition:0.3s;
  background:#222;
}

.emoji-dropbox.hover{
  border-color:#ff7a00;
}

.emoji-dropbox.correct{
  border:3px solid #28a745;
  background-color:#e6ffe6;
  color:#000;
}

.emoji-dropbox.wrong{
  border:3px solid #ff4d4d;
  animation: shake 0.3s;
}

@keyframes shake{
  0%{ transform: translateX(0); }
  25%{ transform: translateX(-5px); }
  50%{ transform: translateX(5px); }
  75%{ transform: translateX(-5px); }
  100%{ transform: translateX(0); }
}
.emoji-dropbox{
  width:150px;
  height:150px;
  border:2px dashed #aaa;
  border-radius:15px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  font-size:18px;
  font-weight:600;
  color:#fff;
  position:relative;
  transition:0.3s;
  background:#222;
}

.emoji-in-box{
  font-size:50px;
  margin-bottom:10px;
  display:block;
}

.box-label{
  font-size:16px;
}


.sparkle{
  position:absolute;
  width:8px;
  height:8px;
  background: gold;
  border-radius:50%;
  box-shadow:0 0 10px gold,0 0 5px yellow;
  animation:sparkleAnim 0.7s forwards;
  pointer-events:none;
}

@keyframes sparkleAnim{
  0%{ transform: scale(0) rotate(0deg); opacity:1; }
  100%{ transform: scale(1.5) rotate(360deg); opacity:0; }
}

/* ================= EMOJI TIMELINE ================= */
.emoji-timeline{
  max-width:1200px;
  margin:80px auto;
  text-align:center;
  padding:20px;
}

.emoji-timeline h2{
  font-size:36px;
  margin-bottom:40px;
  color:white;
  text-shadow: 0 0 10px #ff7a00;
}

.timeline{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:30px;
  flex-wrap:wrap;
}

.timeline-item{
  background:#fff;       /* White background */
  color:#000;            /* Black text */
  padding:30px 25px;     /* Bigger padding */
  border-radius:15px;    /* Rounded corners */
  min-width:180px;       /* Box width */
  text-align:center;
  flex:1;                /* Equal width boxes */
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition:0.3s;
}

.timeline-item:hover{
  transform:translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.timeline-item .emoji{
  font-size:40px;
  display:block;
  margin-bottom:15px;
}

.timeline-item p{
  font-size:18px;
  font-weight:600;
  margin:0;
  line-height:1.4;
}

/* Timeline arrows between boxes */
.timeline-arrow{
  font-size:36px;
  color:#ff7a00;
  font-weight:bold;
  align-self:center;
}


/* ================= RESPONSIVE ================= */
@media(max-width:1200px){
  .timeline{
    flex-wrap:wrap;
    justify-content:center;
  }
}

@media(max-width:900px){
  .timeline{
    flex-direction:column;
    gap:20px;
  }

  .timeline-arrow{
    transform:rotate(90deg);
    margin:10px 0;
  }

  .timeline-item{
    min-width:250px;
  }
}

/* ================= TIMELINE BOX ANIMATION ================= */
.timeline-item {
  position: relative;
  animation: float 4s ease-in-out infinite; /* continuous floating */
}

/* Floating up-down */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

/* Emoji bounce inside box */
.timeline-item .emoji {
  display:block;
  margin-bottom:15px;
  font-size:40px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

/* Optional: smooth hover + float combo */
.timeline-item:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}


/* 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;
  }
}
