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

html, body { 
  width: 100%; 
  height: 100%; 
  background: #050508; 
  overflow: hidden; 
  font-family: 'Inter', sans-serif; 
}

#c { 
  position: fixed; 
  inset: 0; 
  width: 100%; 
  height: 100%; 
}

.scanlines {
  position: fixed; 
  inset: 0; 
  z-index: 4; 
  pointer-events: none;
  background: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(0,0,0,0.04) 3px, rgba(0,0,0,0.04) 4px);
}

.brk {
  position: fixed; 
  width: 26px; 
  height: 26px;
  border-color: rgba(201,168,76,0.32); 
  border-style: solid;
  z-index: 10; 
  pointer-events: none;
  opacity: 0; 
  animation: brkFade 1s ease forwards 0.4s;
}

.brk-tl { 
  top: 18px; 
  left: 18px; 
  border-width: 1px 0 0 1px; 
}

.brk-tr { 
  top: 18px; 
  right: 18px; 
  border-width: 1px 1px 0 0; 
}
.brk-bl { 
  bottom: 18px; 
  left: 18px; 
  border-width: 0 0 1px 1px; 
}
.brk-br { 
  bottom: 18px; 
  right: 18px; 
  border-width: 0 1px 1px 0; 
}

@keyframes brkFade { to { opacity: 1; } }

.status-bar {
  position: fixed; 
  top: 0; 
  left: 0; 
  right: 0;
  display: flex; 
  align-items: center; 
  justify-content: space-between;
  padding: 18px 26px; 
  z-index: 10; 
  pointer-events: none;
}

.s-logo {
  font-family: 'Orbitron', sans-serif; 
  font-size: 11px; 
  font-weight: 700;
  color: rgba(201,168,76,0.7); 
  letter-spacing: 3px;
  opacity: 0; 
  animation: fIn 1s ease forwards 0.6s;
}

.s-tag {
  font-size: 9px; 
  color: rgba(201,168,76,0.3); 
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0; 
  animation: fIn 1s ease forwards 0.9s;
}

.hud {
  position: fixed; 
  left: 22px; 
  top: 50%; 
  transform: translateY(-50%);
  display: flex; 
  flex-direction: column; 
  gap: 6px;
  z-index: 10; 
  pointer-events: none;
  opacity: 0; 
  animation: fIn 1s ease forwards 1.4s;
}

.hud-row { 
  display: flex; 
  flex-direction: column; 
  gap: 1px; 
}

.hud-label { 
  font-size: 8px; 
  color: rgba(201,168,76,0.25); 
  letter-spacing: 2.5px; 
  text-transform: uppercase; 
}

.hud-val { 
  font-size: 10px; 
  color: rgba(201,168,76,0.5); 
  font-weight: 500; 
  letter-spacing: 1px; 
}

.phases {
  position: fixed; 
  bottom: 130px; 
  left: 50%; 
  transform: translateX(-50%);
  display: flex; 
  gap: 10px; 
  z-index: 10; 
  pointer-events: none;
  opacity: 0; 
  animation: fIn 1s ease forwards 2s;
}

.pdot {
  width: 5px; 
  height: 5px; 
  border-radius: 50%;
  background: rgba(201,168,76,0.18); 
  border: 1px solid rgba(201,168,76,0.35);
  transition: all 0.5s cubic-bezier(0.34,1.56,0.64,1);
}

.pdot.on {
  background: #c9a84c;
  box-shadow: 0 0 10px rgba(201,168,76,0.7), 0 0 20px rgba(201,168,76,0.3);
}

.ui {
  position: fixed; 
  inset: 0; 
  z-index: 10; 
  pointer-events: none;
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  justify-content: flex-end;
  padding-bottom: 52px;
}

.brand-block {
  text-align: center;
  opacity: 0; transform: translateY(18px);
  animation: slideUp 1.4s cubic-bezier(0.22,1,0.36,1) forwards 2.4s;
}

.brand-name {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(26px, 4.5vw, 54px);
  font-weight: 900; 
  letter-spacing: 6px; 
  line-height: 1;
  background: linear-gradient(135deg, #f5dfa0 0%, #c9a84c 45%, #8a6020 100%);
  background-clip: text; 
  -webkit-background-clip: text;
  color: transparent; 
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.brand-sub {
  font-size: 10px; 
  color: rgba(201,168,76,0.38);
  letter-spacing: 7px; 
  text-transform: uppercase; 
  margin-bottom: 24px;
}

.cta-row {
  display: flex; 
  gap: 12px; 
  justify-content: center; 
  flex-wrap: wrap;
  pointer-events: all;
}

.btn-p {
  padding: 12px 34px;
  background: linear-gradient(135deg, #c9a84c 0%, #8a6020 100%);
  color: #050508; 
  font-family: 'Orbitron', sans-serif;
  font-size: 10px; 
  font-weight: 700; 
  letter-spacing: 2.5px; 
  text-transform: uppercase;
  border: none; 
  border-radius: 5px; 
  cursor: pointer;
  box-shadow: 0 0 40px rgba(201,168,76,0.28), 0 4px 16px rgba(0,0,0,0.5);
  transition: all 0.25s;
}

.btn-p:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 60px rgba(201,168,76,0.5), 0 6px 22px rgba(0,0,0,0.6);
}

.btn-s {
  padding: 12px 34px;
  background: transparent; 
  color: rgba(201,168,76,0.6);
  font-family: 'Orbitron', sans-serif; 
  font-size: 10px; 
  font-weight: 700;
  letter-spacing: 2.5px; 
  text-transform: uppercase;
  border: 1px solid rgba(201,168,76,0.25); 
  border-radius: 5px; 
  cursor: pointer;
  transition: all 0.25s;
}

.btn-s:hover {
  border-color: rgba(201,168,76,0.6);
   color: #c9a84c;
  background: rgba(201,168,76,0.05);
}

@keyframes fIn { to { opacity: 1; } }
@keyframes slideUp { to { opacity: 1; transform: translateY(0); } }

@media (max-width: 640px) {
  .hud, .s-tag { display: none; }
  .brand-name { font-size: 7vw; }
}
