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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  color: #ffffff;
  background: linear-gradient(135deg, 
    #667eea 0%,
    #764ba2 25%,
    #f093fb 50%,
    #4facfe 75%,
    #00f2fe 100%
  );
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

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

/* Background decorative elements */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

main {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  padding: 20px;
}

.hero {
  text-align: center;
  max-width: 900px;
  width: 100%;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 16px;
  color: #ffffff;
  font-weight: bold;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 48px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

.buttons-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.privacy-link-container {
  margin-top: 0;
}

.button-row {
  display: flex;
  justify-content: center;
  width: 100%;
}

.badge-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s;
  border: 2px solid rgba(0, 0, 0, 0.3);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  height: 60px;
  width: 376px;
  max-width: 100%;
}

.menu-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.button-start {
  background: #0284c7;
  color: #ffffff;
  border-color: #0369a1;
}

.button-start:hover {
  background: #0369a1;
}

.button-privacy {
  background: #6b7280;
  color: #ffffff;
  border-color: #4b5563;
}

.button-privacy:hover {
  background: #4b5563;
}

.badge-link {
  display: inline-block;
  text-decoration: none;
  transition: transform 0.3s, opacity 0.3s;
  height: 60px;
}

.badge-link:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.badge-link img {
  height: 60px;
  width: auto;
  display: block;
}

.privacy-link-container {
  text-align: center;
  margin-top: 8px;
}

.privacy-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 16px;
  transition: opacity 0.3s;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

.privacy-link:hover {
  opacity: 0.7;
}

/* Privacy Page */
.privacy-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
  position: relative;
  z-index: 1;
}

.privacy-page h1 {
  font-size: 36px;
  margin-bottom: 30px;
  color: #1f2937;
}

.privacy-content {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.privacy-content section {
  margin-bottom: 32px;
}

.privacy-content h2 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #1f2937;
}

.privacy-content p {
  margin-bottom: 16px;
  color: #4b5563;
  line-height: 1.8;
}

.update-date {
  color: #6b7280;
  margin-bottom: 16px;
}

.privacy-content ul {
  margin-left: 24px;
  margin-bottom: 16px;
}

.privacy-content li {
  margin-bottom: 8px;
  color: #4b5563;
  line-height: 1.8;
}

.privacy-content strong {
  color: #1f2937;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 40px;
  }

  .hero p {
    font-size: 18px;
    margin-bottom: 32px;
  }

  .button-row {
    width: 100%;
  }

  .badge-row {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
  }

  .menu-button {
    width: 100%;
    max-width: 100%;
  }

  .badge-link {
    display: flex;
    justify-content: center;
  }

  .badge-link img {
    width: 100%;
    max-width: 200px;
    height: auto;
  }

  .privacy-content {
    padding: 24px;
  }

  .privacy-page h1 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

  .menu-button {
    font-size: 16px;
    padding: 14px 24px;
    height: 56px;
  }
}
