@font-face {
  font-family: vazir;
  src: url(/fonts/Vazir-Medium.ttf);
}

* {
  direction: rtl;
  box-sizing: border-box;
  font-family: vazir;
  text-decoration: none;
}

body {
  margin: 0px;
  overflow-x: hidden;
}

/*! loading !*/
.loading {
  margin: 0;
  padding: 0;
  position: relative;
  left: 0px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  color: black;
}

#loading {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 2s ease-out;
}

#loading.hidden {
  opacity: 0;
  pointer-events: none;
}

.loader {
  width: fit-content;
  font-size: 17px;
  font-family: monospace;
  line-height: 1.4;
  font-weight: bold;
  padding: 30px 2px 50px;
  background: linear-gradient(#000 0 0) 0 0/100% 100% content-box padding-box
    no-repeat;
  position: relative;
  overflow: hidden;
  animation: l10-0 2s infinite cubic-bezier(1, 175, 0.5, 175);
}
.loader::before {
  content: "Loading";
  display: inline-block;
  animation: l10-2 2s infinite;
}
.loader::after {
  content: "";
  position: absolute;
  width: 34px;
  height: 28px;
  top: 110%;
  left: calc(50% - 16px);
  background: linear-gradient(
        90deg,
        #0000 12px,
        #f92033 0 22px,
        #0000 0 26px,
        #fdc98d 0 32px,
        #0000
      )
      bottom 26px left 50%,
    linear-gradient(90deg, #0000 10px, #f92033 0 28px, #fdc98d 0 32px, #0000 0)
      bottom 24px left 50%,
    linear-gradient(
        90deg,
        #0000 10px,
        #643700 0 16px,
        #fdc98d 0 20px,
        #000 0 22px,
        #fdc98d 0 24px,
        #000 0 26px,
        #f92033 0 32px,
        #0000 0
      )
      bottom 22px left 50%,
    linear-gradient(
        90deg,
        #0000 8px,
        #643700 0 10px,
        #fdc98d 0 12px,
        #643700 0 14px,
        #fdc98d 0 20px,
        #000 0 22px,
        #fdc98d 0 28px,
        #f92033 0 32px,
        #0000 0
      )
      bottom 20px left 50%,
    linear-gradient(
        90deg,
        #0000 8px,
        #643700 0 10px,
        #fdc98d 0 12px,
        #643700 0 16px,
        #fdc98d 0 22px,
        #000 0 24px,
        #fdc98d 0 30px,
        #f92033 0 32px,
        #0000 0
      )
      bottom 18px left 50%,
    linear-gradient(
        90deg,
        #0000 8px,
        #643700 0 12px,
        #fdc98d 0 20px,
        #000 0 28px,
        #f92033 0 30px,
        #0000 0
      )
      bottom 16px left 50%,
    linear-gradient(90deg, #0000 12px, #fdc98d 0 26px, #f92033 0 30px, #0000 0)
      bottom 14px left 50%,
    linear-gradient(
        90deg,
        #fdc98d 6px,
        #f92033 0 14px,
        #222a87 0 16px,
        #f92033 0 22px,
        #222a87 0 24px,
        #f92033 0 28px,
        #0000 0 32px,
        #643700 0
      )
      bottom 12px left 50%,
    linear-gradient(
        90deg,
        #fdc98d 6px,
        #f92033 0 16px,
        #222a87 0 18px,
        #f92033 0 24px,
        #f92033 0 26px,
        #0000 0 30px,
        #643700 0
      )
      bottom 10px left 50%,
    linear-gradient(
        90deg,
        #0000 10px,
        #f92033 0 16px,
        #222a87 0 24px,
        #feee49 0 26px,
        #222a87 0 30px,
        #643700 0
      )
      bottom 8px left 50%,
    linear-gradient(
        90deg,
        #0000 12px,
        #222a87 0 18px,
        #feee49 0 20px,
        #222a87 0 30px,
        #643700 0
      )
      bottom 6px left 50%,
    linear-gradient(90deg, #0000 8px, #643700 0 12px, #222a87 0 30px, #643700 0)
      bottom 4px left 50%,
    linear-gradient(90deg, #0000 6px, #643700 0 14px, #222a87 0 26px, #0000 0)
      bottom 2px left 50%,
    linear-gradient(90deg, #0000 6px, #643700 0 10px, #0000 0) bottom 0px left
      50%;
  background-size: 34px 2px;
  background-repeat: no-repeat;
  animation: inherit;
  animation-name: l10-1;
}
@keyframes l10-0 {
  0%,
  30% {
    background-position: 0 0px;
  }
  50%,
  100% {
    background-position: 0 -0.1px;
  }
}
@keyframes l10-1 {
  50%,
  100% {
    top: 109.5%;
  }
}
@keyframes l10-2 {
  0%,
  30% {
    transform: translateY(0);
  }
  80%,
  100% {
    transform: translateY(-260%);
  }
}

/*! */
#hr {
  box-shadow: 0 1px 5px 2px #2f3542;
  margin: 20px 70px;
  color: white;
}

:root {
  --primary: #ffbe0b;
  --accent: #fb5607;
  --blue: #3a86ff;
  --bubble: rgba(255, 255, 255, 0.6);
  --bg: white;
  --text: #333;
  --radius: 20px;
}

/*! Header Container !*/
.menu-back {
  position: absolute;
  top: 0px;
  height: 130px;
  right: 0;
  left: 0;
  color: rgba(0, 0, 0, 0);
  background-color: #2ec4b6;
  animation: slideDown 0.5s ease;
}

.header {
  background: var(--bg);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1000;
  margin: 30px;
  border-radius: 20px;
  padding: 15px 25px;
  animation: slideDown 0.5s ease;
}
@keyframes slideDown {
  from {
    transform: translateY(-60px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.header-inner {
  display: flex;
  justify-content: space-between;
}

/** Brand **/
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  padding-bottom: 10px;
  color: var(--accent);
}

.brand-img img {
  width: 100px;
  margin: 0px 40px;
}

/** NAV **/
.nav {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  align-items: center;
  padding: 10px 0;
  background: #2ec4b6;
  border-radius: 20px;
  margin: 10px 0px;
}

.nav a {
  position: relative;
  text-decoration: none;
  color: black;
  padding: 5px 0;
  cursor: pointer;
  transition: color 0.3s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -3px;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #ff4d4d, #dd0010);
  transition: width 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  border-radius: 4px;
}

.nav a:hover {
  color: #e31418;
}

.nav a:hover::after {
  width: 100%;
}

.nav a.active {
  color: #ff6b4d;
}

.nav a.active::after {
  width: 100%;
}

/** User section **/
.user-panel {
  position: relative;
}

.user-username {
  margin-right: 5px;
}

.login-btn,
.user-avatar {
  background-color: #2ec4b6;
  color: white;
  padding: 8px 12px;
  border: 1px solid #2ec4b6;
  border-radius: 7px;
  cursor: pointer;
  font-size: 15px;
  margin: 10px 0px 0px 60px;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3);
  transition: 0.4s ease-in;
}

.login-btn:hover,
.user-avatar:hover {
  border-radius: 10px;
  background-color: black;
  border: 1px solid black;
  color: black;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

#loginButton {
  color: white;
  background-color: #2ec4b6;
  font-size: 15px;
  transition: 0.4s ease-in;
}
#loginButton:hover {
  color: white;
  background-color: black;
}

#loginButton span {
  margin-left: 5px;
}

#userToggle {
  transition: 0.4s ease-in;
}
#userToggle:hover {
  color: white;
  background-color: black;
}

/** Dropdown Menu **/
.user-menu {
  position: absolute;
  right: -40px;
  top: 55px;
  width: 180px;
  background: var(--bubble);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  border-radius: var(--radius);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  z-index: 100;
  opacity: 0;
  transform: translateY(-15px);
  pointer-events: none;
  transition: opacity 0.25s ease-in, transform 0.25s ease-in;
}

.user-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#loginMenu {
  right: -60px;
  top: 55px;
}

.user-menu a {
  padding: 12px;
  display: block;
  text-decoration: none;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: 0.2s;
}

.user-menu a:hover {
  background: var(--primary);
  color: #fff;
}

/** Logout red **/
.user-menu .logout {
  color: #d90429 !important;
}

/*! Search Box !*/
.search-box {
  margin: 0px 38px 0px 0px;
}

#homeSearchInput {
  width: 350px;
  padding: 10px;
  font-size: 15px;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  box-shadow: 0 0px 6px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  margin: 5px 0px;
  transition: 0.2s ease-in;
}
#homeSearchInput:hover {
  outline: none;
  box-shadow: 0 0px 6px rgba(0, 0, 0, 0.7);
}
#homeSearchInput:focus {
  outline: none;
  box-shadow: 0 0 10px 3px #74c69d;
}

#homeSearchResults {
  position: absolute;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  border-radius: 0.75rem;
  background-color: #fff;
  overflow-y: auto;
  width: 350px;
  max-height: 330px;
  z-index: 2;
}

#homeSearchResults a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-bottom: 1px solid #f0f0f0;
  text-decoration: none;
  color: black;
  height: 100px;
  transition: background 0.2s;
}

#homeSearchResults a:hover {
  background-color: #f9fafb;
}

#homeSearchResults img {
  width: 100px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

#homeSearchResults h3 {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

#homeSearchResults p {
  font-size: 12px;
  color: #888;
  margin: 0;
}

#homeSearchResults span {
  font-size: 13px;
  font-weight: 600;
  color: #2563eb;
}

/** Search Button **/
#homeSearchButton {
  position: relative;
  right: -60px;
  border: none;
  background-color: #74c69d;
  color: white;
  padding: 6px 10px;
  font-size: 13px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 0px 4px rgba(0, 0, 0, 0.4);
  transition: 0.2s ease-in;
}

#homeSearchButton:hover {
  background-color: #6ab18d;
}

/*! scroll top !*/
#scrollTopBtn {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 70px;
  height: 40px;
  background-color: #74c69d9c;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1.1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  transition: 0.2s ease-in;
  z-index: 10;
  animation: pop 0.5s ease forwards;
}
@keyframes pop {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

#scrollTopBtn:hover {
  background-color: #74c69d;
}

/*! ==== CYBER LUX FOOTER ==== !*/
footer.footer {
  background: linear-gradient(135deg, #060606, #0b0e10, #111418);
  color: #dfe6e9;
  font-size: 14px;
  padding-top: 45px;
  border-top-left-radius: 35px;
  border-top-right-radius: 35px;
  position: relative;
  overflow: hidden;
  animation: pop 0.5s ease forwards;
}
@keyframes pop {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Glow particles */
footer.footer::before,
footer.footer::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(0, 255, 180, 0.12), transparent);
  filter: blur(40px);
  animation: float 10s infinite ease-in-out alternate;
}

footer.footer::before {
  top: -80px;
  left: -80px;
}

footer.footer::after {
  bottom: -80px;
  right: -80px;
}

@keyframes float {
  0% {
    transform: translate(0, -12px);
  }
  100% {
    transform: translate(0, 12px);
  }
}

/* Grid layout */
.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 45px;
  max-width: 1200px;
  margin: auto;
  padding: 30px;
}

/* Titles */
.footer-links h4,
.footer-about h4,
.footer-social h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #00ffc8; /* Neon mint green */
  letter-spacing: 0.6px;
}

/* Contact text */
.footer-contact {
  font-size: 13px;
}

/* Links section */
.footer-links {
  display: flex;
  gap: 60px;
  margin: 22px 0;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 7px;
}

.footer-about {
  cursor: default;
}

.footer-links a,
.footer-about a,
.description-title a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: 0.25s ease;
}

.footer-about a {
  color: #00ffc8;
}
.description-title a {
  color: #04d2e4;
}

.footer-links a:hover,
.footer-about a:hover,
.description-title a:hover {
  color: #04d2e4;
  text-shadow: 0 0 6px #04d2e4;
  transform: translateX(5px);
}

/* About */
.footer-about p {
  font-size: 13px;
  line-height: 1.8;
}

/* Glass neon social box */
.footer-social {
  background: rgba(0, 255, 180, 0.05);
  border: 1px solid rgba(0, 255, 200, 0.25);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-radius: 18px;
  padding: 30px;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 0 12px rgba(0, 255, 200, 0.12);
}

.footer-social:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 22px rgba(0, 255, 200, 0.2);
}

/** Icons */
.footer-social-icons {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-top: 12px;
}

.footer-social-icons a {
  font-size: 27px;
  opacity: 0.85;
  transition: 0.25s;
}

.footer-social-icons a:hover {
  opacity: 1;
  transform: scale(1.25);
  text-shadow: 0 0 10px currentColor;
}

/** Icon colors (cyber tones) */
.wa {
  color: #00ff7f;
}
.yt {
  color: #ff3b3b;
}
.tg {
  color: #00eaff;
}
.ig {
  color: #ff2ebc;
}
.li {
  color: #3abefb;
}

/** Bottom bar */
.footer-bottom {
  background: #000;
  padding: 15px;
  font-size: 13px;
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
  border-top: 1px solid rgba(0, 255, 200, 0.2);
  border-radius: 20px;
}

/* ==== CYBER PULSE EFFECT ADD-ON ==== */

/* Pulse animation keyframes */
@keyframes neonPulse {
  0% {
    text-shadow: 0 0 4px rgba(0, 255, 200, 0.4),
      0 0 10px rgba(0, 255, 200, 0.25);
    opacity: 0.95;
  }
  50% {
    text-shadow: 0 0 10px rgba(0, 255, 200, 0.9),
      0 0 20px rgba(0, 255, 200, 0.7);
    opacity: 1;
  }
  100% {
    text-shadow: 0 0 4px rgba(0, 255, 200, 0.4),
      0 0 10px rgba(0, 255, 200, 0.25);
    opacity: 0.95;
  }
}

/* Apply neon pulse to section titles */
.footer-links h4,
.footer-about h4,
.footer-social h4 {
  animation: neonPulse 3.2s infinite ease-in-out;
}

/* Pulse glow for icons */
@keyframes iconPulse {
  0% {
    filter: drop-shadow(0 0 4px rgba(0, 255, 200, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 12px rgba(0, 255, 200, 0.8));
  }
  100% {
    filter: drop-shadow(0 0 4px rgba(0, 255, 200, 0.3));
  }
}

.footer-social-icons a {
  animation: iconPulse 2.8s infinite ease-in-out;
}

/* Pulse on glass card */
@keyframes cardPulse {
  0% {
    box-shadow: 0 0 10px rgba(0, 255, 200, 0.12);
    border-color: rgba(0, 255, 200, 0.25);
  }
  50% {
    box-shadow: 0 0 22px rgba(0, 255, 200, 0.35);
    border-color: rgba(0, 255, 200, 0.45);
  }
  100% {
    box-shadow: 0 0 10px rgba(0, 255, 200, 0.12);
    border-color: rgba(0, 255, 200, 0.25);
  }
}

.footer-social {
  animation: cardPulse 4s infinite ease-in-out;
}

/*! Error 404 !*/
.error-page {
  text-align: center;
  padding: 100px 20px;
  cursor: default;
  animation: pop 0.5s ease forwards;
}
@keyframes pop {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.error-page h1 {
  font-size: 120px;
  color: #ff4d4f;
  margin-bottom: 20px;
}

.error-page p {
  font-size: 20px;
  color: #555;
  margin-bottom: 30px;
}

.back-home {
  display: inline-block;
  padding: 10px 20px;
  background: #007bff;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.2s;
}

.back-home:hover {
  background: #0056b3;
}

/****/
.menu-wrapper {
  display: none;
}

/*! mobile !*/
@media (max-width: 766px) {
  .header {
    display: none;
  }

  .ticket-btn {
    display: block;
  }

  .menu-wrapper {
    display: block;
  }

  .menu-back {
    position: absolute;
    top: 0px;
    height: 50px;
    right: 0;
    left: 0;
    color: rgba(0, 0, 0, 0);
    background-color: #2ec4b6;
  }

  .mobile-header {
    margin: 20px;
    height: 70px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1000;
    animation: slideDown 0.5s ease;
  }
  @keyframes slideDown {
    from {
      transform: translateY(-60px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  .menu-btn,
  .profile-btn {
    background: none;
    border: none;
    font-size: 25px;
    cursor: pointer;
    color: #008376;
  }

  .profile-btn {
    position: relative;
    top: 20px;
    right: 20px;
  }

  .brand-img img {
    width: 100px;
    margin: 10px 30px 0px 0px;
  }

  .profile-name {
    color: white;
    font-size: 15px;
    position: relative;
    bottom: 25px;
    left: 20px;
    background: #2ec4b6;
    padding: 8px;
    border-radius: 10px;
  }

  /** side menu **/
  .side-menu {
    position: fixed;
    overflow: hidden;
    display: block;
    top: 100px;
    right: -770px;
    width: 60%;
    height: 350px;
    background-color: white;
    border-radius: 15px;
    z-index: 1000;
    transition: all 0.3s ease;
  }

  .side-menu.active {
    right: 20px;
  }

  .side-menu ul {
    list-style: none;
    padding: 0;
  }

  .side-menu li {
    margin: 20px 10px;
    cursor: pointer;
  }

  .side-menu li i {
    margin: 0px 10px;
    color: blue;
  }

  .has-submenu ul.submenu2 {
    padding-right: 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
  }

  .has-submenu.open .submenu2 {
    max-height: 500px;
  }

  .has-submenu div i:last-child {
    transition: transform 0.4s ease-in-out;
  }

  .has-submenu.open div i:last-child {
    transform: rotate(180deg);
  }

  /** social icons **/
  .social-icons {
    position: fixed;
    display: block;
    overflow: hidden;
    background-color: white;
    border-radius: 10px;
    width: 50px;
    left: -80px;
    top: 100px;
    z-index: 1000;
    transition: all 0.3s ease;
  }

  .social-icons.active {
    left: 10px;
    top: 100px;
  }

  .social-icons a {
    padding: 10px 2px;
    display: block;
    width: 40px;
    height: 30px;
    overflow: hidden;
    display: table;
    margin-left: auto;
    margin-right: 10px;
  }

  .social-icons .fa-brands {
    font-size: 24px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 25px;
  }

  .footer-links {
    flex-direction: column;
    gap: 20px;
  }

  /** bottom buttons**/
  .bottom-buttons2 {
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    width: 90%;
    height: 56px;
    padding: 10px 30px;
    margin: 0px 20px;
    margin-left: 30px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    border-radius: 15px;
    background-color: white;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.3);
    opacity: 1;
    transform: translateY(0);
    transition: all 0.4s ease;
    animation: slideDown 0.5s ease;
  }
  @keyframes slideDown {
    from {
      transform: translateY(-60px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  .bottom-buttons2.active {
    transform: translateY(10px);
    opacity: 0;
  }

  .bottom-buttons2 span {
    position: absolute;
    color: rgba(0, 0, 0, 0.9);
    font-size: 10px;
    width: 60px;
    top: 30px;
    margin-right: -20px;
  }

  .bottom-buttons2 a {
    cursor: pointer;
    color: #008376;
  }

  /** background **/
  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }

  .menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
  }

  /** submenu page **/
  .submenu-page {
    position: fixed;
    top: 100px;
    right: -770%;
    width: 60%;
    height: 350px;
    background-color: white;
    border-radius: 15px;
    z-index: 1100;
    transition: right 0.3s ease;
    padding: 20px;
  }

  .submenu-page.active {
    right: 20px;
  }

  .submenu-page .submenu-li {
    color: black;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
  }
  .submenu-page .submenu-li:hover {
    background-color: rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0);
  }

  .submenu-header {
    cursor: pointer;
    margin-bottom: 15px;
    font-weight: bold;
  }
  .submenu-header i {
    color: rgba(0, 0, 0, 0.3);
    margin-left: 10px;
  }

  #nintendo img {
    margin-right: 10px;
  }

  #has-submenu-last-i {
    color: rgba(0, 0, 0, 0.5);
  }

  /** slider **/
  .slider-container2 {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    height: 200px;
  }
  .slider2 {
    height: 200px;
    border-radius: 15px;
  }
  .slide2 img {
    display: block;
    overflow: hidden;
    width: 25%;
    border-radius: 15px;
    height: 200px;
  }

  .wave-indicator {
    position: absolute;
    top: -10px;
    right: -260px;
    width: 600px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .wave-indicator svg {
    position: relative;
    top: -60px;
    right: 20px;
    width: 200px;
    height: 70px;
    border: none;
    outline: none;
  }

  .wave-dots {
    position: relative;
    top: 70px;
    left: 160px;
    display: flex;
    gap: 5px;
  }

  .dot {
    cursor: pointer;
    width: 5px;
    height: 10px;
    background: lightgray;
    border-radius: 50px;
    transition: all 0.1s ease-in;
  }

  .dot.active {
    height: 17px;
    transform: translateY(-4px);
    width: 5px;
    background: linear-gradient(56deg, #f72585, #071a52);
  }

  /*! Products slider !*/
  .product-sec-new {
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin: 20px 15px;
    border-radius: 15px;
    padding: 20px 10px;
    font-size: 15px;
  }

  .product-title {
    padding: 10px 30px;
    padding-bottom: 20px;
  }

  .product-title span {
    cursor: pointer;
    font-size: 20px;
    color: #2f3542;
    border-bottom: 2px solid #ea2027;
  }

  .shaping-card {
    text-align: center;
    box-shadow: 0px 2px 8px 0px #2f3542;
    margin: 10px 15px;
    border-radius: 10px;
    padding: 10px;
    transition: all 0.3s ease-in;
  }
  .shaping-card:hover {
    transform: translateY(0);
    box-shadow: 0px 2px 10px 0px rgb(0, 0, 0);
  }
  .left-n {
    margin-top: 15px;
  }
  .left-n i {
    color: red;
  }
  .left-n span {
    color: rgba(0, 0, 0, 0.6);
  }

  .img-sec {
    position: relative;
  }

  .img-sec .img-gaming-box {
    box-shadow: 0px 2px 8px 0px #2f3542;
    padding: 10px;
    border-radius: 10px;
    width: 220px;
    height: 200px;
    margin: 10px 0 0 0;
  }

  .Specifications {
    background-color: #3742fa;
    color: #f8f9fa;
    padding: 7px 7px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    position: absolute;
    left: -10px;
    top: 30px;
    font-size: 0.9em;
  }

  #DualSense-Specifications {
    background-color: #eb0027;
  }

  .title {
    color: #2f3542;
    font-weight: bold;
    margin: 15px;
  }

  .price {
    color: #2f3542;
    text-shadow: 0px 2px 5px rgba(255, 255, 255, 0.87);
    font-weight: bold;
  }

  .extend-btn {
    display: flex;
    padding-top: 10px;
    align-items: center;
    justify-content: center;
    background-color: #3742fa;
    color: white;
    width: 33px;
    padding: 5px 8px;
    border: 1px solid rgba(0, 0, 0, 0);
    border-radius: 22px;
    cursor: pointer;
    transition: width 0.35s ease-in-out, background-color 0.35s ease-in-out,
      color 0.7s ease-in-out, border 0.35s ease-in-out;
  }

  .extend-btn:hover {
    width: 70px;
    color: #ecf0f1;
    background-color: white;
    border: 1.5px solid black;
    margin-bottom: 0;
  }

  .extend-btn a {
    transition: color 0.7s ease-in-out;
  }

  .extend-btn:hover a {
    color: black;
  }

  .bottom-left {
    display: flex;
    width: 75px;
    margin-left: auto;

    margin-right: auto;
  }
  .left {
    display: flex;
  }

  .extend-btn {
    padding: 5px;
    padding-top: 10px;
  }

  .b-text {
    display: none;
  }

  .extend-btn:hover .b-text {
    display: block;
    color: black;
  }

  .b-icon {
    display: inline;
    color: #ecf0f1;
  }

  /*! supper offer section !*/
  .super-offer-section {
    right: 0;
  }

  .super-offer-section .supper-offer-box {
    border-radius: 15px;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.5);
    margin: 10px;
  }

  .specification {
    display: table;
    margin-left: auto;
    margin-right: auto;
  }

  .super-offer-section .super-offer-title {
    background-color: black;
  }

  .super-offer-section .super-offer-title {
    background-color: #c00000;
  }

  .off {
    background-color: #c00000;
  }

  /*! draggable list !*/
  .draggable-list-console,
  .draggable-list-dualsense,
  .draggable-list-game {
    border: 1px solid rgba(0, 0, 0, 0.1);
    overflow: auto;
    border-radius: 15px;
    margin: 10px 15px;
  }

  .title-draggable-list {
    display: table;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 20px;
  }

  .title-draggable-list span {
    font-size: 20px;
    color: #2f3542;
    border-bottom: 2px solid #ea2027;
  }

  .owl-carousel .owl-item img {
    box-shadow: 0px 2px 8px 0px #2f3542;
    padding: 10px;
    max-width: 220px;
    margin: 10px auto;
  }

  .title-draggable {
    padding: 10px 0px;
    color: #2f3542;
    font-weight: bold;
    margin: 15px;
  }

  .buttons2 {
    color: #131414;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 15px;
  }

  .owl-stage-outer {
    direction: ltr;
  }

  /*! footer !*/
  .right-footer {
    padding-bottom: 20px;
  }
  .right-footer2 {
    width: 100%;
    max-width: 400px;
    padding: 10px 0px;
    font-size: 12px;
  }
  #right-footer-p {
    display: none;
  }
  #right-footer2 {
    display: block;
  }

  table {
    display: table;
    margin: 20px auto;
    padding-bottom: 20px;
  }

  th {
    font-size: 10px;
    color: white;
  }

  td a {
    cursor: pointer;
    padding: 0px;
    display: table;
    margin: auto;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    padding-bottom: 5px;
    transition: all 0.2s ease-in-out;
  }

  td a:hover {
    color: rgba(255, 255, 255, 0.95);
  }
  td {
    transition: all 0.2s ease-in-out;
  }
  td:hover {
    transform: translateY(-2px);
  }

  .title4 {
    display: table;
    margin: auto;
  }

  .des {
    margin-bottom: 60px;
  }

  .left-footer {
    display: none;
  }

  .top {
    bottom: 130px;
  }

  .footer-bottom {
    margin-bottom: 70px;
  }

  /*! scrollTopBtn !*/
  #scrollTopBtn {
    bottom: 100px;
  }
}
