@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@700;900&family=Teko:wght@600;700&display=swap");
body {
  margin: 0;
  padding: 0;
  tab-size: 4;
  overflow-wrap: break-word;
}

h1 {
  min-height: 1rem;
  margin: calc(2rem - 0.1428571429em) 0 1rem;
  padding: 0;
}

.bo7-container {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  background-color: #0c0d0e;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  font-family: "Teko", sans-serif;
  letter-spacing: 1px;
  background-image: radial-gradient(circle, rgba(16, 17, 19, 0.5) 0%, #050607 100%), linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.03), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.03));
  background-size: 100% 100%, 100% 4px, 6px 100%;
}

.bo7-main {
  text-align: center;
  max-width: 900px;
  padding: 20px;
  position: absolute;
  z-index: 10;
}
.bo7-main .slogan {
  font-size: 6.5rem;
  line-height: 89.25px;
  text-transform: uppercase;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 50px;
  font-family: Arial, sans-serif;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
  user-select: none;
  letter-spacing: 3.5px;
}

.highlight-orange {
  color: #ff6600;
  text-shadow: 0 0 20px rgba(255, 102, 0, 0.4);
}

.highlight-git {
  color: #ff1a00;
  text-shadow: 0 0 20px rgba(255, 26, 0, 0.4);
}

.btn-group {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.bo7-btn {
  position: relative;
  font-family: "Orbitron", sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #ffffff;
  background: rgba(20, 22, 25, 0.9);
  padding: 18px 45px;
  border: 2px solid #3a3f47;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}
.bo7-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 4px, rgba(255, 102, 0, 0.15) 4px, transparent 15%);
  transition: all 0.4s ease;
}
.bo7-btn::after {
  content: "";
  position: absolute;
  top: 0;
  right: -20px;
  width: 12px;
  height: 100%;
  background: #ff6600;
  transform: skewX(-30deg);
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  box-shadow: 0 0 15px #ff1a00, 0 0 30px #ffa600;
  opacity: 0.6;
}
.bo7-btn.primary {
  border-color: #ff6600;
  box-shadow: 0 0 15px rgba(255, 102, 0, 0.2);
}
.bo7-btn.primary::after {
  opacity: 1;
  right: 8px;
  background: linear-gradient(to bottom, #ff1a00, #ff6600, #ffa600);
}
.bo7-btn:hover {
  color: #000000;
  background: #ffa600;
  border-color: #ffa600;
  box-shadow: 0 0 25px #ff6600, inset 0 0 10px rgba(255, 255, 255, 0.5);
  font-weight: 900;
}
.bo7-btn:hover::after {
  right: 120%;
  width: 40px;
  opacity: 0;
  background: #ffffff;
}
.bo7-btn:active {
  transform: scale(0.96);
  background: #ff1a00;
  box-shadow: 0 0 10px #ff1a00;
}

.hud-bracket {
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: rgba(255, 102, 0, 0.3);
  border-style: solid;
  pointer-events: none;
}
.hud-bracket.top-left {
  top: -10px;
  left: -10px;
  border-width: 3px 0 0 3px;
}
.hud-bracket.bottom-right {
  bottom: -10px;
  right: -10px;
  border-width: 0 3px 3px 0;
}

#liquid-ether-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  touch-action: none;
}
#liquid-ether-container canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.bo7-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 24px;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  margin: 0;
  padding: 0 20px;
  font-family: "Orbitron", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.45);
  pointer-events: none;
}
.bo7-footer p {
  margin: 0;
}
.bo7-footer a {
  color: rgba(255, 102, 0, 0.7);
  text-decoration: none;
  pointer-events: auto;
}
.bo7-footer a:hover {
  color: #ffa600;
}