:root {
  --bg-dark: #050510;
  --bg-card: #121220;
  --bg-accsent: #1c1c2e;

  --text-main: #ffffff;
  --text-muted: #a0a0b0;

  --color-primary: #5c2eff;
  --color-secondary: #00e0ff;
  --color-gold: #ffd700;

  --gradient-main: linear-gradient(135deg, #00c6ff, #0072ff);
  --gradient-purple: linear-gradient(135deg, #b721ff, #21d4fd);
  --gradient-dark: linear-gradient(180deg, rgba(5, 5, 16, 0) 0%, #050510 100%);

  --font-heading: "Outfit", sans-serif;
  --font-body: "Outfit", sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 20px rgba(0, 114, 255, 0.4);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 16px;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Utilities */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.gradient-text {
  background: var(--gradient-purple);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  cursor: pointer;
  border: none;
  outline: none;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.btn-sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  width: 100%;
  max-width: 320px;
}

.btn-glow {
  background: var(--gradient-main);
  color: white;
  box-shadow: var(--shadow-glow);
}

.btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 114, 255, 0.6);
}

.btn-white {
  background: white;
  color: var(--color-primary);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  background: rgba(5, 5, 16, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dot {
  color: var(--color-secondary);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 8rem 0 4rem;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: url("hero_bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 5, 16, 0.85);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(33, 212, 253, 0.15) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(183, 33, 255, 0.15) 0%,
      transparent 40%
    );
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  color: var(--color-secondary);
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  padding: 0 1rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.store-availability {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Sections General */
.section {
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--text-muted);
}

/* Features Grid */
.grid {
  display: grid;
  gap: 1.5rem;
}

.feature-grid {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.03);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  background: var(--bg-accsent);
  border-color: rgba(255, 255, 255, 0.08);
}

.icon-box {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-secondary);
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Steps Section */
.steps-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  padding: 1rem;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: var(--shadow-glow);
}

.step-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.step-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.step-line {
  position: absolute;
  left: 41px;
  /* Center of circle + padding */
  top: 40px;
  bottom: -40px;
  width: 2px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
  display: none;
  /* Hidden on mobile */
}

/* Rewards Section */
.rewards-box {
  background: linear-gradient(135deg, #16162a, #0b0b15);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.reward-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.reward-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
}

.reward-icon {
  font-size: 1.5rem;
  color: var(--color-gold);
}

.trust-badge {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #4ade80;
  font-size: 0.9rem;
  font-weight: 500;
}

/* CTA Section */
.cta-card {
  background: var(--gradient-purple);
  border-radius: var(--radius-lg);
  padding: 3rem 1.5rem;
  text-align: center;
  box-shadow: 0 20px 40px rgba(183, 33, 255, 0.3);
}

.cta-card h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

/* Footer */
.footer {
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 2rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-logo {
  display: block;
  margin-bottom: 1rem;
  color: var(--text-main);
  justify-content: center;
}

.footer-links {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.footer-links a {
  color: var(--text-muted);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--color-secondary);
}

.separator {
  color: rgba(255, 255, 255, 0.1);
}

/* Desktop Media Queries */
@media (min-width: 768px) {
  .container {
    width: 85%;
  }

  .hero {
    text-align: center;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps-wrapper {
    flex-direction: row;
    justify-content: center;
    text-align: center;
    gap: 2rem;
  }

  .step-item {
    flex-direction: column;
    align-items: center;
    flex: 1;
    gap: 1rem;
  }

  .rewards-box {
    padding: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
  }

  .reward-list {
    margin-top: 0;
  }

  .section-header.text-left {
    margin: 0;
    text-align: left;
  }

  .cta-card {
    padding: 5rem;
  }
}

/* Contact Page Styles */
.contact-section {
  padding-top: 2rem;
  min-height: 60vh;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: var(--shadow-card);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
  background: rgba(92, 46, 255, 0.05);
  box-shadow: 0 0 15px rgba(92, 46, 255, 0.1);
}

/* Form Dropdown */
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23a0a0b0%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 0.8rem;
}

/* Success Message */
.success-message {
  text-align: center;
  padding: 2rem 1rem;
  animation: fadeIn 0.5s ease-out;
}

.success-message h3 {
  margin-bottom: 0.5rem;
  color: var(--color-secondary);
}

.success-message p {
  color: var(--text-muted);
  font-size: 1rem;
}

@keyframes fadeIn {
  from {
    opactiy: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
