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

body {
  background-color: #050505;
  color: #fff;
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
  height: 100vh;
  width: 100vw;
}

.spotlight {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80vw;
  height: 80vh;
  background: radial-gradient(
    circle,
    rgba(255, 77, 0, 0.15) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  z-index: 0;
  pointer-events: none;
}

.fixed-corner {
  position: fixed;
  z-index: 1000;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  color: #888;
  text-transform: uppercase;
}

.top-left {
  top: 2.5rem;
  left: 2.5rem;
  color: #fff;
  font-weight: 900;
}

.top-right {
  top: 2.5rem;
  right: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: right;
}

.bottom-left {
  bottom: 2.5rem;
  left: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bottom-right {
  bottom: 2.5rem;
  right: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.top-right a,
.bottom-right a {
  text-decoration: none;
  color: #888;
  transition: all 0.3s ease;
}

.top-right a:hover,
.bottom-right a:hover {
  color: #ff4d00;
}

.top-right a:hover {
  transform: translateX(-5px);
}
.bottom-right a:hover {
  transform: scale(1.2);
}

main {
  position: relative;
  z-index: 10;
  font-family: "Anton", sans-serif;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

main h1 {
  font-size: 6rem;
  color: #ff4d00;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  line-height: 1.1;
}

main p {
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  color: #fff;
  font-weight: 300;
  opacity: 0.8;
}

@media (max-width: 1024px) {
  main h1 {
    font-size: 4.5rem;
  }
}

@media (max-width: 768px) {
  .top-left {
    top: 1.5rem;
    left: 1.5rem;
  }
  .top-right {
    top: 1.5rem;
    right: 1.5rem;
  }
  .bottom-left {
    bottom: 1.5rem;
    left: 1.5rem;
  }
  .bottom-right {
    bottom: 1.5rem;
    right: 1.5rem;
  }

  /* Note: Removed flex-direction: row here to keep it vertical on mobile */

  .top-right a:hover {
    transform: none;
    color: #ff4d00;
  }

  main h1 {
    font-size: 13vw;
  }

  main p {
    font-size: 1rem;
    max-width: 80%;
  }

  .logo {
    font-size: 1rem;
  }
}

@media (max-height: 500px) {
  .bottom-left,
  .bottom-right {
    display: none;
  }

  main h1 {
    font-size: 3rem;
  }
}