@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@300;400;500&display=swap');

/* === WS Banner Base CSS === */
/* Theme colors via CSS custom properties */
.ws-banner {
  --ws-accent: #00d4ff;
  --ws-accent-rgb: 0, 212, 255;
  --ws-glow: #00d4ff;
  --ws-secondary: #ffffff;
  --ws-secondary-rgb: 255, 255, 255;

  position: relative;
  width: 100%;
  height: 45vh;
  background: linear-gradient(135deg, #0a1628 0%, #060d18 40%, #0a0a1a 100%);
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 12vh;
  box-sizing: border-box;
}

.ws-banner canvas,
.ws-banner-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ws-banner-animation {
  z-index: 1;
  pointer-events: none;
}
.ws-banner-animation svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ws-content {
  position: relative;
  z-index: 10;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: wsContentReveal 1.2s ease-out 1.2s forwards;
}

.ws-brand {
  font-family: 'Orbitron', monospace;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 6px;
  color: var(--ws-accent);
  margin-bottom: 16px;
  opacity: 0;
  animation: wsGlowIn 1s ease-out 1s forwards;
  text-shadow: 0 0 20px rgba(var(--ws-accent-rgb), 0.4);
}

.ws-title {
  font-family: 'Orbitron', monospace;
  font-size: 72px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 8px;
  margin-bottom: 20px;
  text-shadow: 0 0 40px rgba(var(--ws-accent-rgb), 0.3), 0 0 80px rgba(var(--ws-accent-rgb), 0.1);
  opacity: 0;
  animation: wsTitleReveal 1.4s ease-out 1.5s forwards;
}
.ws-title .dot {
  color: var(--ws-accent);
  text-shadow: 0 0 30px rgba(var(--ws-accent-rgb), 0.8);
}

.ws-subtitle {
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0;
  animation: wsSubtitleReveal 1s ease-out 2.1s forwards;
}

.ws-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ws-accent), transparent);
  margin: 24px auto;
  opacity: 0;
  animation: wsLineExpand 0.8s ease-out 1.9s forwards;
}

.ws-corner {
  position: absolute;
  width: 30px;
  height: 30px;
  border-color: rgba(var(--ws-accent-rgb), 0.3);
  border-style: solid;
  z-index: 5;
  opacity: 0;
  animation: wsCornerIn 0.6s ease-out 2.3s forwards;
}
.ws-corner--tl { top: 30px; left: 30px; border-width: 1px 0 0 1px; }
.ws-corner--tr { top: 30px; right: 30px; border-width: 1px 1px 0 0; }
.ws-corner--bl { bottom: 30px; left: 30px; border-width: 0 0 1px 1px; }
.ws-corner--br { bottom: 30px; right: 30px; border-width: 0 1px 1px 0; }

/* === Keyframes === */
@keyframes wsContentReveal {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes wsGlowIn {
  0% { opacity: 0; letter-spacing: 12px; }
  100% { opacity: 1; letter-spacing: 6px; }
}
@keyframes wsTitleReveal {
  0% { opacity: 0; transform: scale(0.9); filter: blur(4px); }
  100% { opacity: 1; transform: scale(1); filter: blur(0); }
}
@keyframes wsSubtitleReveal {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 0.85; transform: translateY(0); }
}
@keyframes wsLineExpand {
  0% { opacity: 0; width: 0; }
  100% { opacity: 1; width: 60px; }
}
@keyframes wsCornerIn {
  0% { opacity: 0; transform: scale(0.5); }
  100% { opacity: 1; transform: scale(1); }
}

/* === Responsive === */
@media (max-width: 768px) {
  .ws-title { font-size: 36px; letter-spacing: 4px; }
  .ws-brand { font-size: 12px; }
  .ws-subtitle { font-size: 13px; letter-spacing: 2px; }
}
