/* Similar Games Section */
.similar-games-container {
  display: flex;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.similar-games-left {
  flex: 1.5;
  background: linear-gradient(to right, #1c1c1c, rgba(0, 0, 0, 0)),
    url("../assets/images/angry_bird.png");
  background-size: cover;
  background-position: center;
  position: relative;
  color: white;
  display: flex;
  align-items: center;
  justify-content: left;
}

.similar-games-overlay {
  padding: 40px;
  border-radius: 12px;
  text-align: left;
}

.similar-games-left h1 {
  font-size: 30px;
  font-weight: 600;
  margin: 0 0 10px;
}

.similar-games-left p {
  margin: 0 0 20px;
  font-size: 16px;
  font-weight: 400;
  color: #ffffffca;
}

.similar-games-left button {
  padding: 15px 24px;
  border: none;
  background-color: #fceef0;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  top: 0.8rem;
  position: relative;
}

.similar-games-left button:hover {
  background-color: #d94d62;
}

.similar-games-right {
  flex: 1;
  padding: 40px;
  background-color: #fff;
}

.similar-games-right h2 {
  margin-top: 0;
  font-size: 32px;
  font-family: "Arsenal", sans-serif;
  font-weight: 550;
}

.similar-games-right h2 span {
  font-weight: bold;
}

.similar-game-card {
  display: flex;
  align-items: center;
  margin: 20px 0;
  padding: 10px;
  border-radius: 8px;
}

.similar-game-card:hover {
  background-color: #e9e9e9;
  transition: all 0.3s ease;
}

.similar-game-card img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  margin-right: 20px;
  object-fit: cover;
}

.similar-game-card h4 {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
}

.similar-game-card p {
  margin: 4px 0 0;
  font-weight: 500;
  font-size: 16px;
  color: gray;
}

/* Most Popular Games Section */
.arrow {
  background: none;
  border: none;
  font-size: 54px;
  cursor: pointer;
}

.buttons {
  margin: 20px 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.buttons button {
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid #ccc;
  background: white;
  cursor: pointer;
}

.buttons .active {
  background-color: var(--accent_color);
  color: white;
  border: none;
}

.games {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}

.card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  width: 280px;
  height: 382px;
  position: relative;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
}

.card:hover .batch-tag {
  display: block;
  background: #400d14;
  color: #f6f3f4;
}

.card-img-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}

.card:hover .card-img {
  transform: scale(1.1);
}

.card-img-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.card:hover .card-img-wrapper::after {
  opacity: 1;
}

.card-info {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 2;
  color: white;
  text-shadow: 0 0 5px black;
}

.game-overlay {
  position: relative;
  width: 100%;
  height: 100%;
}

.game-overlay::before {
  content: "";
  position: absolute;
  box-shadow: inset 0px -50px 40px 5px rgba(22, 21, 21, 0.73);
  z-index: 2;
}

.batch-tag {
  background: rgba(255, 255, 255, 0.901);
  color: black;
  padding: 10px 15px;
  font-size: 12px;
  font-weight: 500;
  border: none;
  border-radius: 6px;
  position: absolute;
  top: 28px;
  right: 26px;
  z-index: 3;
  display: none;
}

/* New Games Section */
.new-games-section,
.recommended-games-section {
  margin-top: 4rem;
}
.new-games-section .header .arrow,
.recommended-games-section .header .arrow {
  background: none;
  border: none;
  font-size: 54px;
  cursor: pointer;
}

.new-games-section .categories {
  margin: 20px 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.new-games-section .categories button {
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid #ccc;
  background: white;
  cursor: pointer;
}

.new-games-section .categories .active {
  background-color: var(--accent_color);
  color: white;
  border: none;
}

.new-games-section .games-grid,
.recommended-games-section .games-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  width: 100%;
}

.new-games-section .game-container,
.recommended-games-section .game-container {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  width: 280px;
  height: 382px;
  position: relative;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.new-games-section .game-container:hover,
.recommended-games-section .game-container:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
}

.new-games-section .game-container:hover .batch-tag,
.recommended-games-section .game-container:hover .batch-tag {
  display: block;
  background: #400d14;
  color: #f6f3f4;
}

.new-games-section .game-container .card-img-wrapper,
.recommended-games-section .game-container .card-img-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.new-games-section .game-container img,
.recommended-games-section .game-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}

.new-games-section .game-container:hover img,
.recommended-games-section .game-container:hover img {
  transform: scale(1.1);
}

.new-games-section .game-container .card-img-wrapper::after,
.recommended-games-section .game-container .card-img-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.new-games-section .game-container:hover .card-img-wrapper::after,
.recommended-games-section .game-container:hover .card-img-wrapper::after {
  opacity: 1;
}

.new-games-section .game-container .game-info,
.recommended-games-section .game-container .game-info {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 2;
  color: white;
  text-shadow: 0 0 5px black;
}

.new-games-section .game-container .game-overlay,
.recommended-games-section .game-container .game-overlay {
  position: relative;
  width: 100%;
  height: 100%;
}

.new-games-section .game-container .batch-tag,
.recommended-games-section .game-container .batch-tag {
  background: rgba(255, 255, 255, 0.901);
  color: black;
  padding: 10px 15px;
  font-size: 12px;
  font-weight: 500;
  border: none;
  border-radius: 6px;
  position: absolute;
  top: 28px;
  right: 26px;
  z-index: 3;
  display: none;
}

/* recommended games section */
.recommended-games-section {
  display: none;
}
.recommended-games-section h2 {
  margin-bottom: 30px;
}

/* Top Games Section */
.top-games-section {
  background: linear-gradient(to bottom right, #111927, #1a1f2b);
  padding: 130px;
  font-family: "Segoe UI", sans-serif;
  color: white;
}

.top-games-header h2 {
  font-size: 36px;
  font-weight: 550;
  font-family: "Arsenal", sans-serif;
  margin-bottom: 50px;
}

.top-games-header span {
  color: #fff;
  margin-left: 10px;
}

.top-games-grid {
  display: flex;
  gap: 20px;
}

.top-games-highlight {
  flex: 1.16;
  background-image: linear-gradient(to top, #1c1c1c, rgba(0, 0, 0, 0)),
    url("../assets/images/left-section.png");
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  position: relative;
  height: 478px;
  filter: grayscale(1);
  transition: all 0.3s ease;
  overflow: hidden;
}

.top-games-grid-right {
  flex: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.top-games-mini {
  background-image: linear-gradient(to top, #1c1c1c, rgba(0, 0, 0, 0)),
    url("../assets/images/right-section.png");
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  position: relative;
  height: 227px;
  width: 100%;
  filter: grayscale(1);
  transition: all 0.3s ease;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.top-games-highlight:hover,
.top-games-mini:hover {
  filter: grayscale(0);
}

.top-games-overlay {
  position: absolute;
  inset: 0;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.top-games-batch {
  background: rgba(255, 255, 255, 0.901);
  color: black;
  padding: 10px 15px;
  font-size: 12px;
  font-weight: 500;
  border: none;
  border-radius: 6px;
  position: absolute;
  top: 28px;
  right: 26px;
}

.top-games-info {
  position: absolute;
  bottom: 28px;
  left: 26px;
  z-index: 2;
}

.top-games-info h3 {
  font-size: 18px;
  margin: 0;
}

.top-games-info p {
  font-size: 14px;
  color: #ccc;
  margin: 4px 0 0;
}

.top-games-arrow {
  position: absolute;
  bottom: 28px;
  right: 26px;
  border: 1.5px solid white;
  border-radius: 50%;
  padding: 4px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.top-games-arrow span {
  display: inline-block;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
  font-size: 30px;
  position: relative;
  bottom: 3px;
}

.top-games-highlight:hover .top-games-arrow,
.top-games-mini:hover .top-games-arrow {
  background-color: #d94d62;
  border: none;
}

.top-games-mini:hover .top-games-arrow span,
.top-games-highlight:hover .top-games-arrow span {
  transform: rotate(-45deg);
  position: relative;
  bottom: 2.5px;
  right: 2.5px;
}

.top-games-mini:hover .top-games-batch,
.top-games-highlight:hover .top-games-batch {
  background-color: #400d14;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.249);
}

/* Consolidated Media Queries */
@media (max-width: 1600px) {
  /* .similar-games-container {
    max-width: 1400px; 
  } */

  .similar-games-overlay {
    padding: 30px;
  }

  .similar-games-right {
    padding: 30px;
  }

  .similar-games-left h1 {
    font-size: 28px;
  }

  .similar-games-left p {
    font-size: 15px;
  }

  .similar-games-left button {
    padding: 13px 20px;
    font-size: 15px;
  }

  .similar-games-right h2 {
    font-size: 30px;
  }

  .similar-game-card img {
    width: 70px;
    height: 70px;
  }

  .similar-game-card h4 {
    font-size: 18px;
  }

  .similar-game-card p {
    font-size: 15px;
  }
}

@media (max-width: 1200px) {
  .top-games-section {
    padding: 100px;
  }

  .top-games-header h2 {
    font-size: 32px;
  }

  .top-games-highlight {
    width: 100%;
    height: 420px;
  }

  .top-games-mini {
    height: 210px;
  }

  /* .similar-games-container {
    max-width: 1000px;
  } */

  .similar-games-left {
    flex: 1.3;
  }

  .similar-games-right {
    flex: 0.9;
  }
}

@media (max-width: 1024px) {
  .card {
    width: 280px;
    height: 382px;
  }

  .new-games-section .game-container {
    width: 280px;
    height: 382px;
  }

  .similar-games-container {
    flex-direction: column;
    /* max-width: 800px; */
  }

  .similar-games-left,
  .similar-games-right {
    flex: none;
    width: 100%;
  }

  .similar-games-left {
    height: 350px;
    justify-content: flex-start;
    align-items: flex-end;
    padding: 20px;
  }

  .similar-games-overlay {
    padding: 20px;
    width: 100%;
  }

  .similar-games-right {
    padding: 20px;
  }

  .similar-games-left h1 {
    font-size: 26px;
  }

  .similar-games-left p {
    font-size: 14px;
  }

  .similar-games-left button {
    padding: 12px 18px;
    font-size: 14px;
  }

  .similar-games-right h2 {
    font-size: 28px;
  }

  .similar-game-card img {
    width: 60px;
    height: 60px;
  }

  .similar-game-card h4 {
    font-size: 16px;
  }

  .similar-game-card p {
    font-size: 14px;
  }
}

@media (max-width: 992px) {
  .top-games-grid {
    flex-direction: column;
    width: 100%;
  }

  .top-games-highlight {
    width: 100%;
    height: 380px;
    flex: none;
  }

  .top-games-grid-right {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .top-games-mini {
    width: 100%;
    height: 200px;
  }

  .top-games-header h2 {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .card {
    width: 280px;
    height: 382px;
  }

  .new-games-section .game-container {
    width: 280px;
    height: 382px;
  }

  .top-games-section {
    padding: 60px 20px;
  }

  .top-games-header h2 {
    font-size: 24px;
  }

  .top-games-highlight {
    width: 100%;
    height: 320px;
  }

  .top-games-mini {
    width: 100%;
    height: 180px;
  }

  .top-games-batch {
    top: 20px;
    right: 20px;
    padding: 8px 12px;
    font-size: 11px;
  }

  .top-games-arrow {
    width: 32px;
    height: 32px;
    bottom: 20px;
    right: 20px;
  }

  .top-games-arrow span {
    font-size: 24px;
  }

  .top-games-info h3 {
    font-size: 16px;
  }

  .top-games-info p {
    font-size: 13px;
  }

  /* .similar-games-container {
    max-width: 600px;
  } */

  .similar-games-left {
    height: 300px;
  }

  .similar-games-overlay {
    padding: 15px;
  }

  .similar-games-right {
    padding: 15px;
  }

  .similar-games-left h1 {
    font-size: 24px;
  }

  .similar-games-left p {
    font-size: 13px;
  }

  .similar-games-left button {
    padding: 10px 16px;
    font-size: 13px;
  }

  .similar-games-right h2 {
    font-size: 24px;
  }

  .similar-game-card img {
    width: 50px;
    height: 50px;
    margin-right: 15px;
  }

  .similar-game-card h4 {
    font-size: 14px;
  }

  .similar-game-card p {
    font-size: 12px;
  }
}

@media (max-width: 600px) {
  /* .similar-games-container {
    max-width: 100%;
    margin: 20px 10px;
  } */

  .similar-games-left h1 {
    font-size: 22px;
  }

  .similar-games-left p {
    font-size: 12px;
  }

  .similar-games-left button {
    padding: 8px 14px;
    font-size: 12px;
  }

  .similar-games-right h2 {
    font-size: 20px;
  }

  .similar-game-card {
    flex-direction: row;
    align-items: flex-start;
    padding: 8px;
  }

  .similar-game-card img {
    width: 45px;
    height: 45px;
    margin-right: 12px;
  }

  .similar-game-card h4 {
    font-size: 13px;
  }

  .similar-game-card p {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .card {
    width: 280px;
    height: 382px;
  }

  .new-games-section .game-container {
    width: 280px;
    height: 382px;
  }

  .top-games-section {
    padding: 40px 16px;
  }

  .top-games-highlight {
    width: 100%;
    height: 280px;
  }

  .top-games-mini {
    width: 100%;
    height: 160px;
  }

  .top-games-arrow {
    width: 28px;
    height: 28px;
  }

  .top-games-arrow span {
    font-size: 20px;
  }

  .top-games-header h2 {
    font-size: 22px;
  }

  /* .similar-games-container {
    margin: 20px 5px;
  } */

  .similar-games-left {
    height: 250px;
  }

  .similar-games-overlay {
    padding: 10px;
  }

  .similar-games-right {
    padding: 10px;
  }

  .similar-games-left h1 {
    font-size: 20px;
  }

  .similar-games-left p {
    font-size: 11px;
    margin-bottom: 15px;
  }

  .similar-games-left button {
    padding: 6px 12px;
    font-size: 11px;
  }

  .similar-games-right h2 {
    font-size: 18px;
  }

  .similar-game-card {
    padding: 6px;
  }

  .similar-game-card img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
  }

  .similar-game-card h4 {
    font-size: 12px;
  }

  .similar-game-card p {
    font-size: 10px;
  }
}

:root {
  --primary-color-50: #fceef0;
  --primary-color-300: #dd465a;
  --grey-100: #d9d9d9;
  --grey-200: #f7f8fb;
  --grey-500: #d4d4d4;
  --grey-700: #2d2d2d;
}

.custom-hero-wrapper {
  margin-top: 1%;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
}

.custom-hero-slider-container {
  width: 100%;
  height: 50vh;
  display: flex;
  position: relative;
  align-items: center;
}

.custom-hero-slider {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
}

.custom-hero-slide {
  position: absolute;
  height: 100%;
  transition: all 0.9s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.custom-hero-slide img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 0.9s ease-in-out;
}

.custom-hero-left-slide {
  height: 99.7%;
  left: 0;
  width: 10%;
  filter: grayscale(100%);
  z-index: 1;
  border-top: 5px solid #636060;
  border-bottom: 5px solid #636060;
}

.custom-hero-center-slide {
  left: 11%;
  right: 22%;
  width: 68%;
  z-index: 2;
}

.custom-hero-right-slide {
  height: 99.7%;
  left: 80%;
  width: 22%;
  filter: grayscale(100%);
  z-index: 1;
  border-top: 5px solid #636060;
  border-bottom: 5px solid #636060;
}

.custom-hero-info-overlay {
  position: absolute;
  top: 15rem;
  bottom: 10px;
  left: 10px;
  right: 0;
  padding: 1rem;
  color: var(--primary-50);
  transform: translateY(100%);
  transition: transform 0.3s ease;

  z-index: 3;
}

.custom-hero-slide:hover .custom-hero-info-overlay {
  transform: translateY(0);
}

.custom-hero-center-slide .custom-hero-info-overlay {
  transform: translateY(0);
}

.custom-hero-info-overlay h3 {
  font-size: 1.5rem;
  margin-bottom: 0.3125rem;
  font-weight: 600;
  text-shadow: 5px 5px 6px rgba(59, 57, 57, 0.5);
}

.custom-hero-info-overlay p {
  font-size: 1rem;
  margin-bottom: 0.625rem;
  color: var(--grey-50);
  font-weight: 500;
  transition: opacity 0.2s;
  opacity: 1;
  text-shadow: 5px 5px 6px rgba(73, 68, 68, 0.5);
}

.custom-hero-info-overlay .custom-hero-view-details-btn {
  transition: opacity 0.2s;
  opacity: 1;
}

.custom-hero-view-details-btn {
  background-color: var(--primary-color-50);
  color: var(--grey-700);
  border: none;
  margin-top: 10px;
  height: 2.5rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease, opacity 0.2s;
  display: inline-block;
}

.custom-hero-view-details-btn:hover {
  background-color: var(--primary-color-300);
}

.custom-hero-dots-container {
  display: flex;
  justify-content: center;
  margin-top: 1.25rem;
  gap: 0.625rem;
  position: relative;
  z-index: 4;
}

.custom-hero-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: var(--grey-400);
  cursor: pointer;
  transition: background-color 0.3s ease, width 0.3s ease, height 0.3s ease;
}

.custom-hero-dot.custom-hero-active {
  background-color: var(--primary-color-300);
  width: 1.5rem;
  height: 0.75rem;
  border-radius: 0.375rem;
}

/* Sidbar-extra */

#backdrop {
  background-color: black;
  opacity: 0.2;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 85;
  display: none;
}
/* Sidebar */

#sidebar {
  position: fixed;
  top: 0;
  left: -100%;
  height: 100%;
  max-height: 100vh;
  background-color: var(--grey-50);
  padding: 24px 40px;
  width: 320px;
  transition: left 0.2s ease-in-out;
  overflow-y: scroll;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2em;
}

#sidebar::-webkit-scrollbar {
  width: 5px;
}

#sidebar::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--grey-200);
  border-radius: 10px;
}

#sidebar::-webkit-scrollbar-thumb {
  background: var(--primary-500);
  border-radius: 10px;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

#sidebar-header {
  display: flex;
  align-items: center;
  gap: 2em;
  margin-bottom: 36px;
}

#sidebar-brand {
  height: 30px;
  width: auto;
}

#sidebar-footer {
  width: 100%;
  text-align: center;
  font-size: 12px;
}

.sidebar-nav-list {
  display: flex;
  flex-direction: column;
  padding: 0;
  list-style: none;
}

.sidebar-nav-item {
  padding: 12px;
  border-radius: 8px;
}
.sidebar-nav-item.active {
  background-color: var(--primary-50);
}

.sidebar-nav-item.active .sidebar-nav-link svg,
.sidebar-nav-item.active .sidebar-nav-link path {
  fill: var(--grey-600);
}

.sidebar-nav-item.active .sidebar-nav-link {
  color: var(--primary-500);
}

.sidebar-nav-item.active .sidebar-nav-link svg,
.sidebar-nav-item.active .sidebar-nav-link path {
  fill: var(--primary-500);
}

.sidebar-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Sidebar dropdown */

.btn-sidebar-dropdown {
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
}

.sidebar-dropdown-list {
  max-height: 100%;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
}

/* New and Most Popular Games Responsiveness */

@media (max-width: 1024px) {
  .new-games-section .games-grid,
  .games {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .new-games-section .games-grid,
  .games {
    flex-direction: column;
    align-items: center;
  }

  .new-games-section .game-container,
  .games .card {
    width: 90%;
    max-width: 320px;
    height: auto;
  }
}

@media (max-width: 480px) {
  .new-games-section .game-container,
  .games .card {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
}

/* hero sliders  slight bounce effect*/
@keyframes BounceCenter {
  0% {
    transform: translateX(0) scaleX(1);
  }
  30% {
    transform: translateX(-0.5%) scaleX(0.98);
  }
  50% {
    transform: translateX(0.5%) scaleX(1.03);
  }
  70% {
    transform: translateX(-0.2%) scaleX(1.005);
  }
  100% {
    transform: translateX(0) scaleX(1);
  }
}

@keyframes BounceLeft {
  0% {
    transform: translateX(0);
  }
  30% {
    transform: translateX(-5.5%);
  }
  50% {
    transform: translateX(-10.5%);
    opacity: 1;
  }
  70% {
    transform: translateX(-8.2%);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes BounceRight {
  0% {
    transform: translateX(0);
  }
  30% {
    transform: translateX(18.5%);
  }
  50% {
    transform: translateX(15.5%);
    opacity: 1;
  }
  70% {
    transform: translateX(8.2%);
    opacity: 1;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.animate-bounce-center {
  animation: BounceCenter 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-bounce-left {
  animation: BounceLeft 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-bounce-right {
  animation: BounceRight 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
