/* Beta Landing Page - Transport Tycoon Style */

.beta-landing {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: #87CEEB;
}

#beta-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.beta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(0px);
  pointer-events: none;
}

/* Top bar CTA overlay */
.beta-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(26,26,46,0.95) 0%, rgba(26,26,46,0.65) 100%);
  border-bottom: 1px solid rgba(255, 215, 0, 0.25);
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
  pointer-events: all; /* clickable */
}

.beta-topbar-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.beta-topbar-logo {
  height: 32px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.35));
}

.beta-topbar-text {
  display: flex;
  flex-direction: column;
}

.beta-oneliner {
  font-size: 16px;
  font-weight: 700;
  color: #FFD700;
  line-height: 1.1;
}

.beta-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}

.beta-topbar-right { display: flex; align-items: center; gap: 12px; }

.beta-cta-btn {
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 800;
  border: none;
  border-radius: 12px;
  color: #000;
  background: linear-gradient(135deg, #FFD700, #FF1493);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.45);
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease;
}

.beta-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255,215,0,0.6); }
.beta-cta-btn:active { transform: translateY(0); }

@media (max-width: 768px) {
  .beta-topbar { height: 56px; padding: 8px 12px; }
  .beta-topbar-logo { height: 26px; }
  .beta-oneliner { font-size: 14px; }
  .beta-sub { font-size: 12px; display: none; }
  .beta-cta-btn { padding: 8px 12px; font-size: 13px; }
}

.beta-card {
  background: rgba(26, 26, 46, 0.98);
  border-radius: 30px;
  padding: 50px 60px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
  border: 3px solid rgba(255, 215, 0, 0.5);
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
  pointer-events: all;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.beta-logo {
  width: 150px;
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
}

.beta-card h1 {
  font-size: 48px;
  color: #FFD700;
  margin: 0 0 10px 0;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.beta-tagline {
  font-size: 20px;
  color: #00FFFF;
  margin: 0 0 10px 0;
  font-weight: 600;
}

.beta-subtitle {
  font-size: 16px;
  color: #FF1493;
  margin: 0 0 30px 0;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.beta-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.beta-instruction {
  font-size: 18px;
  color: #00FFFF;
  margin: 0;
  font-weight: 500;
}

.beta-hint {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-style: italic;
}

.beta-input {
  padding: 18px 25px;
  font-size: 16px;
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  transition: all 0.3s;
}

.beta-input:focus {
  outline: none;
  border-color: #FFD700;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.beta-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.beta-btn-large {
  padding: 22px 60px;
  font-size: 20px;
  font-weight: 700;
  background: linear-gradient(135deg, #FFD700, #FF1493);
  border: none;
  border-radius: 20px;
  color: #000;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: buttonPulse 2s ease-in-out infinite;
}

.beta-btn-large:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 40px rgba(255, 215, 0, 0.7);
}

.beta-btn-large:active {
  transform: translateY(-2px) scale(1.02);
}

@keyframes buttonPulse {
  0%, 100% {
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
  }
  50% {
    box-shadow: 0 8px 40px rgba(255, 20, 147, 0.7);
  }
}

.beta-note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 10px 0 0 0;
  font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
  .beta-card {
    padding: 30px 25px;
    max-width: 90%;
  }
  
  .beta-card h1 {
    font-size: 36px;
  }
  
  .beta-tagline {
    font-size: 16px;
  }
  
  .beta-subtitle {
    font-size: 14px;
  }
  
  .beta-logo {
    width: 100px;
  }
  
  .tab-btn {
    font-size: 14px;
    padding: 12px 15px;
  }
}

/* Phone Button */
.phone-button-beta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFD700, #FF1493);
  border: 4px solid #fff;
  font-size: 32px;
  cursor: pointer;
  box-shadow: 0 5px 25px rgba(255, 215, 0, 0.6);
  transition: all 0.3s;
  pointer-events: all;
  z-index: 100;
  animation: phonePulse 2s ease-in-out infinite;
}

.phone-button-beta:hover {
  transform: scale(1.15);
  box-shadow: 0 8px 35px rgba(255, 215, 0, 0.8);
}

.phone-button-beta:active {
  transform: scale(0.95);
}

@keyframes phonePulse {
  0%, 100% {
    box-shadow: 0 5px 25px rgba(255, 215, 0, 0.6);
  }
  50% {
    box-shadow: 0 5px 35px rgba(255, 20, 147, 0.8);
  }
}
