* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  background: linear-gradient(135deg, #0f0c29 0%, #1a1538 50%, #24243e 100%);
  min-height: 100vh;
  color: #ffffff;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

header {
  text-align: center;
  margin-bottom: 3rem;
  animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.tagline {
  font-size: 1.2rem;
  opacity: 0.9;
  font-weight: 300;
}

.hero {
  text-align: center;
  margin-bottom: 4rem;
  animation: fadeIn 1s ease-in 0.3s both;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.subtitle {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  opacity: 0.95;
  font-weight: 300;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 1.5rem 2rem;
  border-radius: 12px;
  min-width: 100px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.countdown-item:hover {
  transform: translateY(-5px);
}

.countdown-value {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.countdown-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  opacity: 0.8;
  letter-spacing: 1px;
}

.launch-date {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-top: 1rem;
}

.gift-message {
  font-size: 1rem;
  opacity: 0.85;
  margin-top: 0.5rem;
  font-style: italic;
  color: #fbbf24;
}

.features {
  margin-bottom: 4rem;
  animation: fadeIn 1s ease-in 0.5s both;
}

.features h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.6);
  border-color: rgba(255, 255, 255, 0.2);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feature-card p {
  opacity: 0.9;
  line-height: 1.6;
}

.products {
  margin-bottom: 4rem;
  animation: fadeIn 1s ease-in 0.7s both;
}

.products h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.product-showcase {
  display: flex;
  justify-content: center;
}

.product-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  max-width: 500px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: scale(1.05);
}

.product-card h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.product-card p {
  margin-bottom: 2rem;
  opacity: 0.95;
  font-size: 1.1rem;
}

.btn-primary {
  display: inline-block;
  padding: 1rem 2rem;
  background: #6366f1;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.btn-primary:hover {
  background: #4f46e5;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(99, 102, 241, 0.5);
}

footer {
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 4rem;
  animation: fadeIn 1s ease-in 0.9s both;
}

footer a {
  color: #93c5fd;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #60a5fa;
}

.connector-icon {
  font-size: 64px !important;
  /* border: gray solid 1px; */
  /* margin-left: auto; */
  /* margin-right: auto; */
  /* width: 100px; */
  border-radius: 18px;
  /* background-color: cadetblue; */
  text-shadow: 6px 6px 3px black;
}


.shadow {
  text-shadow: 6px 6px 3px black;
}

.space-x-4> :not([hidden])~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(1rem
      /* 16px */
      * var(--tw-space-x-reverse));
  margin-left: calc(1rem
      /* 16px */
      * calc(1 - var(--tw-space-x-reverse)));
}

@media (max-width: 768px) {
  .logo {
    font-size: 2rem;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .subtitle {
    font-size: 1.1rem;
  }

  .countdown {
    gap: 1rem;
  }

  .countdown-item {
    padding: 1rem 1.5rem;
    min-width: 80px;
  }

  .countdown-value {
    font-size: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    padding: 2rem;
  }
}