:root {
  --green: #00ff33;
  --bg: #000;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--green);
  font-family: "Courier New", monospace;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;

  padding: 15px;
  background: rgba(0, 0, 0, .8);
}

.brand span {
  white-space: nowrap;
}

.nav {
  display: flex;
  gap: 10px;
}

.nav button,
.studio-selector button {
  background: none;
  border: 1px solid var(--green);
  color: var(--green);
  padding: 8px 12px;
  cursor: pointer;
  font: inherit;
}

.nav button:hover,
.studio-selector button:hover {
  background: rgba(0, 255, 51, .12);
}

.background-wrap {
  position: fixed;
  inset: 0;
  z-index: 0;

  display: flex;
  justify-content: center;
  align-items: center;

  pointer-events: none;
  opacity: .07;
}

.background-ascii {
  font-size: 18px;
  line-height: 1.05;
}

main {
  position: relative;
  z-index: 1;
  padding-top: 1px;
}

.frame {
  width: 90%;
  margin: 120px auto;
  padding: 25px;

  border: 2px solid var(--green);
  border-radius: 10px;

  background: rgba(0, 255, 0, .02);
  backdrop-filter: blur(6px);
  box-shadow:
    0 0 10px #00ff33,
    0 0 30px rgba(0, 255, 51, .3);
}

.lounge-gallery {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;

  margin-top: 30px;
}

.lounge-gallery img {
  width: 420px;
  max-width: 100%;

  border: 2px solid #00ff33;
  border-radius: 10px;

  box-shadow:
    0 0 15px #00ff33,
    0 0 40px rgba(0, 255, 51, .3);
}

.studio-selector {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;

  margin: 25px 0;
}

.studio-selector button {
  padding: 10px 15px;
}

#studio-current {
  min-width: 150px;
  font-size: 22px;
  text-align: center;
}

#calendly-inline {
  width: 100%;
  min-width: 320px;
  height: 700px;
  margin-top: 20px;
  overflow: hidden;
}



.booking-note {
  margin-top: 20px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}

.site-footer {
  position: relative;
  z-index: 1;

  width: 90%;
  margin: -70px auto 40px;
  padding: 20px;

  color: var(--green);
  text-align: center;
  font-size: 16px;
  letter-spacing: 0;
}
@media (max-width: 1024px) {
  .lounge-gallery img {
    width: 320px;
  }
}

@media (max-width: 768px) {
  .site-header {
    flex-direction: column;
    gap: 10px;
  }

  .lounge-gallery {
    flex-direction: column;
    align-items: center;
  }

  .lounge-gallery img {
    width: 95%;
  }

  .studio-selector {
    gap: 12px;
  }

  #studio-current {
    min-width: 110px;
    font-size: 18px;
  }

  #calendly-inline {
    height: 600px;
  }

  .background-ascii {
    font-size: 8px;
  }
}

@media (min-width: 1800px) {
  .frame {
    max-width: 1600px;
  }

  .lounge-gallery img {
    width: 650px;
  }

  #calendly-inline {
    height: 900px;
  }
}
