* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  height: 100%;
  background-color: #241c19;
}

header {
  position: absolute;
  top: 20px;
  left: 30px;
  z-index: 3;
}

.logo {
  height: 120px;
}

.slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: none;
}

.slides video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 105vw;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.text-content {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #f3eae4;
  padding: 20px;
  max-width: 700px;
}

.text-content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #dfd1c8;
}

.text-content p {
  font-size: 1.1rem;
  margin: 0 auto 20px auto;
}

.game-features {
  background: #241c19;
  color: #f3eae4;
  padding: 60px 30px;
  text-align: center;
}

.game-features h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.features-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
}

.feature {
  background-color: rgba(223, 209, 200, 0.3);
  padding: 20px;
  border-radius: 34px;
  width: 320px;
}

.feature img {
  width: 100%;
  margin-bottom: 15px;
  border-radius: 4px;
}

.feature h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: #dfd1c8;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "National Park", serif;
}

p {
  font-family: "Nunito Sans", sans-serif;
}

.btn-try-now {
  display: inline-flex; /* Cambiado de 'inline-block' a 'inline-flex' */
  align-items: center; /* Alinea verticalmente el ícono y el texto */
  white-space: nowrap; /* Evita que el texto se rompa en varias líneas */
  background-color: #533d2d;
  color: white;
  font-size: 1.2em;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-top: 30px;
  font-family: "National Park", serif;
}

.btn-try-now .btn-icon {
  margin-right: 10px; /* Añade un espacio entre el ícono y el texto */
}

.btn-try-now:hover {
  background-color: #784a2c;
  transform: scale(1.05);
}

.site-footer {
  background-color: #dfd1c8;
  color: #333;
  font-family: "National Park", serif;
  font-size: 1em;
  padding: 120px 20px 30px;
  position: relative;
  overflow: hidden;
  border-top: none; /* Remove flat border */
}

.footer-curve {
  position: absolute;
  top: -160px;
  left: 0;
  width: 110vw;
  height: 250px;
  background-color: #241c19;
  border-radius: 0 0 50% 50%;
  z-index: 1;
  left: 50%; /* Changed from 0 to 50% */
  transform: translateX(-50%); /* Added for centering */
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center; /* Center all elements by default for mobile */
}

.footer-column {
  flex: 1;
  min-width: 220px;
  margin: 10px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.footer-img {
  margin-top: -10px;
}

.footer-img img {
  max-width: 150px;
  height: auto;
}

.site-footer a {
  color: #533d2d;
  text-decoration: underline;
  font-weight: bold;
}

.site-footer a:hover {
  color: #7a5c44;
}

.btn-icon {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  margin-right: 10px;
  filter: invert(1);
}

.world-app-section {
  background: #241c19;
  color: #f3eae4;
  padding: 60px 30px;
  text-align: center;
}

.world-app-section h2 {
  font-size: 2.2rem;
  margin-bottom: 25px;
  color: #dfd1c8;
}

.world-app-section p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 20px auto;
  line-height: 1.6;
}

@media (min-width: 530px) and (max-width: 615px) {
  .logo {
    height: 80px;
  }
}

@media (max-width: 530px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-column {
    flex-basis: 100%;
    margin: 10px 0;
  }

  .footer-img {
    text-align: center;
    align-items: center;
  }

  .features-container {
    gap: 40px;
  }

  header {
    display: none;
  }

  .footer-curve {
    position: absolute;
    top: -160px;
    left: 0;
    width: 150vw;
    height: 250px;
    background-color: #241c19;
    border-radius: 0 0 50% 50%;
    z-index: 1;
    left: 50%;
    transform: translateX(-50%);
  }

  .site-footer {
    padding-top: 110px;
  }
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;

  height: 80px;
}

.logo-bar {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.logo-link img {
  display: block;
}

.logo-link img,
.logo-link svg {
  height: 24px;
  width: auto;
  display: block;
}

.footer-bottom p {
  margin: 0;
}

@media (min-width: 760px) {
  .footer-bottom {
    margin-top: 30px;
  }
}

.logo-link::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #69605c;
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  white-space: nowrap;
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 10;
}

.logo-link:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(-5px);
}
.logo-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #69605c27;
  border-radius: 12px;
  padding: 10px 16px;
  transition: background-color 0.3s ease;
  margin: 0 2px;
  height: 44px;
  width: 44px;
}

.logo-link:hover {
  background-color: #63575250;
}
