/* ==========================================================================
   HAXBION COMING SOON - ULTRA-AESTHETIC MONOCHROME THEME
   ========================================================================== */

:root {
  --bg-black: #050505;
  --bg-dark: #0F1015;
  --bg-card: rgba(18, 20, 26, 0.65);
  --bg-card-hover: rgba(26, 29, 38, 0.85);

  --white: #FFFFFF;
  --white-glow: rgba(255, 255, 255, 0.25);
  --gray-dark: #14161F;
  --gray-mid: #2A2E3B;
  --gray-light: #A0A8B6;

  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Space Grotesk', var(--font-main);
  --font-cursive: 'Satisfy', 'Caveat', cursive, sans-serif;

  --border-clean: 1px solid rgba(255, 255, 255, 0.12);
  --border-hover: 1px solid rgba(255, 255, 255, 0.35);

  --border-radius-sm: 8px;
  --border-radius-md: 14px;
  --border-radius-lg: 24px;
  --border-radius-full: 9999px;

  --transition-fast: 0.2s ease;
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Basic Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  min-height: 100vh;
  background-color: var(--bg-black);
  color: var(--white);
  font-family: var(--font-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Background Effects */
.bg-glow-hero {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75vw;
  height: 60vh;
  max-width: 900px;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.02) 40%, transparent 75%);
  filter: blur(90px);
  pointer-events: none;
  z-index: 1;
}

.bg-glow-secondary {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.bg-grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 2;
}

.particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 2;
}

/* Layout Wrapper */
.page-wrapper {
  position: relative;
  z-index: 5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 32px 24px;
}

/* Header */
.header {
  width: 100%;
  max-width: 1100px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 20px;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.brand-logo:hover {
  transform: scale(1.03);
  opacity: 0.9;
}

.logo-symbol {
  width: 38px;
  height: 38px;
  background: var(--bg-black);
  border: 2px solid var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--white);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 2px;
  color: var(--white);
}

/* Main Center Content */
.main-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 800px;
  margin: 20px 0;
}

.coming-soon-card {
  width: 100%;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: var(--border-clean);
  border-radius: var(--border-radius-lg);
  padding: 64px 48px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: border-color var(--transition-normal);
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.coming-soon-card:hover {
  border-color: rgba(255, 255, 255, 0.25);
}

/* Badge Chip */
.badge-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 8px 22px;
  border-radius: var(--border-radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 32px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 10px #ffffff;
  animation: pulseGlow 2s infinite alternate ease-in-out;
}

/* Cursive Center Title */
.cursive-heading {
  font-family: var(--font-cursive);
  font-size: clamp(4.5rem, 10vw, 8rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--white);
  text-shadow: 
    0 0 25px rgba(255, 255, 255, 0.4),
    0 0 50px rgba(255, 255, 255, 0.18);
  margin-bottom: 24px;
  letter-spacing: 1px;
  user-select: none;
  transform: rotate(-2deg);
  display: inline-block;
  background: linear-gradient(180deg, #FFFFFF 45%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.3));
}

/* Subtitle */
.coming-subtitle {
  font-size: clamp(1.05rem, 2.3vw, 1.25rem);
  color: var(--gray-light);
  max-width: 580px;
  margin: 0 auto 48px auto;
  font-weight: 400;
  line-height: 1.6;
}

/* CTA Haxbion Button */
.cta-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}

.btn-haxbion {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--white);
  color: var(--bg-black);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
  padding: 18px 48px;
  border-radius: var(--border-radius-full);
  box-shadow: 0 0 35px rgba(255, 255, 255, 0.28), 0 10px 25px rgba(0, 0, 0, 0.5);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.btn-haxbion::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  transition: left 0.6s ease;
}

.btn-haxbion:hover::before {
  left: 100%;
}

.btn-haxbion:hover {
  background: #FFFFFF;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 50px rgba(255, 255, 255, 0.5), 0 15px 35px rgba(0, 0, 0, 0.6);
  color: #000000;
}

.btn-haxbion:active {
  transform: translateY(-1px) scale(1.01);
}

.btn-logo-icon {
  width: 30px;
  height: 30px;
  background: var(--bg-black);
  color: var(--white);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
}

.arrow-icon {
  transition: transform var(--transition-fast);
}

.btn-haxbion:hover .arrow-icon {
  transform: translateX(5px);
}

/* Footer */
.footer {
  width: 100%;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  padding-top: 20px;
}

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

@keyframes pulseGlow {
  0% {
    opacity: 0.5;
    box-shadow: 0 0 5px #ffffff;
  }
  100% {
    opacity: 1;
    box-shadow: 0 0 15px #ffffff;
  }
}

/* Responsive Media Queries */
@media (max-width: 640px) {
  .coming-soon-card {
    padding: 44px 24px;
  }

  .btn-haxbion {
    width: 100%;
    padding: 16px 28px;
    font-size: 1.15rem;
  }
}
