:root {
  --primary: #db5461;
  --primary-light: #f5a5a5;
  --primary-dark: #b91c1c;
  --secondary: #f3f4f6;
  --background: #0a0a0a;
  --foreground: #ffffff;
  --muted-foreground: #888888;
  --border: rgba(255, 255, 255, 0.1);
  --card: rgba(255, 255, 255, 0.05);
  --accent: rgba(255, 255, 255, 0.1);
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: "SF Mono", Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --container-max-width: 1320px;
  --section-padding: 4rem 1.25rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  color: var(--foreground);
  background: var(--background);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Background Layers */
.background-layers {
  position: fixed;
  top: -100px;
  left: -100px;
  width: calc(100vw + 200px);
  height: calc(100vh + 200px);
  z-index: -1;
  pointer-events: none;
  will-change: transform;
}

body::before {
  content: '';
  position: fixed;
  top: -50px;
  left: -50px;
  width: calc(100vw + 100px);
  height: calc(100vh + 100px);
  background: #0a0a0a;
  z-index: -2;
  pointer-events: none;
}

.bg-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 80%, #DB5461 0%, transparent 40%),
              radial-gradient(circle at 80% 20%, #2a2a2a 0%, transparent 40%),
              radial-gradient(circle at 40% 40%, #1a1a1a 0%, transparent 40%),
              radial-gradient(circle at 90% 90%, #DB5461 0%, transparent 30%),
              radial-gradient(circle at 10% 10%, #2a2a2a 0%, transparent 30%);
  animation: gradientPulse 8s ease-in-out infinite;
}

@keyframes gradientPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

.grid-pattern {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.3;
}

.floating-orbs {
  position: absolute;
  width: 100%;
  height: 100%;
}

.orb {
  position: absolute;
  border-radius: 50%;
  background: rgba(219, 84, 97, 0.1);
  backdrop-filter: blur(40px);
  animation: float 15s ease-in-out infinite;
}

.orb:nth-child(1) {
  width: 200px;
  height: 200px;
  top: -250px;
  left: -250px;
}

.orb:nth-child(2) {
  width: 100px;
  height: 100px;
  top: 50%;
  right: -200px;
  animation-delay: -5s;
}

.orb:nth-child(3) {
  width: 50px;
  height: 50px;
  bottom: -150px;
  left: 10%;
  animation-delay: -10s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-30px) rotate(120deg); }
  66% { transform: translateY(15px) rotate(240deg); }
}

/* Header (if used) */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-image {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
}

/* Back Button */
.back-button {
  position: fixed;
  top: 2rem;
  left: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  z-index: 1001;
}

.back-button:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

.back-button svg {
  width: 16px;
  height: 16px;
}

/* Main Content */
.main-content {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  position: relative;
}

.construction-container {
  max-width: 800px;
  margin: 0 auto;
}

.construction-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(219, 84, 97, 0.1);
  border-radius: 50%;
  border: 2px solid rgba(219, 84, 97, 0.3);
}

.construction-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.construction-subtitle {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Countdown Timer */
.countdown-container {
  margin: 2rem 0;
}

.countdown-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.countdown-timer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.time-unit {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem 0.75rem;
  text-align: center;
  backdrop-filter: blur(10px);
}

.time-number {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
  line-height: 1;
}

.time-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.4rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-container {
    padding: 1rem;
  }
  .main-content {
    padding: 1rem;
  }
  .construction-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }
  .construction-title {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }
  .construction-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }
  .countdown-title {
    font-size: 1.125rem;
  }
  .countdown-timer {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .time-unit {
    padding: 1.25rem 0.5rem;
  }
  .time-number {
    font-size: 1.5rem;
  }
  .back-button {
    top: 1rem;
    left: 1rem;
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .countdown-timer {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .time-unit {
    padding: 1rem 0.5rem;
  }
  .time-number {
    font-size: 1.25rem;
  }
  .time-label {
    font-size: 0.65rem;
  }
}

/* Mobile zoom prevention */
@media (max-width: 992px) {
  * {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
}