html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  min-width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.center-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
}

.logo {
  width: 220px;
  max-width: 80vw;
  display: block;
}

  margin: 0;
  width: 100%;
}

.logo-section {
  display: flex;
  align-items: center;
  height: 48px;
}

.logo img {
  height: 26px;
  width: auto;
  max-width: 72px;
}


.carousel {
  position: absolute;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
  background: #ffffff;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.letters {
  white-space: nowrap;
  display: flex;
  align-items: center;
  animation: scroll 5s linear forwards;
}

.letters span {
  font-size: 4rem;
  font-weight: bold;
  margin: 0 20px;
  background: linear-gradient(45deg, black, gold, peru);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes scroll {
  from { transform: translateX(100vw); }
  to { transform: translateX(-100vw); }
}

.center-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  width: 100vw;
}

.center-content.hidden {
  display: none;
}

.logo {
  width: 165px;
  height: auto;
  max-width: 60%;
  animation: fadeIn 1s ease forwards;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.enter-button {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 30px;
  font-size: 1.5rem;
  color: white;
  background: linear-gradient(45deg, gold, peru);
  border: none;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 6px 10px rgba(0,0,0,0.3);
  animation: pulse 2s infinite;
  transition: transform 0.3s;
}

.enter-button:hover {
  transform: scale(1.1);
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

.carousel {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  background: #ffffff;
}

.letters {
  white-space: nowrap;
  position: absolute;
  top: 40%;
  left: 0;
  display: flex;
  animation: scroll 5s linear forwards;
}

.letters span {
  font-size: 4rem;
  font-weight: bold;
  margin: 0 20px;
  background: linear-gradient(45deg, black, gold, peru);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes scroll {
  from { transform: translateX(100%); }
  to { transform: translateX(-100%); }
}

.center-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}

.center-content.hidden {
  display: none;
}

.logo {
  width: 220px;
  max-width: 80%;
  animation: fadeIn 1s ease forwards;
}

.enter-button {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 30px;
  font-size: 1.5rem;
  color: white;
  background: linear-gradient(45deg, gold, peru);
  border: none;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 6px 10px rgba(0,0,0,0.3);
  animation: pulse 2s infinite;
  transition: transform 0.3s;
}

.enter-button:hover {
  transform: scale(1.1);
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}