@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700&family=Poppins:wght@400;600&display=swap');

    body {
      font-family: 'Poppins', sans-serif;
      background: linear-gradient(135deg, #0a0a0a 0%, #020000 100%);
      color: #fff;
      min-height: 100vh;
      padding: 0 1rem;
      
    }
    #bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Behind everything */
    display: block;
  }
    /* Hide side menu by default */
#side-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 250px;
  background-color: #111827; /* dark */
  color: white;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  z-index: 50;
  padding-top: 3rem;
  overflow-y: auto;
}

/* When open, show menu */
#side-menu.open {
  transform: translateX(0);
}

/* Hide menu on desktop */
@media (min-width: 768px) {
  #side-menu {
    display: none !important;
  }
  
  /* Also hide the menu toggle button on desktop */
  #menu-toggle {
    display: none;
  }
}

    /* Hide side menu by default */
#main-menu.open {
  transform: translateX(0);
}


@media (min-width: 768px) {
  #main-menu {
    position: static;
    transform: none !important;
  }

  #main-menu ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
  }
}

/* Hide menu on desktop */



    h1.main-title {
      font-family: 'Orbitron', sans-serif;
      font-weight: 900;
      font-size: 3rem;
      color: #d7d7d7;
      text-shadow: 2px 2px 5px #ff8700cc;
      user-select: none;
    }

    h2.subtitle {
      font-family: 'Orbitron', sans-serif;
      font-weight: 600;
      color: #3981df;
      font-size: 1.3rem;
      text-transform: uppercase;
      margin-bottom: 0.3rem;
      user-select: none;
    }

    h3.section-title {
      font-family: 'Orbitron', sans-serif;
      font-weight: 700;
      color: #3981df;
      text-transform: uppercase;
      font-size: 1.7rem;
      border-bottom: 3px solid #3981df;
      margin-bottom: 0.7rem;
      user-select: none;
    }

    
.price-card {
  position: relative;
  background: linear-gradient(135deg, #000000, #000000);
  border: 2px solid #7bb4fd;
  border-radius: 20px;
  box-shadow: inset 0 0 10px #7bb4fd, 0 0 6px #7bb4fd;
  padding: 1.5rem;
  overflow: hidden;
  color: white;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  will-change: transform, box-shadow;
}

/* Shimmer effect */
.price-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.12) 25%,
    rgba(255, 255, 255, 0.45) 50%,
    rgba(220, 230, 255, 0.2) 65%,
    transparent 100%
  );
  transform: skewX(-25deg);
  animation: shimmer 2.0s linear infinite;
  z-index: 1;
  will-change: transform;
}



/* Shimmer keyframes */
@keyframes shimmer {
  0% {
    left: -150%;
  }
  100% {
    left: 150%;
  }
}

/* Hover effect (optional) */
.price-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 0 20px #636568, inset 0 0 10px #636568;
}

/* Diamond icon style */
.diamond-icon {
  width: 90px;
  height: 90px;
  margin-right: 10px;
  user-select: none;
  filter: drop-shadow(0 0 6px #39a1f7);
  position: relative;
  animation: diamondGlow 1s ease-in-out infinite alternate;
}

/* Extra shine overlay */
.diamond-icon::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 20%;
  width: 60%;
  height: 60%;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.9),
    rgba(200, 230, 255, 0.4),
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
  filter: blur(6px);
  opacity: 0.8;
  animation: pulseGlow 1s ease-in-out infinite alternate;
}

/* Glow pulse animation */
@keyframes diamondGlow {
  0% {
    filter: drop-shadow(0 0 3px #1c3236);
  }
  100% {
    filter: drop-shadow(0 0 12px #4ebeff);
  }
}

@keyframes pulseGlow {
  0% {
    opacity: 0.6;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1.1);
  }
}

/* Rounded border input appearance for prices */
input[type="text"], .price-box {
  font-weight: 600;
  border-radius: 20px;
  padding: 0.2rem 1rem;
  border: none;
  user-select: none;
  color: #000;
  text-align: center;
  background: #fff;
}

.price-box {
  background: radial-gradient(circle at center, #3865e2, #5eaeff);
  color: #dddddd;
  font-weight: 700;
  box-shadow: 1px 1px 6px #329eb155;
  cursor: default;
  user-select: none;
  text-align: center;
  width: 20px;
}

.freefire-img {
  display: block;
  max-width: 200px;   /* adjust size as needed */
  margin: 0 auto 1rem auto; /* center and space below */
  filter: drop-shadow(0 0 5px #2e2e2eaa); /* subtle glow */
  transition: transform 0.3s ease;
}

.price-card:hover .freefire-img {
  transform: scale(1.1) rotate(5deg);
}

    /* Scroll wrapper for the diamond list */
    
    .diamond-list-scroll::-webkit-scrollbar {
      height: 8px;
    }
    
    .diamond-list-scroll::-webkit-scrollbar-track {
      background: #2c1a00;
    }


.hero-banner {
 margin-left: 0 !important;
  border-radius: 1.5rem;
  padding: 2.5rem;
  margin-bottom: 4rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #111;
  flex-wrap: wrap; /* allow stacking on small screens */
}

.hero-banner .hero-text {
  flex: 1 1 50%;
  z-index: 10;
}

.hero-banner .hero-figure {
  flex: 1 1 50%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-banner .hero-figure img {
  width: 20%;   /* adjust this to resize the image */
  height: auto; /* keep aspect ratio */
  object-fit: contain; /* show entire image */
  filter: drop-shadow(0 0 10px #33accacc);
  border-radius: 0 1.5rem 1.5rem 0;
}

/* Mobile: stack and resize */
@media (max-width: 768px) {
  .hero-banner {
    flex-direction: column;
    padding: 1.5rem;
  }
  .hero-banner .hero-text,
  .hero-banner .hero-figure {
    flex: 1 1 100%;
    text-align: center;
  }
  .hero-banner .hero-figure img {
    width: 60%; /* smaller on mobile */
    border-radius: 1rem;
  }
}


  /* Special orange buttons for contact */
  .contact-btn:hover {
    background: #eeb825;
  }

  /* Responsive layout tweaks */
  @media (max-width: 768px) {
    .hero-banner {
      flex-direction: column;
      padding: 1rem;
    }
    .hero-banner .hero-text {
      width: 100%;
      max-width: 100%;
      text-align: center;
    }
    .hero-banner .hero-figure {
      width: 100%;
      height: 200px;
      margin-top: 1rem;
    }
    .hero-banner .hero-figure img {
      border-radius: 1rem;
    }
  }
  .icon-wrap {
    width: 72px;
    height: 72px;
    margin: 0 auto 0.6rem;
    position: relative;
    display: inline-block;
    border-radius: 12px;
    overflow: visible; /* allow shine to overflow slightly */
    will-change: transform;
    transition: transform 220ms cubic-bezier(.2,.9,.2,1), filter 220ms;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
  }

  .price-icon {
    width: 72px;
    height: 72px;
    display: block;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
    filter: drop-shadow(0 8px 18px rgba(0,0,0,0.35));
  }

  /* shiny slit (diagonal moving gloss) */
  .icon-wrap::before {
    content: "";
    position: absolute;
    left: -60%;
    top: -40%;
    width: 220%;
    height: 180%;
    transform: rotate(-20deg);
    background: linear-gradient(120deg,
                rgba(255,255,255,0) 0%,
                rgba(255,255,255,0.25) 40%,
                rgba(255,255,255,0.55) 50%,
                rgba(255,255,255,0.25) 60%,
                rgba(255,255,255,0) 100%);
    mix-blend-mode: screen;
    opacity: 0.0;
    pointer-events: none;
    transition: opacity 220ms;
    border-radius: 14px;
    /* animate across the icon */
    animation: shine-move 3.2s linear infinite;
    will-change: transform, opacity;
  }

  /* faint pulse glow behind icon (looping) */
  .icon-wrap::after {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 14px;
    background: radial-gradient(60% 40% at 50% 30%, rgba(255,255,255,0.06), rgba(255,255,255,0));
    filter: blur(8px);
    opacity: 1;
    pointer-events: none;
    transition: opacity 220ms;
    z-index: 0;
  }
/* ICON CONTAINER */
.icon-wrap {
  width: 92px;
  height: 92px;
  margin: 0 auto 0.6rem;
  position: relative;
  display: inline-block;
  border-radius: 14px;
  overflow: hidden;
  will-change: transform;
  transition: transform 220ms cubic-bezier(.2,.9,.2,1), filter 220ms;
}

/* PNG IMAGE */
.price-icon {
  width: 92px;
  height: 92px;
  display: block;
  object-fit: cover;
  border-radius: 14px;
  /* Deep layered shadow for premium feel */
  box-shadow:
    0 6px 12px rgba(0, 0, 0, 0.35),
    0 12px 28px rgba(0, 0, 0, 0.25),
    inset 0 2px 4px rgba(255, 255, 255, 0.08);
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.4));
}


/* Optional faint glow */
.icon-wrap::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 20px;
  background: radial-gradient(circle at 50% 30%, rgba(255,255,255,0.04), transparent);
  pointer-events: none;
  z-index: 0;
}

/* Hover effect for premium feel */
.price-card:hover .icon-wrap {
  transform: scale(1.04);
  filter: brightness(1.05) saturate(1.1);
}



  .thunder-text {
    display: inline-block;
    animation: smooth-thunder 0.4s infinite ease-in-out;
    font-weight: bold;
  }
 .typing {
  display: inline-block;
  border-right: 2px solid white;
  white-space: nowrap;
  overflow: hidden;
  animation:
    typing 4s ease-in-out infinite,
    blink 0.6s step-end infinite;
}

@keyframes typing {
  0% { width: 0; }
  40% { width: 100%; }
  60% { width: 100%; }
  100% { width: 0; }
}

@keyframes blink {
  0%, 50% { border-color: white; }
  51%, 100% { border-color: transparent; }
}

    canvas {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: block;
        z-index: -1; /* behind content */
    }

.uid-checker-box {
    background: rgba(255 255 255 / 0.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.7);
    border-radius: 14px;
    width: 500px;
    max-width: 100%;
    padding: 20px 30px;
    display: flex;
    gap: 12px;
    align-items: center;
    user-select: none;
    transition: box-shadow 0.3s ease;
  }

  .uid-checker-box:hover {
    box-shadow: 0 12px 30px rgba(95, 95, 95, 0.6);
  }

  input[type="text"] {
    flex: 1;
    padding: 12px 15px;
    font-size: 1rem;
    border-radius: 8px;
    border: none;
    outline: none;
    box-shadow: inset 0 0 6px #444;
    background: #222;
    color: #eee;
    transition: box-shadow 0.3s ease;
  }

  input[type="text"]:focus {
    box-shadow: 0 0 10px #575757;
    background: #1a1a1a;
  }

 
  button:hover {
    background: #383838;
  }

  @media (max-width: 400px) {
    .uid-checker-box {
      flex-direction: column;
      padding: 20px;
    }
    button {
      width: 100%;
      padding: 12px;
    }
    input[type="text"] {
      width: 100%;
    }
  }
