/* coming-soon.css */
.coming-soon-body {
  margin: 0;
  padding: 0;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  font-family: var(--font-mon);
}

.coming-soon-wrapper {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at 50% 50%, #111 0%, #000 100%);
  z-index: 1;
}

#cs-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* Horizontal Speed Lines for background dynamism */
.cs-h-lines {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  z-index: 3;
  opacity: 0.15;
  pointer-events: none;
}
.cs-hl {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,26,26,0.8), transparent);
  animation: cs-flow 3s linear infinite;
  transform: translateX(-100%);
}
.cs-hl:nth-child(even) {
  background: linear-gradient(to right, transparent, rgba(0,212,255,0.6), transparent);
  animation-duration: 4s;
}
.cs-hl:nth-child(3) { animation-duration: 2.5s; }
@keyframes cs-flow {
  from { transform: translateX(-100%); }
  to { transform: translateX(100%); }
}

.cs-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  padding: 20px;
}

.cs-logo {
  font-family: var(--font-syn);
  font-size: clamp(32px, 5vw, 50px);
  font-weight: 700;
  letter-spacing: .15em;
  margin-bottom: 2vh;
}
.cs-logo-gg { color: #fff; }
.cs-logo-go { color: var(--red); margin-left: 5px; }

.cs-kart-container {
  position: relative;
  width: min(600px, 85vw);
  margin: 1vh 0 4vh 0;
}
.cs-kart {
  width: 100%;
  filter: drop-shadow(0 30px 50px rgba(255,26,26,0.35));
  will-change: transform;
}
.cs-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 90%; height: 60%;
  background: radial-gradient(ellipse, rgba(255,26,26,0.3) 0%, transparent 60%);
  filter: blur(40px);
  z-index: -1;
}

.cs-text-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 4vh;
}

.cs-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-syn);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--red);
  padding: 8px 16px;
  border: 1px solid rgba(255,26,26,0.3);
  border-radius: 30px;
  background: rgba(255,26,26,0.05);
  margin-bottom: 20px;
}
.cs-badge-dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--red);
  animation: pulse-dot 1.5s infinite ease-in-out;
}

.cs-title {
  font-family: var(--font-syn);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 12px;
  text-shadow: 0 10px 30px rgba(0,0,0,0.8);
}
.text-red { color: var(--red); }

.cs-subtitle {
  font-family: var(--font-raj);
  font-size: clamp(14px, 2vw, 18px);
  color: #aaa;
  letter-spacing: 0.15em;
}

.cs-progress-wrapper {
  width: min(400px, 85vw);
  margin-bottom: 4vh;
}
.cs-progress-info {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-syn);
  font-size: 10px;
  color: var(--grey);
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}
.cs-pi-percent {
  color: var(--white);
  font-weight: 700;
}
.cs-progress-container {
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.05);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.5);
}
.cs-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--red), var(--blue));
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(255,26,26,0.5);
}

.cs-demo-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-raj);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--white);
  padding: 14px 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  text-decoration: none;
}
.cs-demo-btn svg {
  width: 18px; height: 18px;
  transition: transform 0.3s;
}
.cs-demo-btn:hover {
  background: rgba(255,26,26,0.1);
  border-color: rgba(255,26,26,0.4);
  box-shadow: 0 10px 30px rgba(255,26,26,0.15);
  transform: translateY(-2px);
}
.cs-demo-btn:hover svg {
  transform: translateX(4px);
}
