* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  background-color: #0a0a0f;
  color: #ffffff;
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  max-width: 430px;
  margin: 0 auto;
  overflow: hidden;
}

/* Background glows */
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.glow-top {
  width: 300px;
  height: 300px;
  background: rgba(59, 130, 246, 0.15);
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
}

.glow-bottom {
  width: 400px;
  height: 400px;
  background: rgba(59, 130, 246, 0.1);
  bottom: -150px;
  left: 50%;
  transform: translateX(-50%);
}

/* Skip button */
.skip-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.skip-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

/* Main content */
.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}

/* Icon */
.icon-wrapper {
  width: 80px;
  height: 80px;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.icon {
  width: 32px;
  height: 32px;
  color: #60a5fa;
}

/* Title */
.title {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.gradient-text {
  background: linear-gradient(90deg, #60a5fa, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Description */
.description {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  max-width: 300px;
  margin-bottom: 40px;
}

/* Pagination dots */
.dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.dot.active {
  width: 24px;
  border-radius: 4px;
  background: #3b82f6;
}

/* Footer */
.footer {
  width: 100%;
  padding-bottom: 20px;
}

/* CTA Button */
.cta-btn {
  width: 100%;
  padding: 18px 32px;
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  border: none;
  border-radius: 30px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(59, 130, 246, 0.5);
}

.arrow {
  width: 20px;
  height: 20px;
}

/* Terms */
.terms {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  margin-top: 20px;
  line-height: 1.5;
}

.terms a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.terms a:hover {
  color: #60a5fa;
}

/* Responsive */
@media (max-height: 700px) {
  .content {
    padding: 40px 20px;
  }

  .icon-wrapper {
    width: 60px;
    height: 60px;
    margin-bottom: 30px;
  }

  .icon {
    width: 24px;
    height: 24px;
  }

  .title {
    font-size: 28px;
  }

  .description {
    margin-bottom: 30px;
  }
}
