:root{
  --primary: #0a0a0a;
  --secondary: #1a1a1a;
  --accent: #e94560;
  --gold: #f39c12;
  --neon: #00d4ff;
  --light: #ffffff;
  --dark: #000000;
  --gray: #888888;
  --blue: #2c5aa0;
  --gradient: radial-gradient(circle at center, #1a1a1a 0%, #0a0a0a 100%);
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--gradient);
  color: var(--light);
  overflow-x: hidden;
  min-height: 100vh;
  line-height: 1.6;
}

/* Animated background particles */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="%23e94560" opacity="0.3"><animate attributeName="opacity" values="0.3;1;0.3" dur="3s" repeatCount="indefinite"/></circle><circle cx="80" cy="40" r="1.5" fill="%2300d4ff" opacity="0.4"><animate attributeName="opacity" values="0.4;1;0.4" dur="2s" repeatCount="indefinite"/></circle><circle cx="40" cy="80" r="1" fill="%23f39c12" opacity="0.3"><animate attributeName="opacity" values="0.3;1;0.3" dur="4s" repeatCount="indefinite"/></circle></svg>');
  animation: float 20s infinite linear;
}

@keyframes float {
  0% { transform: translateY(100vh) rotate(0deg); }
  100% { transform: translateY(-100vh) rotate(360deg); }
}

/* Main content */
.main-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 50px 1rem 2rem;
  text-align: center;
}

.coming-soon-hero {
  margin-bottom: 3rem;
}

.brand-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.logo-container {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-logo {
  max-height: 120px;
  max-width: 300px;
  width: auto;
  height: auto;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
  transition: all 0.3s ease;
}

.main-logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.4));
}

.coming-soon-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 800;
  background: linear-gradient(45deg, var(--accent), var(--neon), var(--gold));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease-in-out infinite;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.coming-soon-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--neon);
  margin-bottom: 1.5rem;
  text-shadow: 0 0 20px var(--neon);
  text-transform: uppercase;
  letter-spacing: 2px;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Preview cards */
.preview-section {
  margin: 4rem 0;
  max-width: 1000px;
}

.preview-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--light);
  font-weight: 500;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.preview-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(233, 69, 96, 0.4);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(15px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.preview-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
  transition: left 0.5s;
}

.preview-card:hover::before {
  left: 100%;
}

.preview-card:hover {
  transform: translateY(-10px);
  border-color: var(--neon);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.preview-icon {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 10px var(--accent));
}

.preview-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--light);
}

.preview-card p {
  color: rgba(248, 249, 250, 0.8);
  line-height: 1.6;
}

/* Contact Section */
.contact-section {
  margin-top: 4rem;
  text-align: center;
}

.contact-title {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--light);
  font-weight: 600;
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.contact-number {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--neon);
  text-decoration: none;
  padding: 1rem 2rem;
  border: 2px solid var(--neon);
  border-radius: 50px;
  background: rgba(0, 212, 255, 0.1);
  transition: all 0.3s ease;
  text-shadow: 0 0 10px var(--neon);
  backdrop-filter: blur(10px);
}

.contact-number:hover {
  background: rgba(0, 212, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.contact-email {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  border: 2px solid var(--gold);
  border-radius: 50px;
  background: rgba(243, 156, 18, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.contact-email:hover {
  background: rgba(243, 156, 18, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(243, 156, 18, 0.3);
}

/* Footer */
footer {
  margin-top: 5rem;
  padding: 3rem 1rem 2rem;
  border-top: 2px solid rgba(233, 69, 96, 0.3);
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
}

.location-info {
  margin-bottom: 2rem;
}

.store-info {
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 600;
}

.map-link {
  display: inline-block;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border: 1px solid var(--accent);
  border-radius: 25px;
  background: rgba(233, 69, 96, 0.1);
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.map-link:hover {
  background: rgba(233, 69, 96, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(233, 69, 96, 0.3);
}

.map-link i {
  margin-right: 0.5rem;
}

.brand-info {
  color: var(--light);
  font-size: 1rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.footer-text {
  color: rgba(248, 249, 250, 0.6);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .preview-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .contact-info {
    gap: 1rem;
  }
  
  .contact-number {
    font-size: 1.5rem;
    padding: 0.8rem 1.5rem;
  }
  
  .contact-email {
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
  }
  
  .store-info {
    font-size: 1rem;
  }
  
  .footer-content {
    padding: 0 1rem;
  }
  
  .main-logo {
    max-height: 100px;
    max-width: 250px;
  }
}
