* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #020202;
  color: #ffffff;
  font-family: Arial, sans-serif;
}

body {
  overflow: hidden;
}

.page {
  min-height: 100vh;
  background-color: #020202;
}

.landing {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateY(8vh);
  text-align: center;
  padding: 40px;
  background-image: url("media/photos/home_background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: zoomIn 1.2s ease-out forwards;
}

@keyframes zoomIn {
  from {
    transform: scale(0.3);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}


.small-title {
  margin: 0;
  color: #F5BD02;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.52em;
}

h1 {
  margin: 32px 0 0;
  color: #F5BD02;
  font-size: 38px;
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.subtitle {
  margin: 32px 0 0;
  color: #F5BD02;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.62em;
}

.enter-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 48px;
  height: 52px;
  width: 190px;
  border: none;
  background: transparent;
  color: #F5BD02;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.42em;
  opacity: 0.8;
  cursor: pointer;
}

.enter-button:hover {
  color: #ffffff;
  opacity: 1;
  letter-spacing: 0.52em;
}

.coming-soon .enter-button:hover,
.coming-soon .enter-button:focus {
  letter-spacing: 0.42em;
  transform: none;
  animation: none;
  transition: none;
}

.home {
  padding: 48px 40px;
  background: #020202;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-title {
  color: #F5BD02;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}


nav {
  display: flex;
  gap: 48px;
}

nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.28em;
}

nav a:hover {
  color: #F5BD02;
}

.welcome {
  min-height: calc(100vh - 120px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.home .small-title,
.home h1,
.home .subtitle {
  color: #ffffff;
}

.home .small-title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.62em;
}
.players-page {
  min-height: 100vh;
  padding: 48px 40px;
  background: #020202;
}

.players-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.players-site-title {
  margin: 0;
  color: #F5BD02;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.52em;
}

.players-title {
  margin: 32px 0 0;
  color: #ffffff;
  font-size: 38px;
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.players-grid {
  width: 100%;
  max-width: 920px;
  margin: 72px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.player-card {
  display: block;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(245, 189, 2, 0.45);
  background: rgba(255, 255, 255, 0.02);
  text-decoration: none;
}

.player-card:hover {
  border-color: #F5BD02;
}

.player-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.back-arrow {
  position: fixed;
  top: 48px;
  left: 40px;
  width: 28px;
  height: 28px;
  opacity: 0.85;
  z-index: 10;
}

.coming-soon > .back-arrow {
  top: calc(50% + 20px);
  left: calc(50% - 133px);
  transform: translateY(-50%);
}

.players-page > .back-arrow {
  top: 50%;
}

.arrow-line {
  position: absolute;
  top: 13px;
  left: 8px;
  width: 10px;
  height: 2px;
  background: #ffffff;
}

.arrow-tip {
  position: absolute;
  left: 6px;
  width: 8px;
  height: 2px;
  background: #ffffff;
  transform-origin: left center;
}

.arrow-tip-top {
  top: 13px;
  transform: rotate(-45deg);
}

.arrow-tip-bottom {
  top: 13px;
  transform: rotate(45deg);
}

.back-arrow:hover {
  opacity: 1;
}

.back-arrow:hover .arrow-line,
.back-arrow:hover .arrow-tip {
  background: #F5BD02;
}

/* ====================== PREVIEW ARJUNA ====================== */

.preview_player {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(2, 2, 2, 0.95);
  z-index: 100;
}

.preview_player:target {
  display: flex;
}


.preview_player_window {
  position: relative;
  width: 35vw;
  height: 55vh;
  background: #020202;
}

.preview_player_image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.preview_nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  opacity: 0.50;
  cursor: pointer;
  z-index: 10;
}

.preview_nav.left {
  left: -30px;
}

.preview_nav.right {
  right: -30px;
  transform: translateY(-50%) scaleX(-1);
}

.nav-line {
  position: absolute;
  top: 13px;
  left: 8px;
  width: 10px;
  height: 2px;
  background: #f5bd02;
}

.nav-tip {
  position: absolute;
  left: 6px;
  width: 8px;
  height: 2px;
  background: #f5bd02;
  transform-origin: left center;
}

.nav-tip-top {
  top: 13px;
  transform: rotate(-45deg);
}

.nav-tip-bottom {
  top: 13px;
  transform: rotate(45deg);
}

.preview_nav:hover .nav-line,
.preview_nav:hover .nav-tip {
  background: #F5BD02;
}

.coming-soon {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #020202;
}

.coming-soon-text {
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4em;
}

.music-play-button {
  color: #ffffff;
}

.music-play-button:hover {
  color: #F5BD02;
}

.coming-soon-white {
  color: #ffffff;
}

.coming-soon-white:hover {
  color: #F5BD02;
}

.site-logo {
  display: none;
}

.persistent-site-brand {
  position: fixed;
  top: 48px;
  left: 40px;
  z-index: 150;
  color: #F5BD02;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  text-decoration: none;
}

.home .site-title {
  visibility: hidden;
}

.global-radio {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(245, 189, 2, 0.45);
  background: rgba(2, 2, 2, 0.88);
}

.radio-player-hidden {
  display: none;
}

.global-radio-title,
.global-radio-volume-label {
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.global-radio-button {
  border: none;
  background: transparent;
  color: #F5BD02;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  cursor: pointer;
}

.global-radio-button:hover {
  color: #ffffff;
}

.global-radio-volume {
  width: 90px;
}

/* FOUNDER GATE START */
.founder-gate-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(2, 2, 2, 0.58);
}

.founder-gate-overlay[hidden],
.founder-gate-info-popover[hidden] {
  display: none;
}

.founder-gate-dialog {
  position: relative;
  width: min(420px, calc(100vw - 48px));
  padding: 34px 34px 30px;
  border: 1px solid rgba(245, 189, 2, 0.38);
  background: rgba(2, 2, 2, 0.96);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.62);
}

.founder-gate-close,
.founder-gate-info-button,
.founder-gate-submit,
.founder-gate-info-close {
  border: none;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
}

.founder-gate-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 24px;
  height: 24px;
  font-size: 18px;
  line-height: 24px;
}

.founder-gate-info-button {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  line-height: 20px;
}

.founder-gate-close:hover,
.founder-gate-info-button:hover,
.founder-gate-submit:hover,
.founder-gate-info-close:hover {
  color: #F5BD02;
}

.founder-gate-title {
  margin: 0 0 30px;
  color: #F5BD02;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.34em;
}

.founder-gate-form {
  margin: 0;
}

.founder-gate-label {
  display: block;
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.founder-gate-input-row {
  display: flex;
  align-items: stretch;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.03);
}

.founder-gate-input {
  min-width: 0;
  flex: 1;
  border: none;
  background: transparent;
  color: #ffffff;
  padding: 14px 14px;
  font-size: 13px;
  outline: none;
}

.founder-gate-input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.founder-gate-submit {
  width: 50px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  color: #F5BD02;
  font-size: 20px;
}

.founder-gate-reveal {
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: max-height 420ms ease, margin-top 420ms ease, opacity 420ms ease, transform 420ms ease;
}

.founder-gate-reveal[hidden] {
  display: none;
}

.founder-gate-reveal.is-revealed {
  max-height: 120px;
  margin-top: 24px;
  opacity: 1;
  transform: translateY(0);
}

.founder-gate-info-popover {
  position: absolute;
  top: 48px;
  left: 16px;
  width: min(270px, calc(100% - 32px));
  padding: 16px;
  border: 1px solid rgba(245, 189, 2, 0.38);
  background: #020202;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.68);
}

.founder-gate-info-popover p {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 11px;
  line-height: 1.45;
}

.founder-gate-info-close {
  display: block;
  margin: 14px 0 0 auto;
  color: #F5BD02;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}
/* FOUNDER GATE END */
