
:root {
  --wc-neon-green: #7CFC00;
  --wc-neon-blue: #00ffff;
  --wc-bg-dark: #1c1f26;
}

body {
  margin: 0;
  font-family: 'Orbitron', Arial, sans-serif;
  background-color: var(--wc-bg-dark);
  color: #eee;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: var(--wc-neon-green);
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Navigation Bar */
nav.main-nav {
  background: #111;
  border-bottom: 2px solid #444;
  padding: 10px 20px;
  box-shadow: 0 0 10px var(--wc-neon-blue);
}

nav.main-nav ul {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

nav.main-nav li a {
  font-size: 1.2rem;
  font-weight: bold;
  padding: 8px 12px;
  transition: all 0.2s ease-in-out;
}

nav.main-nav li a:hover {
  color: var(--wc-neon-blue);
  text-shadow: 0 0 10px var(--wc-neon-blue);
}

/* Animated Hero Section */
.typewriter-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  padding: 60px 20px;
  text-align: center;
}

#typewriter-text {
  font-size: 2.2rem;
  color: var(--wc-neon-blue);
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid var(--wc-neon-blue);
  max-width: 0;
  opacity: 0;
  animation: typing 3s steps(30, end) 1s forwards;
}

.caret {
  animation: blinkCaret 0.8s step-start infinite;
}

#transmission-text {
  font-size: 1.1rem;
  color: var(--wc-neon-green);
  opacity: 0;
  animation: fadeBlink 1.5s 4s 3 alternate, glowIn 0.8s ease-out 8s forwards;
}

#status-line {
  font-size: 1.1rem;
  color: #ccc;
  opacity: 0;
  animation: typingStatus 1.8s steps(20, end) 9s forwards;
}

#live-indicator {
  font-weight: bold;
  color: var(--wc-neon-green);
  padding-left: 8px;
  opacity: 0;
  animation: liveGlow 1s ease-in-out infinite alternate 11s, fadeInLive 0.3s ease-in 11s forwards;
}

/* Animations */
@keyframes typing {
  from { max-width: 0; opacity: 0; }
  to { max-width: 100%; opacity: 1; }
}

@keyframes blinkCaret {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@keyframes fadeBlink {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

@keyframes glowIn {
  0% { text-shadow: none; }
  100% { text-shadow: 0 0 8px var(--wc-neon-green); }
}

@keyframes typingStatus {
  from { opacity: 0; width: 0; }
  to { opacity: 1; width: 100%; }
}

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

@keyframes liveGlow {
  from { text-shadow: 0 0 2px var(--wc-neon-green); }
  to { text-shadow: 0 0 8px var(--wc-neon-green); }
}

/* Divider Bar */
.divider-glow {
  height: 4px;
  background: linear-gradient(90deg, #7CFC00, #00ffff, #7CFC00);
  animation: pulseGlow 3s infinite;
  margin: 40px auto;
  width: 90%;
  border-radius: 4px;
  box-shadow: 0 0 20px #00ffff88;
}

@keyframes pulseGlow {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.8); }
}

/* Modals */
.modal-section {
  padding: 40px 20px;
  text-align: center;
}

.modal-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.shop-item {
  background: #111;
  padding: 15px;
  border: 2px solid #333;
  border-radius: 10px;
  box-shadow: 0 0 12px #00ffff33;
  transition: transform 0.2s ease;
  width: 260px;
}

.shop-item:hover {
  transform: scale(1.03);
  box-shadow: 0 0 18px #00ffff88;
}

.shop-item img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 10px;
}

/* Events Floating Modal */
.event-button {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1001;
  background: var(--wc-neon-green);
  color: #000;
  border: none;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 1rem;
  box-shadow: 0 0 10px var(--wc-neon-green);
}

.event-modal {
  display: none;
  position: fixed;
  z-index: 1002;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #111;
  padding: 30px;
  border-radius: 12px;
  border: 2px solid var(--wc-neon-blue);
  box-shadow: 0 0 20px var(--wc-neon-blue);
  max-width: 90%;
  width: 500px;
}

.event-modal-content h2 {
  color: var(--wc-neon-blue);
  margin-bottom: 15px;
}

.event-modal .close-button {
  position: absolute;
  top: 8px;
  right: 14px;
  color: #ccc;
  font-size: 1.5rem;
  cursor: pointer;
}

.event-modal .close-button:hover {
  color: var(--wc-neon-green);
}

.event-list {
  text-align: left;
  font-size: 1.1rem;
  color: #ccc;
}

/* About Section */
.about-section {
  text-align: center;
  margin: 60px auto;
  padding: 20px;
}

.about-section img {
  width: 500px;
  max-width: 90%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 12px #00ffff88;
  margin-bottom: 20px;
}

.about-divider {
  height: 4px;
  width: 10%;
  background: linear-gradient(90deg, #00ffff, #7CFC00);
  margin: 20px auto;
  animation: pulseGlow 3s infinite;
  border-radius: 4px;
}

.about-section p {
  max-width: 800px;
  margin: 20px auto 0;
  font-size: 1.2rem;
  color: #ccc;
  line-height: 1.6;
}

.floating-quick-nav {
  position: fixed;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  z-index: 1001;
  background-color: rgba(0, 0, 0, 0.8);
  border: 2px solid var(--wc-neon-blue);
  border-radius: 12px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 0 12px var(--wc-neon-blue);
}

.floating-quick-nav a {
  background-color: var(--wc-neon-green);
  color: #000;
  padding: 8px;
  border-radius: 6px;
  text-align: center;
  font-weight: bold;
}

.floating-quick-nav.hidden {
  display: none;
}
