:root {
  --primary: #fdee00;
  --primary-light: #fffde4;
  --primary-dark: #e5d700;
  --blue: #3866de;
  --accent: #feee00;
  --text: #ffffff;
  --text-light: #ffffff;
  --background: #3866de;
  --white: #ffffff;
  --border-radius: 12px;
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  --transition: all 0.3s ease;
}

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

body {
  font-family: "Inter", sans-serif;
  background-color: var(--background);
  color: var(--text);
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  text-align: center;
  position: relative;
}

/* Logo styling */
.logo-container {
  position: relative;
}

.logo img {
  margin-top: 3rem;
  height: 70px;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.05em;
}

.logo::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 4px;
  background-color: rgb(255, 255, 255);
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}
/* Launch badge */
.launch-info {
  font-size: 60px;
  font-weight: 600;
  color: #fff456;
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .launch-info {
    font-size: 40px;
  }
}

.tagline {
  font-size: 1.5rem;
  color: var(--text-light);
  font-weight: 300;
}

.highlight {
  color: var(--primary);
  font-weight: 600;
}

/* Features section */
.features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  background-color: rgba(0, 0, 0, 0.108);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  width: 180px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  /* border: 1px solid rgba(255, 193, 7, 0.15); */
  transition: var(--transition);
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px #fdec0029;
  /* border-color: rgba(255, 193, 7, 0.3); */
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.feature-text {
  font-weight: 600;
  text-align: center;
  font-size: 0.95rem;
}

.last-caption {
  font-size: 1.5rem;
  color: var(--text-light);
  font-weight: 300;
}

/* Social links */
.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.social-link {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.social-link img {
  width: 30px;
  height: 30px;
}

.social-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--white);
  transition: var(--transition);
}

.social-link:hover {
  color: var(--primary-dark);
}

.social-link:hover::after {
  width: 100%;
}

/* Footer */
footer {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  color: var(--text-light);
  font-size: 0.875rem;
}

/* Responsive design */
@media (max-width: 768px) {
  .content {
    padding: 2rem;
  }

  h2 {
    font-size: 2rem;
  }

  .tagline {
    font-size: 1.25rem;
  }

  .features {
    gap: 1rem;
  }

  .feature {
    width: 100%;
    max-width: 160px;
  }
}

@media (max-width: 576px) {
  .logo h1 {
    font-size: 2.5rem;
  }

  .content {
    padding: 1.5rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .features {
    flex-direction: column;
    align-items: center;
  }

  .feature {
    width: 100%;
    max-width: 220px;
  }
}
