  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    background: #000000;
    color: #fff;
    width: 100%;
    overflow-x: hidden;

  }

  html,
  body {
    overflow-x: hidden;
  }


  /* ================= CURSOR ================= */
  .cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background: #ff7a00;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 12px #ff7a00;
    z-index: 9999;
  }

  .cursor-ring {
    position: fixed;
    width: 32px;
    height: 32px;
    border: 2px solid rgba(255, 122, 0, 0.5);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9998;
  }


  /***********************************************  About Banner **********************************************************/



  .banner-section {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    padding: 60px 15px;
  }

  .banner {
    position: relative;
    width: 1200px;
    max-width: 100%;
    height: 400px;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  /* VIDEO BACKGROUND */
  .banner-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }

  /* DARK OVERLAY */
  .banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
  }

  /* RUNNING BORDER */
  .banner-border {
    position: absolute;
    inset: 0;
    border-radius: 30px;
    pointer-events: none;
    z-index: 4;
    border: 4px solid;
    border-image-slice: 1;
    border-image-source: linear-gradient(90deg, #ff7a00, #c55b20, #ff7a00, #c55b20);
    animation: borderMove 3s linear infinite;
  }

  @keyframes borderMove {
    0% {
      border-image-source: linear-gradient(0deg, #ff7a00, #c55b20, #ff7a00, #c55b20);
    }

    25% {
      border-image-source: linear-gradient(90deg, #ff7a00, #c55b20, #ff7a00, #c55b20);
    }

    50% {
      border-image-source: linear-gradient(180deg, #ff7a00, #c55b20, #ff7a00, #c55b20);
    }

    75% {
      border-image-source: linear-gradient(270deg, #ff7a00, #c55b20, #ff7a00, #c55b20);
    }

    100% {
      border-image-source: linear-gradient(360deg, #ff7a00, #c55b20, #ff7a00, #c55b20);
    }
  }

  /* CONTENT */
  .banner-content {
    position: relative;
    z-index: 5;
    color: #fff;
  }

  .about-heading {
    /*font-family: 'Anton', sans-serif;*/
    font-family: "Arial Black", sans-serif;
    font-size: 80px;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    gap: 30px;
    color: #fff;
    /* Bright white */
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    /* Glow effect for visibility */
  }

  /* Transparent Text with Border Effect */
  .about-heading .outline-text {
    color: transparent;
    /* Text ke andar ka color gayab karne ke liye */
    -webkit-text-stroke: 1px #ffffff;
    /* Text ke bahar white border lagane ke liye */
    text-shadow: none;
    /* Glow hatane ke liye taaki border clean dikhe */
  }

  .about-heading span {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px);

    /* color: transparent;
    -webkit-text-stroke: 2px #ffffff;
    text-shadow: none; */
  }

  .about-heading.active span {
    animation: fadeUp 0.6s ease forwards;
  }

  .about-heading.active span:nth-child(1) {
    animation-delay: 0.1s;
  }

  .about-heading.active span:nth-child(2) {
    animation-delay: 0.3s;
  }

  @keyframes fadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .banner-subtitle {
    font-size: 18px;
    font-weight: 500;
  }

  /* EMOJIS */
  .emoji-container {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
  }

  .emoji {
    position: absolute;
    bottom: -50px;
    font-size: 24px;
    opacity: 0;
    filter: drop-shadow(0 0 10px #ff7a00);
    animation: emojiUp linear infinite;
  }

  @keyframes emojiUp {
    0% {
      transform: translateY(0) scale(0.8) rotate(0deg);
      opacity: 0;
    }

    10% {
      opacity: 1;
    }

    100% {
      transform: translateY(-500px) scale(0.6) rotate(360deg);
      opacity: 0;
    }
  }

  /* RESPONSIVE */
  @media(max-width:768px) {
    .banner {
      height: 300px;
    }

    .about-heading {
      font-size: 36px;
    }

    .banner-subtitle {
      font-size: 16px;
    }
  }

  @media(max-width:480px) {
    .banner {
      height: 220px;
    }

    .about-heading {
      font-size: 24px;
    }

    .banner-subtitle {
      font-size: 14px;
    }
  }


  /* ================= CURSOR ================= */
  .cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background: #c55b20;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 12px #c55b20;
  }

  .cursor-ring {
    position: fixed;
    width: 32px;
    height: 32px;
    border: 2px solid rgba(255, 122, 0, 0.5);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
    transform: translate(-50%, -50%);
  }

  /* ================= RESPONSIVE ================= */
  @media(max-width:768px) {

    /* Full width banner */
    .banner {
      width: 100%;
      height: 200px;

      /* Remove shape */
      clip-path: none;
      border-radius: 0;
    }

    /* Remove cursor */
    .cursor,
    .cursor-ring {
      display: none;
    }

    body {
      cursor: auto;
    }

    .about-heading {
      font-size: 30px;
    }
  }

  /*********************************************** About Banner end  **********************************************************/

  /***********************************************  SECTION-1 START  **********************************************************/
  /* ===== SECTION ===== */
  .gaming-section {
    position: relative;
    overflow: hidden;
    padding: 50px 8%;
    opacity: 0;
    transform: translateY(50px);
    transition: 1s ease;
    margin-top: 20px;
    background: #000;
    /* DARK BACKGROUND */
  }

  /* ===== PARTICLES ===== */
  .particles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
  }

  .particles span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #c55b20;
    border-radius: 50%;
    opacity: 0.6;
    animation: moveParticles 10s linear infinite;
  }

  @keyframes moveParticles {
    0% {
      transform: translateY(100vh) scale(0);
    }

    100% {
      transform: translateY(-10vh) scale(1);
    }
  }

  /* ===== EMOJI ===== */
  .emoji-container {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
  }

  .emoji {
    position: absolute;
    font-size: 22px;
    animation: floatUp linear infinite;
  }

  @keyframes floatUp {
    0% {
      transform: translateY(100vh);
      opacity: 0;
    }

    50% {
      opacity: 1;
    }

    100% {
      transform: translateY(-10vh);
      opacity: 0;
    }
  }

  /* ===== LAYOUT ===== */
  .container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
  }

  /* ===== LEFT IMAGE ===== */
  .left {
    flex: 0 0 45%;
    perspective: 1000px;
    position: relative;
  }

  .image-box {
    border: 3px solid #c55b20;
    padding: 10px;
    max-height: 380px;
    border-radius: 12px;
    overflow: hidden;
  }

  .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
  }

  .image-box:hover img {
    transform: scale(1.1) rotateY(5deg) rotateX(5deg);
  }

  /* ===== OVERLAY TEXT ===== */
  .overlay-text {
    position: absolute;
    left: -40px;
    bottom: 20px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1;

    display: flex;
    flex-direction: column;
    /* FIX LINE BREAK */
    z-index: 3;
  }

  .overlay-text .gaming,
  .overlay-text .zone {
    display: block;
    white-space: nowrap;
  }

  .overlay-text .gaming {
    font-size: 60px;
    color: #fff;
    text-shadow: 0 0 20px #c55b20, 0 0 40px #c55b20;
    animation: floatGaming 2s ease-in-out infinite alternate;
  }

  .overlay-text .zone {
    font-size: 50px;
    color: #c55b20;
    letter-spacing: 3px;
    text-shadow: 0 0 15px #c55b20;
    animation: floatGaming 2s ease-in-out infinite alternate-reverse;
  }

  @keyframes floatGaming {
    0% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-12px);
    }

    100% {
      transform: translateY(0);
    }
  }

  /* ===== RIGHT CONTENT ===== */
  .right {
    flex: 0 0 50%;
  }

  /* SMALL HEADING */
  .right h5 {
    display: inline-block;
    padding: 8px 18px;
    border: 2px solid #c55b20;
    border-radius: 30px;
    color: #c55b20;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
  }

  .right h5::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    border: 2px solid #c55b20;
    border-radius: 30px;
    animation: animateBorder 3s linear infinite;
  }

  @keyframes animateBorder {
    0% {
      left: -100%;
    }

    50% {
      left: 0;
    }

    100% {
      left: 100%;
    }
  }

  /* TEXT */
  .right h2 {
    color: #fff;
    font-size: 34px;
    margin: 15px 0;
    font-family: Omero;
  }

  .right p {
    color: #b1b1b1;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 17px;
    font-family: "Saira Semi Condensed", serif;
  }

  /* ===== COUNTER ===== */
  .counter-box {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
  }

  .counter {
    flex: 1;
    text-align: center;
    position: relative;
  }

  .counter:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 10%;
    width: 2px;
    height: 80%;
    background: #c55b20;
    opacity: 0.5;
  }

  .counter:hover {
    transform: translateY(-5px);
  }

  .counter h3 {
    color: #c55b20;
    font-size: 30px;
  }

  .counter span {
    color: #ccc;
    font-size: 14px;
  }

  /* ===== BUTTON ===== */
  .image-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    width: 200px;
    height: 70px;
    background-image: url('../assets/images/btn-bg.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 20px;
  }

  .image-btn:hover {
    transform: scale(1.05);
  }

  /* ===== RESPONSIVE ===== */

  /* Tablet */
  @media(max-width:992px) {
    .container {
      gap: 30px;
    }

    .overlay-text {
      left: -20px;
    }

    .overlay-text .gaming {
      font-size: 48px;
    }

    .overlay-text .zone {
      font-size: 36px;
    }
  }

  /* Mobile */
  @media(max-width:768px) {

    .gaming-section {
      padding: 40px 5%;
    }

    .container {
      flex-direction: column;
      text-align: center;
    }

    .left,
    .right {
      width: 100%;
    }

    .image-box {
      height: 250px;
    }

    .overlay-text {
      left: 10px;
      bottom: 10px;
    }

    .overlay-text .gaming {
      font-size: 32px;
    }

    .overlay-text .zone {
      font-size: 22px;
    }

    .right h2 {
      font-size: 24px;
    }

    .right p {
      font-size: 15px;
    }

    .counter-box {
      flex-direction: column;
      align-items: center;
    }

    .counter:not(:last-child)::after {
      display: none;
    }

    .image-btn {
      width: 100%;
      max-width: 280px;
      margin: auto;
    }
  }

  /* Small Mobile */
  @media(max-width:400px) {

    .overlay-text .gaming {
      font-size: 26px;
    }

    .overlay-text .zone {
      font-size: 18px;
    }
  }

  /*********************************************** SECTION-1 END  **********************************************************/

  /*********************************************** SECTION-2 START  **********************************************************/

  /* SECTION */
  .feature-section {
    padding: 100px 6%;
    opacity: 0;
    transform: translateY(80px);
    transition: 1s ease;
  }

  /* SHOW ON SCROLL */
  .feature-section.show {
    opacity: 1;
    transform: translateY(0);
  }

  /* LAYOUT */
  .feature-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    max-width: 1400px;
    margin: auto;
  }

  /* LEFT IMAGE */
  .feature-left {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
  }

  .feature-left img {
    width: 100%;
    max-width: 420px;
    z-index: 2;
    animation: floatImg 4s ease-in-out infinite;
  }

  /* ORANGE GLOW */
  .glow {
    position: absolute;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, #c55b20, transparent);
    filter: blur(90px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
  }

  /* FLOAT */
  @keyframes floatImg {
    0% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-20px);
    }

    100% {
      transform: translateY(0);
    }
  }

  /* RIGHT */
  .feature-right {
    flex: 1;
  }

  /* TEXT */
  /* TOP FEATURES ANIMATION */
  .section-tag {
    display: inline-block;
    position: relative;
    overflow: hidden;
  }

  /* TEXT */
  .section-tag span {
    display: inline-block;
    color: #c55b20;
    letter-spacing: 2px;
    font-size: 14px;

    opacity: 0;
    transform: translateX(-30px);
    animation: slideTag 0.8s ease forwards;
    animation-delay: 0.3s;
  }

  /* UNDERLINE */
  .section-tag::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background: #c55b20;

    box-shadow: 0 0 10px #c55b20;

    animation: lineGrow 0.8s ease forwards;
    animation-delay: 0.8s;
  }

  /* SLIDE IN */
  @keyframes slideTag {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  /* LINE GROW */
  @keyframes lineGrow {
    to {
      width: 100%;
    }
  }

  /* GLOW PULSE */
  .section-tag span {
    animation:
      slideTag 0.8s ease forwards 0.3s,
      glowPulse 2s infinite 1.2s;
  }

  @keyframes glowPulse {

    0%,
    100% {
      text-shadow: 0 0 5px #c55b20;
    }

    50% {
      text-shadow: 0 0 15px #c55b20, 0 0 25px #c55b20;
    }
  }

  .feature-right h2 {
    font-size: 40px;
    margin-bottom: 20px;
    line-height: 1.3;
    font-family: Omero;
  }

  .desc {
    color: #aaa;
    margin-bottom: 30px;
    font-size: 15px;
    font-family: "Saira Semi Condensed", serif;
  }

  /* FEATURE BOX */
  .feature-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px;
    border: 1px solid #222;
    margin-bottom: 18px;
    transition: 0.4s;
    cursor: pointer;
    position: relative;

    opacity: 0;
    transform: translateY(40px);
  }

  /* ICON */
  .feature-box i {
    font-size: 25px;
    color: #c55b20;
    min-width: 40px;
    text-align: center;
    transition: 0.4s;
  }

  /* HOVER EFFECT */
  .feature-box:hover {
    border-color: #c55b20;
    transform: scale(1.02);
    /* push nahi karega */
    box-shadow: 0 0 20px rgba(255, 122, 0, 0.2);
  }

  .feature-box:hover i {
    transform: scale(1.2) rotate(10deg);
    text-shadow: 0 0 10px #c55b20;
  }

  /* SHOW ANIMATION */
  .feature-box.show {
    opacity: 1;
    transform: translateY(0);
  }

  /* STAGGER ANIMATION */
  .feature-box:nth-child(1) {
    transition-delay: 0.2s;
  }

  .feature-box:nth-child(2) {
    transition-delay: 0.4s;
  }

  .feature-box:nth-child(3) {
    transition-delay: 0.6s;
  }


  .feature-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-family: Omero;
  }

  .feature-box p {
    font-size: 16px;
    line-height: 1.5;
    font-family: "Saira Semi Condensed", serif;
  }

  /* RESPONSIVE */
  @media(max-width:992px) {
    .feature-container {
      flex-direction: row;
      text-align: center;
    }

    .feature-right h2 {
      font-size: 32px;
    }

    .feature-box {
      text-align: left;
    }
  }

  @media(max-width:576px) {
    .feature-container {
      flex-direction: column;
    }

    .feature-section {
      padding: 70px 5%;
    }

    .feature-right h2 {
      font-size: 26px;
    }

    .feature-left img {
      max-width: 300px;
    }
  }

  /*********************************************** SECTION-2 END **********************************************************/

  /*********************************************** SECTION-3  START **********************************************************/

  /* SECTION */
  .section {
    padding: 30px 5%;
    display: flex;
    justify-content: center;


  }

  .border {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 26px;
    padding-top: 15px;
    border-top: 1px solid #222;
  }


  .border:before,
  .border::after {
    content: '';
    position: absolute;
    top: -4px;
    width: 8px;
    height: 8px;
    background-color: #c55b20;
    border-radius: 50%;
    box-shadow: 0 0 5px #c55b20;

    animation: blinkDot 1.5s infinite ease-in-out;
  }

  .border::before {
    left: 0;
  }

  .border::after {
    right: 0;
  }

  @keyframes blinkDot {

    0%,
    100% {
      opacity: 1;
      box-shadow: 0 0 8px #c55b20, 0 0 12px #c55b20;
    }

    50% {
      opacity: 0.3;
      box-shadow: 0 0 2px transparent;
    }
  }


  /* MAIN CARD */
  .card {

    width: 100%;
    max-width: 1200px;
    height: 420px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    padding: 60px;

    background: #030303;
    border: 1px solid rgba(255, 122, 0, 0.15);

    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.8);
    transition: 0.3s;
  }

  /* IMAGE BACK */
  .card img {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 60%;
    object-fit: cover;
    opacity: 0.7;
    filter: brightness(0.8) contrast(1.2);
  }

  /* DARK OVERLAY */
  .card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
        #000000 35%,
        rgba(14, 13, 13, 0.85) 55%,
        rgba(0, 0, 0, 0.2));
  }

  /* CONTENT */
  .content {
    position: relative;
    z-index: 2;
    max-width: 500px;

    opacity: 0;
    transform: translateY(40px);
    transition: 1s ease;
  }

  .content.show {
    opacity: 1;
    transform: translateY(0);
  }

  /* TAG */
  .tag {
    background: #c55b20;
    color: #000;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 15px;
  }

  /* HEADING */
  .content h1 {
    font-size: 52px;
    font-family: Omero;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.8);
  }

  .content h1 span {
    font-family: Omero;
    color: #c55b20;
    text-shadow: 0 0 12px #c55b20;
  }

  /* BUTTON */
  .btn {
    margin-top: 25px;
    padding: 14px 35px;
    border: none;
    background: #c55b20;
    color: #000;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(255, 122, 0, 0.5);
  }

  .btn:hover {
    transform: scale(1.08);
    box-shadow: 0 0 30px #c55b20;
  }

  /* SIDE PLAY BUTTON */
  .side-btn {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
  }

  .side-btn button {
    padding: 12px 28px;
    background: #c55b20;
    border: none;
    font-weight: 700;
    cursor: pointer;
  }

  /* GLOW DOT */
  .dot {
    position: absolute;
    right: 35px;
    top: 45%;
    width: 12px;
    height: 12px;
    border: 2px solid #c55b20;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
  }

  @keyframes pulse {
    0% {
      transform: scale(1);
      opacity: 1;
    }

    100% {
      transform: scale(2);
      opacity: 0;
    }
  }

  /* HOVER GLOW */
  .card:hover {
    box-shadow: 0 0 40px rgba(255, 122, 0, 0.3);
  }

  /* RESPONSIVE */
  @media(max-width:768px) {
    .card {
      height: auto;
      padding: 30px;
    }

    .card img {
      width: 100%;
      opacity: 0.3;
    }

    .content h1 {
      font-size: 28px;
    }

    .side-btn {
      display: none;
    }
  }

  /*********************************************** SECTION-3  End **********************************************************/

  /*********************************************** SECTION-4  Start **********************************************************/

  .slider {
    overflow: hidden;
    width: 100%;
    position: relative;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .track {
    display: flex;
    transition: transform 0.8s ease-in-out;
  }

  .slide {
    flex: 0 0 auto;
    /* keep width flexible for responsive */
    position: relative;
    overflow: hidden;
    /* zoom stays inside */
    width: 300px;
    /* fixed width */
    height: 180px;
    /* fixed height */
  }

  .slide img {
    width: 100%;
    /* fill the container */
    height: 100%;
    /* fill the container */
    object-fit: cover;
    /* keep image aspect ratio cropped */
    transition: transform 0.4s ease;
  }

  .slide:hover img {
    transform: scale(1.1);
    /* zoom inside fixed container */
  }

  /* Overlay */
  .overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.4s;
  }

  .slide:hover .overlay {
    bottom: 0;
  }

  .overlay i {
    background: #fff;
    color: #c55b20;
    padding: 12px;
    border-radius: 50%;
  }

  
  /* Hover Zoom */
  /* .slide:hover img {
  transform: scale(1.1);
} */
  /*********************************************** SECTION-4  end **********************************************************/