body {
  font-family: 'Aldrich', sans-serif !important;
  background-color: black;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Add a pseudo-element for the background */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../imgs/test_background.webp');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
  will-change: transform; /* Optimize for animations */
}

/* Ensure content stays above background */
main {
  position: relative;
  flex: 1 0 auto;
  margin-bottom: 2rem;
  margin-top: 6rem;
  z-index: 1;
  padding-top: 70px; /* Height of navbar */
  margin-top: 0;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

/* Optimize background for mobile */
@media (max-width: 768px) {
  body::before {
    background-attachment: scroll; /* Remove fixed attachment on mobile */
    transform: translateZ(0); /* Force GPU acceleration */
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    -webkit-perspective: 1000;
  }
}

/* Remove any existing background-attachment: fixed from these elements */
.navbar,
.mobile-menu,
.game-content,
.register-container {
  background-attachment: scroll !important;
}

footer {
  flex-shrink: 0;
  width: 100%;
  position: relative;
  bottom: 0;
  background-color: black;
  color: white;
  padding: 1rem 0;
  opacity: 0.5;
}

.footer-container {
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: relative;
}

.social-links-container {
  display: flex;
  justify-content: center;
  margin-bottom: 0.5rem;
  width: 100%;
}

.social-links-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.copyright-text {
  font-size: 0.875rem;
  text-align: center;
}

/* Desktop styles */
@media (min-width: 768px) {
  .footer-container {
    flex-direction: column;

    position: relative;
  }

  .social-links-wrapper {
    gap: 1.5rem;
  }

  .copyright-text {
    position: absolute;
    left: 0;
    bottom: 50%;
    transform: translateY(50%);
    font-size: 1rem;
    text-align: left;
  }

  .social-links-container {
    margin-bottom: 0;
    justify-content: center;
  }
}

.borderL {
  border-left: solid;
  border-color: #f61717;
}
.borderR {
  border-right: solid;
  border-color: #f61717;
}
.borderB {
  border-bottom: solid;
  border-color: #f61717;
}
.h-400 {
  height: 100rem;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.logo {
  width: 50px;
  height: 50px;
  top: 10px;
  right: 95%;
}

.hi {
  margin-bottom: 200px;
}

.border-red-500 {
  border-color: #f61717 !important;
}

.yt-card.visible {
}
.navbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr; /* Three columns for proper centering */
  align-items: center;
  width: 100%;
  padding: 0 1.5rem;
  height: 70px;
  background-color: black;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
.cardContact {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
  width: 280px; /* Fixed width for both cards */
  height: 120px; /* Fixed height for both cards */
  transition: all 0.3s ease-in;
  border-radius: 8px;
  padding: 1rem;
  margin: 0 1rem;
}
.cardContact:hover {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.contactsText {
}
.contacts {
}
@keyframes fadeInYMinus {
  from {
    opacity: 0;
    transform: translate3d(0, -35%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInYPlus {
  from {
    opacity: 0;
    transform: translate3d(0, 35%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInXMinus {
  from {
    opacity: 0;
    transform: translate3d(-35%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInXPlus {
  from {
    opacity: 0;
    transform: translate3d(35%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
/* Hide parts of the embed */

.EmbeddedMedia {
  margin-top: 100px;
}
.instagram-embed iframe {
  position: relative;
  width: 350px;
  height: 390px;
  border: 0;
  margin-bottom: 80px;
}
footer span {
  font-family: 'PT Sans', sans-serif !important;
}
.biography {
  font-family: 'PT Sans', sans-serif !important;
}
.video-text {
  display: flex;
  position: absolute;
  top: 112%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 1;
  color: #fff;
  font-weight: bold;
  white-space: nowrap;
}

.card {
  transition: opacity 0.3s;
}

.instagram-embed {
  transition: opacity 0.3s;
}

#instagramfeed:hover .instagram-embed {
  opacity: 0.3 !important;
}

#instagramfeed .instagram-embed:hover {
  opacity: 1 !important;
}

.bannerAbout {
  width: 100%;
  max-width: 750px;
  height: auto;
  aspect-ratio: 3/1;
  object-fit: cover;
  border-radius: 8px;
  margin: 0 auto;
}

.biography {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  padding: 0 1rem;
}

.brmedium {
  opacity: 0;
  display: block;
  margin-bottom: 15px;
}
.brlow {
  opacity: 0;
  display: block;
  margin-bottom: 4px;
}

.sponsorCardpartner {
  flex: 0 0 auto;
  width: calc(25% - 1.125rem); /* 4 items per row with gap consideration */
  max-width: 300px;
  margin: 0;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
}

/* Remove the old hover effects */
#sponsors:hover .sponsorCardpartner {
  opacity: 0.3 !important;
}

#sponsors .sponsorCardpartner:hover {
  background: rgba(255, 255, 255, 0.1);
  opacity: 1 !important;
}

/* Footer powered by styling */
.powered-by {
  position: absolute;
  bottom: 10px;
  right: 2rem;
  display: flex;
  align-items: flex-end;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.powered-by span {
  margin-bottom: -5px !important;
}

.monster-logo {
  height: 75px;
  margin-left: 5px;
  margin-bottom: -30px;
  margin-right: -15px;
}

@media (max-width: 768px) {
  .powered-by {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 0.5rem;
    justify-content: center;
    font-size: 0.75rem;
    align-items: flex-end;
  }

  .powered-by span {
    margin-bottom: 10px !important;
  }

  .monster-logo {
    height: 70px;
    margin-bottom: -20px;
    margin-right: -10px;
  }
}

/* New hover effects that only work after animations complete */
#sponsors.animations-completed:hover .sponsorCardpartner.animation-completed {
  opacity: 0.3;
  pointer-events: auto; /* Enable interactions only after all animations complete */
}

#sponsors.animations-completed .sponsorCardpartner.animation-completed:hover {
  opacity: 1 !important;
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
}

.sponsorCardpartner.animation-completed:hover img {
  transform: scale(1.05);
}

.sponsorCardpartner a {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
  height: 140px; /* Fixed height for logo container */
}

.sponsorCardpartner img {
  width: auto;
  max-width: 100%;
  max-height: 120px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.sponsorCardpartner p {
  margin: 0;
  line-height: 1.4;
  font-size: 0.95rem;
}

.sponsorCardpartner:hover {
  background: rgba(255, 255, 255, 0.1);
}

.sponsorCardpartner:hover img {
  transform: scale(1.05);
}

#sponsors:hover .sponsorCardpartner {
  opacity: 0.3 !important;
}

#sponsors .sponsorCardpartner:hover {
  background: rgba(255, 255, 255, 0.1);
  opacity: 1 !important;
}
.hi2 {
  margin-bottom: 100px;
}
.introText {
  font-family: 'PT Sans', sans-serif !important;
  width: 640px;
  height: 130px;
  background-image: linear-gradient(
    0deg in srgb,
    rgba(0, 0, 0, 0) 0%,
    rgb(0, 0, 0, 0.3) 60% 60%
  );
}

#gif {
  animation: playOnce 3s steps(1, end); /* adjust 3s to the GIF duration */
}

@keyframes playOnce {
  from {
    visibility: visible;
  }
  to {
    visibility: hidden;
  }
}

/* Logo container - left column */
.logo-container {
  grid-column: 1;
  justify-self: start;
}

/* Navigation links - center column */
.nav-links {
  grid-column: 2;
  justify-self: center;
}

/* Burger menu - right column */
.burger {
  position: absolute;

  right: 1rem;
  width: 30px;
  height: 20px;
  cursor: pointer;
  z-index: 100;
}

/* Burger menu lines */
.burger span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 2px;
  background-color: white;
  transition: all 0.3s ease;
}

.burger span::before,
.burger span::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: white;
  transition: all 0.3s ease;
}

.burger span::before {
  transform: translateY(-8px);
}

.burger span::after {
  transform: translateY(8px);
}

/* Burger menu animation */
.burger.active span {
  background-color: transparent;
}

.burger.active span::before {
  transform: rotate(45deg);
}

.burger.active span::after {
  transform: rotate(-45deg);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .burger {
    display: block;
  }

  .nav-links {
    display: none !important;
  }

  .logo-container {
    grid-column: 2;
    justify-self: center;
  }

  .twitch-container {
    display: none;
  }

  header {
    position: relative;
  }

  .twitch-container {
    margin-right: 50px; /* Make space for burger menu */
  }
}

.burger div {
  width: 25px;
  height: 2px;
  background-color: white;
  margin: 6px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* Burger menu animation */
.burger.active .line1 {
  transform: rotate(-45deg) translate(-5px, 7px);
  width: 28px;
}

.burger.active .line2 {
  opacity: 0;
  transform: translateX(-10px);
}

.burger.active .line3 {
  transform: rotate(45deg) translate(-5px, -7px);
  width: 28px;
}

/* Hover effect for burger menu */
.burger-menu:hover div {
  background-color: #f61717;
}

/* Button styles */
.button-container {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: center;
  width: 100%;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.register-btn {
  opacity: 0;
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-weight: bold;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(135deg, #ff0000, #cc0000);
  border-radius: 8px;
  transition: transform 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.4),
    inset 0 0 10px rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  will-change: transform, opacity;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.register-btn svg {
  width: 20px;
  height: 20px;
  margin-right: 0.5rem;
  flex-shrink: 0;
}

.register-btn::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transform: rotate(45deg);
  animation: shine 3.5s infinite;
}

.register-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.6),
    inset 0 0 15px rgba(255, 255, 255, 0.5);
  background: linear-gradient(135deg, #ff1a1a, #e60000);
}

@keyframes shine {
  0% {
    left: -150%;
  }
  100% {
    left: 150%;
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .button-container {
    gap: 0.75rem;
    padding: 0 1rem;
  }

  .register-btn {
    min-width: 150px;
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .register-btn svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .button-container {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .register-btn {
    width: 100%;
    max-width: 200px;
  }
}

.image-switcher {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
  opacity: 0; /* Start hidden for fade in animation */
}

.image-switcher.hover-glow {
  box-shadow: 0 0 40px rgba(255, 0, 0, 0.4);
  transform: translateY(-8px);
}

.image-switcher img {
  object-fit: cover;
  backface-visibility: hidden;
}

.image-switcher:hover img:first-child {
  opacity: 0;
  transform: scale(1.05);
}

.image-switcher img:last-child {
  transform: scale(1.05);
}

.game-content {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
  will-change: transform, opacity;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.case-card {
  transition: all 0.3s ease;
}

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

.case-card button {
  transition: all 0.3s ease;
}

.case-card button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}

.game-option {
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.1);
  opacity: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  will-change: transform, opacity;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.game-option:hover {
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.2);
  transform: translateY(-2px);
  border-color: #ff3333 !important;
}

.game-option.active {
  border-color: #ff0000 !important;
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.4);
  transform: translateY(-2px);
}

.game-option::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 0, 0, 0.1),
    rgba(255, 0, 0, 0.2)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.game-option.active::before {
  opacity: 1;
}

.glow-text {
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.5), 0 0 20px rgba(255, 0, 0, 0.3),
    0 0 30px rgba(255, 0, 0, 0.1);
}

/* Hover effect for shuffle items */
.game-content[data-content='shuffle'] .flex {
  transition: opacity 0.4s ease;
}

/* New fade in animation that doesn't overlap with switcher */
@keyframes fadeInContent {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Remove the previous hover styles */
.game-content[data-content='shuffle'] .flex:hover {
  background: none;
  transform: none;
}

/* Update image container styles */
.game-content[data-content='shuffle'] .flex img {
  width: 320px;
  height: 180px;
  object-fit: cover;
  border: 1px solid white;
  border-radius: 8px;
  transition: border-color 0.3s ease;
}
.game-content[data-content='hellcase'] .flex:hover {
  background: none;
  transform: none;
}

/* Update image container styles */
.game-content[data-content='hellcase'] .flex img {
  width: 320px;
  height: 180px;
  object-fit: cover;
  border: 1px solid white;
  border-radius: 8px;
  transition: border-color 0.3s ease;
}

/* Optional: Slightly highlight border on parent hover */

@keyframes buttonHover {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
  }
}

@keyframes buttonHoverOut {
  0% {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
  }
  100% {
    transform: translateY(0);
    box-shadow: none;
  }
}

/* Register page specific styles */
.register-container {
  padding: 0 20px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.register-title {
  font-size: 2.25rem;
  margin-bottom: 2rem;
}

.game-options-container {
  display: flex;
  gap: 1rem;
  justify-content: center;
  width: 100%;
}

.steps-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

/* Responsive styles */
@media (max-width: 768px) {
  .register-title {
    font-size: 1.75rem;
    padding: 0 1rem;
  }

  .game-options-container {
    flex-direction: column;
    align-items: center;
    padding: 0 1rem;
  }

  .game-option {
    width: 100% !important;
    max-width: 300px;
  }

  .steps-container {
    padding: 0 0.5rem;
  }

  .game-content .flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem !important;
  }

  .game-content .flex img {
    width: 100% !important;
    max-width: 300px;
    height: auto !important;
  }

  .game-content .flex-1 {
    text-align: center !important;
  }

  .register-btn {
    width: 100%;
    justify-content: center;
  }

  /* Adjust arrow positioning for mobile */
  .arrow-container {
    margin: 1rem 0;
  }

  .fa-chevron-down {
    position: static !important;
    transform: none !important;
  }
}

@media (max-width: 480px) {
  .register-title {
    font-size: 1.5rem;
  }

  .game-content {
    padding: 1rem !important;
  }

  .game-content h4 {
    font-size: 1.1rem !important;
  }

  .game-content p {
    font-size: 0.9rem;
  }
}

/* Mobile menu styles */
.mobile-menu {
  margin-left: 0 !important;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  height: calc(100vh - 70px);
  background-color: rgba(0, 0, 0, 0.95);
  padding: 2rem 1rem;
  z-index: 40;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding-bottom: 15rem;

  /* Add transform and opacity for animation */
  transform: translateX(100%);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; /* Keep display flex always on */
  visibility: hidden; /* Use visibility instead of display none */
}

.mobile-menu.show {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

/* Optional: Add slide animation for menu items */
.mobile-menu.show .mobile-link {
  animation: slideIn 0.4s ease forwards;
  animation-delay: calc(var(--index) * 0.1s);
  opacity: 0;
}

@keyframes slideIn {
  from {
    transform: translateX(20px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Mobile menu link styles */
.mobile-link {
  justify-content: center;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 300px; /* Limit width for better appearance */
  padding: 1rem;
  color: white;
  transition: all 0.3s ease;
}

.mobile-link div {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center; /* Center the content */
  gap: 1.5rem; /* Space between icon and text */
}

.mobile-link svg {
  width: 24px;
  height: 24px;
}

.mobile-link span {
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* Hover effect for mobile links */
.mobile-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

/* Remove animation classes and keyframes */
.mobile-menu.show .mobile-link {
  /* Remove animation */
  animation: none;
}

/* Remove the slideIn animation keyframes since we're not using it anymore */
@keyframes slideIn {
  /* We can remove this entirely */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .burger-menu {
    display: flex;
  }

  .navbar {
    padding: 0 1rem;
  }

  .nav-links {
    display: none !important;
  }

  .logo {
    left: 1rem;
  }

  .twitch {
    display: none;
  }
}

/* Animation for burger menu transformation */
.burger-menu span {
  transition: all 0.3s ease;
}

/* Responsive styles for register page */
@media (max-width: 768px) {
  .register-container {
    padding: 0 15px;
  }

  .game-options-container {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .game-option {
    width: 100% !important;
    max-width: 280px;
  }

  .steps-container .flex {
    flex-direction: column !important;
    padding: 1rem !important;
    gap: 1.5rem !important;
  }

  .steps-container .flex img {
    width: 100% !important;
    max-width: 300px;
    height: auto !important;
  }

  .steps-container .flex-1 {
    text-align: center !important;
  }

  .steps-container .w-16 {
    width: 100% !important;
    margin-bottom: 1rem;
  }

  .register-btn {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    display: block;
  }

  /* Adjust arrow positioning */
  .fa-chevron-down {
    position: static !important;
    transform: none !important;
    display: block;
    text-align: center;
    margin: 1rem 0;
  }

  /* Adjust text sizes */
  #registerText {
    font-size: 1.75rem !important;
    padding: 0 1rem;
  }

  .steps-container h4 {
    font-size: 1.2rem !important;
  }

  .steps-container p {
    font-size: 0.95rem;
  }
}

/* Additional adjustments for very small screens */
@media (max-width: 480px) {
  .register-container {
    padding: 0 10px;
  }

  #registerText {
    font-size: 1.02124rem !important;
  }

  .game-option {
    max-width: 240px;
  }

  .steps-container .flex {
    padding: 0.75rem !important;
  }

  .steps-container h4 {
    font-size: 1.1rem !important;
  }

  .steps-container p {
    font-size: 0.9rem;
  }

  .register-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  /* Adjust spacing between steps */
  .steps-container .gap-8 {
    gap: 2rem !important;
  }
}

/* Improve touch targets on mobile */
@media (hover: none) {
  .game-option {
    padding: 1rem;
  }

  .register-btn {
    padding: 15px 25px;
  }
}

/* Ensure images don't overflow on mobile */
.steps-container img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* Improve spacing and readability */
.steps-container {
  margin-top: 2rem;
}

.game-content {
  margin-top: 1.5rem;
}

/* Add smooth transitions for opacity */
.game-content .flex,
.register-btn-shuffle,
.register-btn-hellcase {
  transition: opacity 0.3s ease;
}

/* Add performance optimizations */
.game-option,
.game-content,
.steps-container .flex,
#registerText,
.register-btn {
  will-change: transform, opacity;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

/* Instagram Embed Responsive Styles */
.instagram-embed {
  position: relative;
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
}

.instagram-embed iframe {
  width: 100%;
  min-width: 200px;
  max-width: 350px;
  height: auto;
  aspect-ratio: 1/1.1;
  margin: 0 auto;
}

/* Responsive Text Sizes */
@media (max-width: 768px) {
  #partnersText,
  #recentVideoText,
  #instagramText {
    font-size: 1.75rem;
  }

  /* Adjust spacing for mobile */
  main {
    padding-top: 90px;
  }

  /* Adjust grid gaps */
  #sponsors,
  #video-cards,
  #instagramfeed {
    gap: 1rem;
  }

  /* Center align items on mobile */
  .mix-blend {
    margin: 0 auto;
    padding: 0 1rem;
  }

  /* Adjust video size on mobile */
  #video-cards .card {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }
}

/* Very Small Screens */
@media (max-width: 480px) {
  #partnersText,
  #recentVideoText,
  #instagramText {
    font-size: 1.5rem;
  }

  /* Adjust padding and margins */
  main {
    padding-top: 80px;
  }

  .instagram-embed {
    max-width: 300px;
  }
}

/* Performance Optimizations */
.sponsorCard,
.instagram-embed,
#video-cards .card {
  will-change: transform, opacity;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

/* Loading States */
.instagram-embed.loading {
  min-height: 350px;
  background: rgba(0, 0, 0, 0.1);
}

/* Touch Device Optimizations */
@media (hover: none) {
  .sponsorCard:hover img {
    transform: none;
  }

  .sponsorCard:active img {
    transform: scale(1.02);
  }
}

/* About page styles */
.biography-container {
  padding: 2rem;
  border-color: white;
  border-width: 1px;
  border-style: solid;
  border-radius: 8px;
  margin-top: 2rem;
}

.overview-container {
  width: 100%;
  max-width: 750px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.overview-text {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .bannerAbout {
    max-width: 100%;
    margin: 0;
    width: calc(100% - 2rem);
  }

  .biography-container {
    padding: 1.5rem;
    margin: 1rem;
  }

  .biography {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .overview-text {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .brmedium {
    margin-bottom: 10px;
  }

  .brlow {
    margin-bottom: 3px;
  }
}

/* Very small screens */
@media (max-width: 480px) {
  .biography-container {
    padding: 1rem;
  }

  .biography {
    font-size: 0.9rem;
  }

  .overview-text {
    font-size: 0.95rem;
  }

  .brmedium {
    margin-bottom: 8px;
  }
}

/* Performance optimizations */
.bannerAbout,
.biography,
.overview-text {
  will-change: transform, opacity;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

/* Contact Card Styles */
.cardContact {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
  width: 280px; /* Fixed width for both cards */
  height: 120px; /* Fixed height for both cards */
  transition: all 0.3s ease-in;
  border-radius: 8px;
  padding: 1rem;
  margin: 0 1rem;
}

.cardContact:hover {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

/* Contact Container */
.contact-buttons-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .cardContact {
    width: 260px;
    height: 100px;
    margin: 0.5rem;
  }
}

@media (max-width: 480px) {
  .cardContact {
    width: 240px;
    height: 90px;
    font-size: 0.9rem;
  }

  .cardContact svg {
    width: 24px;
    height: 24px;
  }
}

/* Videos Page Styles */
#videosText {
  font-size: 2.5rem;
  margin-top: 2rem;
  margin-bottom: 4rem;
  text-align: center;
  padding: 0 1rem;
  text-transform: uppercase;
}

#video-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 0 1rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

#video-cards .card {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 0, 0, 0.3);
  transition: all 0.3s ease;
  transform: translateZ(0);
  backface-visibility: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

#video-cards .card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* Video Title Overlay */
#video-cards .card::after {
  content: attr(data-title);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9),
    rgba(0, 0, 0, 0.7),
    transparent
  );
  color: white;
  font-size: 0.9rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

/* Hover Effects */
#video-cards .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
  border-color: rgba(255, 0, 0, 0.6);
}

#video-cards .card:hover::after {
  transform: translateY(0);
}

#video-cards .card:hover img {
  transform: scale(1.05);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  #video-cards {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    padding: 0 0.5rem;
  }

  #videosText {
    font-size: 1.8rem;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
  }

  #video-cards .card::after {
    font-size: 0.8rem;
    padding: 0.75rem;
    transform: translateY(0); /* Always show title on mobile */
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.95),
      rgba(0, 0, 0, 0.8),
      rgba(0, 0, 0, 0.6)
    );
  }
}

@media (max-width: 480px) {
  #video-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  #videosText {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  #video-cards .card {
    max-width: 100%;
  }

  .main-content {
    padding: 1rem 0.5rem;
  }
}

/* Sponsor Grid Layout */
.sponsors-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  width: 100%;
  padding: 0 2rem;
  margin: 0 auto;
}

/* Sponsor Card Styles */
.sponsorCard {
  opacity: 0;
  width: 260px;
  height: 370px;
  position: relative;
  aspect-ratio: 1;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 0, 0, 0.3);
  border-radius: 12px;
  padding: 0 2rem 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;

  transition: all 0.3s ease;
  overflow: hidden;
  margin: 0;
}

/* Logo Container */
.sponsorCard .logo-container {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
  margin-top: 1rem;
}

/* Logo Image */
.sponsorCard img {
  max-height: 155px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

/* Hover Effects */
.sponsorCard:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
  border-color: rgba(255, 0, 0, 0.6);
}

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

/* Feature hover effects */
.sponsorCard .feature-text {
  transition: transform 0.3s ease;
}

.sponsorCard:hover .feature-text {
  transform: scale(1.025);
}

/* SVG checkmark hover effects */
.sponsorCard svg {
  transition: transform 0.3s ease;
}

.sponsorCard:hover svg {
  transform: scale(1.1);
}

/* Subtitle hover effect */
.sponsorCard .subtitle-text {
  transition: transform 0.3s ease;
}

.sponsorCard:hover .subtitle-text {
  transform: scale(1.025);
}

/* Code text hover effect */
.sponsorCard .code-text {
  transition: transform 0.3s ease;
}

.sponsorCard:hover .code-text {
  transform: scale(1.025);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .sponsors-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 0;
  }

  .sponsorCard {
    width: 280px;
    height: 390px;
  }
}

@media (max-width: 480px) {
  .sponsors-wrapper {
    gap: 2rem;
  }

  .sponsorCard {
    width: 280px;
    height: 390px;
  }
}

.click-here-btn {
  font-size: 0.75rem;
  width: 85%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  font-weight: bold;
  text-decoration: none;
  color: #ffffff;
  background-color: transparent;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
  border: 2px solid #e60000;
  overflow: hidden;
}
.feature-text {
  font-size: 0.8rem;
  line-height: 1.25rem;
}
/* Add shine animation */
.click-here-btn::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transform: rotate(45deg);
  animation: shine 3.5s infinite;
}

/* Hover effect with scale */
.click-here-btn:hover {
  transform: translateX(-50%) scale(1.03);
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

@keyframes shine {
  0% {
    left: -150%;
  }
  100% {
    left: 150%;
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .click-here-btn:hover {
    transform: translateX(-50%) scale(1.05);
  }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .sponsors-wrapper {
    gap: 1rem;
    padding: 0 1rem;
  }

  .sponsorCard {
    width: 280px;
    height: 390px;
  }

  .click-here-btn {
    font-size: 0.6rem;
    padding: 8px;
    bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .sponsors-wrapper {
    gap: 0.75rem;
  }

  .sponsorCard {
    width: 280px;
    height: 390px;
  }

  .click-here-btn {
    width: 90%;
    font-size: 0.55rem;
    padding: 6px;
  }

  .sponsorCard img {
    width: 75%;
    margin-bottom: 1.5rem;
  }
}

/* Logo/Video Container Styles */
.video-container {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}
.video-container video,
.video-container img {
  width: 100%;
  height: auto;
  max-width: 300px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .video-container,
  .video-container video,
  .video-container img {
    max-width: 80px;
  }
}

/* Leaderboard styles */
.leaderboard-card {
  transition: transform 0.3s ease;
}

.leaderboard-card:hover {
  transform: translateY(-2px);
  background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .leaderboard-container {
  }
}

/* Header layout */
header {
  display: flex;
  align-items: center;
  padding: 0.5rem 2rem;
  width: 100%;
  background-color: rgba(0, 0, 0, 1);
  position: sticky;
  top: 0;
  z-index: 50;
}

.logo-container {
  flex: 0 0 120px; /* Fixed width */
}

.logo-container img {
  width: 60px;
  height: auto;
  transition: transform 0.3s ease;
}

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

.nav-links {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 0 1rem;
}

.twitch-container {
  flex: 0 0 120px; /* Fixed width */
  display: flex;
  justify-content: flex-end;
}

.twitch-container video,
.twitch-container img {
  width: 120px;
  height: auto;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  header {
    padding: 0.8rem;
  }

  .logo-container {
    flex: 0 0 50px;
  }

  .logo-container img {
    width: 50px;
  }

  .nav-links {
    display: none;
  }

  .twitch-container {
    flex: 0 0 100px;
  }

  .twitch-container video,
  .twitch-container img {
    width: 100px;
  }
}

.nav-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  min-width: 120px; /* Ensure consistent width */
}

/* Podium Styles */
.podium-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 0.5rem;
}

.podium-layout {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0.5rem;
  padding: 1rem;
}

.podium-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 90px;
  transition: transform 0.3s ease;
}

.podium-item:hover {
  transform: translateY(-5px);
}

.crown {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(246, 23, 23, 0.5);
}

.player-info {
  background: rgba(0, 0, 0, 0.9);
  padding: 0.5rem;
  border-radius: 6px;
  width: 100%;
  margin-bottom: 0.25rem;
  border: 1px solid rgba(246, 23, 23, 0.3);
  box-shadow: 0 0 20px rgba(246, 23, 23, 0.2);
}

.player-info .username {
  display: block;
  font-size: 0.8rem;
  color: white;
  margin-bottom: 0.25rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.player-info .amount {
  display: block;
  color: #fff;
  font-weight: bold;
  font-size: 0.9rem;
}

.podium-block {
  position: relative;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  border: 1px solid rgba(246, 23, 23, 0.3);
  border-radius: 8px 8px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  box-shadow: 0 0 20px rgba(246, 23, 23, 0.2);
}

.first-place .podium-block {
  background: linear-gradient(
    135deg,
    rgba(246, 23, 23, 0.9),
    rgba(0, 0, 0, 0.9)
  );
  border: 1px solid #f61717;
}

.second-place .podium-block {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1),
    rgba(0, 0, 0, 0.9)
  );
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.third-place .podium-block {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05),
    rgba(0, 0, 0, 0.9)
  );
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.prize-amount {
  position: absolute;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(246, 23, 23, 0.5);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Leaderboard Table Styles */
.leaderboard-container {
  width: 100%;
  max-width: 900px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(246, 23, 23, 0.2);
  margin: 0 0.5rem;
  opacity: 0;
}

.leaderboard-header {
  display: grid;
  grid-template-columns: 100px minmax(100px, 1fr) 100px 100px;
  padding: 0.5rem;
  background: linear-gradient(90deg, #f61717, #cc0000);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 100%;
}

.header-cell {
  color: white;
  text-align: center;
  font-size: 0.8rem;
  padding: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.leaderboard-body {
  padding: 0.25rem;
  width: 100%;
}

.leaderboard-row {
  display: grid;
  grid-template-columns: 100px minmax(100px, 1fr) 100px 100px;
  padding: 0.5rem;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  width: 100%;
}

.row-cell {
  color: white;
  text-align: center;
  font-size: 0.8rem;
  padding: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.row-cell.position {
  font-weight: bold;
  color: #f61717;
}

.row-cell.username {
  text-align: center;
  padding: 0 0.5rem;
}

.row-cell.amount,
.row-cell.reward {
  font-weight: bold;
  color: #fff;
}

/* Desktop styles */
@media (min-width: 768px) {
  .podium-item {
    min-width: 200px;
  }

  .crown {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }

  .player-info {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
  }

  .player-info .username {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }

  .player-info .amount {
    font-size: 1.3rem;
  }

  .prize-amount {
    font-size: 1.5rem;
  }

  .leaderboard-header {
    grid-template-columns: 120px minmax(200px, 1fr) 150px 150px;
  }

  .header-cell {
    font-size: 1rem;
    padding: 0.5rem;
  }

  .leaderboard-row {
    grid-template-columns: 120px minmax(200px, 1fr) 150px 150px;
  }

  .row-cell {
    font-size: 1rem;
    padding: 0.5rem;
  }

  .row-cell.username {
    padding-left: 2rem;
  }
}

.wagered-label {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  margin-bottom: 0.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (min-width: 768px) {
  .wagered-label {
    font-size: 0.8rem;
    margin-bottom: 0.2rem;
  }
}

.shuffle-logo {
  opacity: 0;
  width: 246; /* Smaller base width for mobile */
  margin: 1rem auto 1.5rem;
  transition: all 0.3s ease;
}

.shuffle-logo:hover {
  filter: drop-shadow(0 0 15px rgba(246, 23, 23, 0.5));
  transform: scale(1.02);
}

/* Tablet */
@media (min-width: 768px) {
  .shuffle-logo {
    width: 200px;
    margin: 1rem auto 2rem;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .shuffle-logo {
    width: 250px;
    margin: 1.5rem auto 2.5rem;
  }
}

/* Larger screens */
@media (min-width: 1280px) {
  .shuffle-logo {
    width: 246px;
  }
}

/* Adjust main content to account for sticky header */
main {
  padding-top: 1rem;
}

.disclaimer-box {
  background: rgba(246, 23, 23, 0.1);
  border: 1px solid rgba(246, 23, 23, 0.3);
  border-radius: 8px;
  padding: 1rem;
  color: #fff;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
}

@media (max-width: 768px) {
  .disclaimer-box {
    padding: 0.75rem;
  }
}

.countdown-timer {
  opacity: 0;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 1rem;
}

.timer-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
  background: rgba(246, 23, 23, 0.1);
  border: 1px solid rgba(246, 23, 23, 0.3);
  border-radius: 8px;
  padding: 1rem;
}

.timer-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 70px;
}

.time-value {
  font-size: 2rem;
  font-weight: bold;
  color: #f61717;
}

.time-label {
  font-size: 0.8rem;
  color: #fff;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

@media (max-width: 768px) {
  .timer-container {
    gap: 0.5rem;
    padding: 0.75rem;
  }

  .timer-block {
    min-width: 60px;
  }

  .time-value {
    font-size: 1.5rem;
  }

  .time-label {
    font-size: 0.7rem;
  }
}

.disclaimer-box svg {
  width: 30px;
  height: 30px;
  min-width: 30px; /* Prevent shrinking */
  margin-right: 1rem;
}

@media (min-width: 768px) {
  .disclaimer-box svg {
    width: 50px;
    height: 50px;
    min-width: 50px;
    margin-right: 1.5rem;
  }
}

/* Drive Container Styles */
.drive-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

.iframe-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 75%;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(246, 23, 23, 0.2);
  border: 1px solid rgba(246, 23, 23, 0.3);
}

.iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
}

@media (max-width: 768px) {
  .drive-container {
    padding: 0.5rem;
  }

  .iframe-container {
    padding-bottom: 100%;
  }
}
iframe {
  filter: invert(1) hue-rotate(180deg);
}

/* Add this to your existing CSS */
@media (max-width: 768px) {
  .click-here-btn i {
    display: none; /* Hide icons on mobile */
  }

  .click-here-btn {
    justify-content: center; /* Center text after removing icon */
    gap: 0; /* Remove gap since there's no icon */
    font-size: 0.65rem; /* Can increase font size slightly since we have more space */
    padding: 8px 12px; /* Adjust padding for better text fit */
  }

  .hide-mobile {
    display: none; /* Hide "GET" text on mobile */
  }
}

@media (max-width: 480px) {
  .click-here-btn {
    font-size: 0.6rem;
    padding: 6px 10px;
  }
}

/* Desktop/Mobile text switching */
.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: inline;
  }
}

/* Add these animation optimizations */
.shuffle-logo,
.promo-text,
.register-btn,
.first-place,
.second-place,
.third-place,
.countdown-timer,
.leaderboard-container,
.leaderboard-row,
.disclaimer-box {
  opacity: 0;
  will-change: transform, opacity;
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* Optimize animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInYPlus {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInXPlus {
  from {
    opacity: 0;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
