/* =========================
   COUPEX — LIQUID GLASS UI
   (Near-White · Chartreuse · Vivid Purple)
========================= */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");

:root {
  /* ---- Brand palette ---- */
  --base: #fefffc; /* near-white base */
  --accent: #d0ff00; /* chartreuse / lime */
  --primary: #8116e0; /* vivid purple */
  --primary-deep: #5c0fa3;
  --secondary: #2b0a4d; /* deep violet-black, for grounding/text-on-dark surfaces */
  --text: #1c1024; /* near-black with a violet tint, for text on light glass */
  --light: var(--base);
  --white: #ffffff;

  --base-rgb: 254, 255, 252;
  --accent-rgb: 208, 255, 0;
  --primary-rgb: 129, 22, 224;
  --primary-deep-rgb: 92, 15, 163;
  --secondary-rgb: 43, 10, 77;
  --white-rgb: 255, 255, 255;

  /* Glass body: deeper blur + saturation = refractive look */
  --glass-bg: rgba(255, 255, 255, 0.18);
  --glass-bg-strong: rgba(255, 255, 255, 0.28);
  --glass-bg-frost: rgba(255, 255, 255, 0.5);

  /* Edge highlight that simulates light catching the rim of glass */
  --glass-rim-light: rgba(255, 255, 255, 0.75);
  --glass-rim-shadow: rgba(43, 10, 77, 0.35);
  --glass-border-soft: rgba(255, 255, 255, 0.22);

  /* Specular sheen gradient — the glossy "highlight swipe" on top of glass */
  --sheen: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(255, 255, 255, 0.12) 35%,
    rgba(255, 255, 255, 0.02) 55%,
    rgba(208, 255, 0, 0.16) 100%
  );

  --depth-shadow-1: 0 2px 10px rgba(43, 10, 77, 0.16);
  --depth-shadow-2:
    0 14px 34px rgba(43, 10, 77, 0.24), 0 2px 8px rgba(43, 10, 77, 0.14);
  --depth-shadow-3:
    0 26px 64px rgba(43, 10, 77, 0.32), 0 8px 22px rgba(43, 10, 77, 0.18);
  --depth-shadow-float:
    0 34px 80px rgba(43, 10, 77, 0.38), 0 12px 28px rgba(43, 10, 77, 0.2);

  --radius-sm: 16px;
  --radius-md: 26px;
  --radius-lg: 34px;
  --radius-pill: 999px;

  --text-on-dark: #fefffc;
  --text-on-dark-muted: rgba(254, 255, 252, 0.75);

  --ease-liquid: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  background:
    radial-gradient(
      circle at 10% -5%,
      rgba(var(--accent-rgb), 0.28),
      transparent 40%
    ),
    radial-gradient(
      circle at 92% 6%,
      rgba(var(--primary-rgb), 0.32),
      transparent 46%
    ),
    radial-gradient(
      circle at 12% 62%,
      rgba(var(--primary-rgb), 0.18),
      transparent 45%
    ),
    radial-gradient(
      circle at 88% 92%,
      rgba(var(--accent-rgb), 0.22),
      transparent 48%
    ),
    var(--base);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* =========================
   FOCUS STATES (Accessibility)
========================= */

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* =========================
   NAVBAR — liquid glass pill, glossy top sheen
========================= */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 26px;
  background: var(--glass-bg-frost);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  position: sticky;
  top: 16px;
  z-index: 1000;
  margin: 16px 5% 0;
  border-radius: var(--radius-pill);
  border: 1px solid var(--glass-rim-light);
  box-shadow:
    var(--depth-shadow-2),
    inset 0 1px 1px rgba(255, 255, 255, 0.9),
    inset 0 -6px 14px rgba(129, 22, 224, 0.06);
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.navbar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.6) 0%,
    rgba(255, 255, 255, 0.1) 40%,
    rgba(255, 255, 255, 0) 70%
  );
  pointer-events: none;
}

.logo {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  flex-wrap: wrap;
  background: rgba(var(--primary-rgb), 0.07);
  padding: 6px;
  border-radius: var(--radius-pill);
  position: relative;
  z-index: 1;
  box-shadow: inset 0 1px 3px rgba(43, 10, 77, 0.08);
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  transition:
    background 0.35s var(--ease-liquid),
    color 0.35s var(--ease-liquid),
    transform 0.35s var(--ease-liquid),
    box-shadow 0.35s var(--ease-liquid);
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  display: inline-block;
}

.nav-links a:hover {
  color: var(--primary-deep);
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    var(--depth-shadow-1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

.coin-box {
  background: linear-gradient(155deg, var(--accent), #a8cc00 75%);
  color: var(--secondary);
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  box-shadow:
    var(--depth-shadow-2),
    inset 0 1px 1px rgba(255, 255, 255, 0.55),
    inset 0 -3px 8px rgba(43, 10, 77, 0.12);
  white-space: nowrap;
  position: relative;
  z-index: 1;
}

/* =========================
   HERO
========================= */

.hero {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 7% 60px;
  position: relative;
}

.hero-img {
  width: 280px;
  height: 280px;
  max-width: 60vw;
  filter: drop-shadow(0 25px 35px rgba(129, 22, 224, 0.28));
  transform: translateZ(0);
  animation: float-gentle 6s ease-in-out infinite;
}

@keyframes float-gentle {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-img {
    animation: none;
  }
}

.badge {
  background: var(--glass-bg-frost);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  color: var(--primary-deep);
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  margin-top: 22px;
  margin-bottom: 25px;
  font-weight: 600;
  border: 1px solid var(--glass-rim-light);
  box-shadow:
    var(--depth-shadow-1),
    inset 0 1px 1px rgba(255, 255, 255, 0.85);
  position: relative;
}

.hero h1 {
  font-size: 4rem;
  max-width: 900px;
  color: var(--secondary);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero p {
  max-width: 700px;
  margin-top: 25px;
  font-size: 1.15rem;
  color: rgba(28, 16, 36, 0.75);
}

.hero-buttons {
  margin-top: 40px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

/* =========================
   BUTTONS — glossy liquid blobs
========================= */

.primary-btn,
.secondary-btn,
button {
  padding: 15px 30px;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-size: 1rem;
  text-decoration: none;
  transition:
    transform 0.35s var(--ease-liquid),
    box-shadow 0.35s var(--ease-liquid),
    filter 0.35s var(--ease-liquid);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  position: relative;
  overflow: hidden;
}

.primary-btn,
button {
  background: linear-gradient(160deg, var(--primary), var(--primary-deep) 70%);
  color: white;
  box-shadow:
    var(--depth-shadow-2),
    inset 0 1px 1px rgba(255, 255, 255, 0.35),
    inset 0 -4px 10px rgba(0, 0, 0, 0.18);
}

.primary-btn::before,
button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 55%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.35),
    rgba(255, 255, 255, 0) 100%
  );
  border-radius: var(--radius-pill) var(--radius-pill) 50% 50%;
  pointer-events: none;
}

.primary-btn:hover,
button:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow:
    var(--depth-shadow-3),
    inset 0 1px 1px rgba(255, 255, 255, 0.45),
    inset 0 -4px 10px rgba(0, 0, 0, 0.18);
}

.primary-btn:active,
button:active {
  transform: translateY(-1px) scale(0.97);
}

.secondary-btn {
  background: var(--glass-bg-frost);
  backdrop-filter: blur(18px) saturate(170%);
  -webkit-backdrop-filter: blur(18px) saturate(170%);
  color: var(--primary-deep);
  border: 1px solid var(--glass-rim-light);
  box-shadow:
    var(--depth-shadow-1),
    inset 0 1px 1px rgba(255, 255, 255, 0.85);
}

.secondary-btn::before {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.6),
    rgba(255, 255, 255, 0) 100%
  );
}

.secondary-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow:
    var(--depth-shadow-2),
    inset 0 1px 1px rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.82);
}

.secondary-btn:active {
  transform: translateY(-1px) scale(0.97);
}

/* =========================
   SECTION
========================= */

.section {
  padding: 70px 7%;
  position: relative;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.section h2 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--secondary);
  font-size: 2rem;
  letter-spacing: -0.01em;
}

.section h1 {
  color: var(--secondary);
  margin-bottom: 25px;
  letter-spacing: -0.02em;
}

/* =========================
   GRID
========================= */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 26px;
}

.four-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* =========================
   CARD — liquid glass panel with sheen
========================= */

.card,
.coupon-card,
.reward-card,
.stat-card {
  background: var(--glass-bg-frost);
  backdrop-filter: blur(24px) saturate(170%);
  -webkit-backdrop-filter: blur(24px) saturate(170%);
  padding: 30px;
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-rim-light);
  box-shadow:
    var(--depth-shadow-2),
    inset 0 1px 1px rgba(255, 255, 255, 0.85),
    inset 0 -10px 24px rgba(129, 22, 224, 0.04);
  transition:
    transform 0.45s var(--ease-liquid),
    box-shadow 0.45s var(--ease-liquid);
  position: relative;
  overflow: hidden;
}

.card::before,
.coupon-card::before,
.reward-card::before,
.stat-card::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -20%;
  width: 70%;
  height: 90%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.55),
    rgba(255, 255, 255, 0) 70%
  );
  pointer-events: none;
  transform: rotate(-15deg);
}

.card:hover,
.coupon-card:hover,
.reward-card:hover,
.stat-card:hover {
  transform: translateY(-12px) scale(1.015);
  box-shadow:
    var(--depth-shadow-float),
    inset 0 1px 1px rgba(255, 255, 255, 0.9);
}

.card h3,
.coupon-card h3,
.reward-card h3,
.stat-card h3 {
  color: var(--primary-deep);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.card p,
.coupon-card p,
.reward-card p,
.stat-card p,
.card ul,
.card h2 {
  position: relative;
  z-index: 1;
}

.card h2 {
  color: var(--secondary);
}

/* =========================
   FEATURED / COUPON CARDS — accent edge glow
========================= */

.coupon-card {
  position: relative;
}

.coupon-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent), rgba(208, 255, 0, 0.25));
  box-shadow: 4px 0 16px rgba(208, 255, 0, 0.55);
}

.coupon-card small {
  display: inline-block;
  background: rgba(var(--primary-rgb), 0.16);
  color: var(--primary-deep);
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.5);
}

/* =========================
   STATS
========================= */

.stat-card {
  text-align: center;
}

.stat-card h3 {
  font-size: 2rem;
}

/* =========================
   SEARCH — liquid recessed channel
========================= */

.search-bar {
  width: 100%;
  padding: 16px 22px;
  border: 1px solid var(--glass-border-soft);
  border-radius: var(--radius-pill);
  margin-bottom: 40px;
  background: var(--glass-bg-frost);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow:
    inset 0 3px 8px rgba(43, 10, 77, 0.1),
    inset 0 1px 1px rgba(255, 255, 255, 0.7),
    var(--depth-shadow-1);
  font-size: 1rem;
  color: var(--text);
  transition: box-shadow 0.3s var(--ease-liquid);
}

.search-bar:focus-visible {
  box-shadow:
    inset 0 3px 8px rgba(43, 10, 77, 0.12),
    inset 0 1px 1px rgba(255, 255, 255, 0.8),
    var(--depth-shadow-2);
}

/* =========================
   FORM — liquid glass inputs
========================= */

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

input,
select,
textarea {
  width: 100%;
  padding: 15px 18px;
  border: 1px solid var(--glass-border-soft);
  border-radius: var(--radius-sm);
  outline: none;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  color: var(--text);
  box-shadow:
    inset 0 2px 6px rgba(43, 10, 77, 0.08),
    inset 0 1px 1px rgba(255, 255, 255, 0.6);
  transition:
    box-shadow 0.3s var(--ease-liquid),
    border-color 0.3s var(--ease-liquid);
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  border-color: var(--primary);
  box-shadow:
    inset 0 2px 6px rgba(43, 10, 77, 0.08),
    var(--depth-shadow-1);
}

textarea {
  min-height: 140px;
  resize: none;
}

/* =========================
   DASHBOARD — molten glass wallet
========================= */

.wallet {
  background: linear-gradient(150deg, var(--primary), var(--primary-deep) 75%);
  color: white;
  padding: 38px;
  border-radius: var(--radius-lg);
  margin-bottom: 30px;
  text-align: center;
  box-shadow:
    var(--depth-shadow-float),
    inset 0 1px 1px rgba(255, 255, 255, 0.3),
    inset 0 -10px 26px rgba(0, 0, 0, 0.16);
  position: relative;
  overflow: hidden;
}

.wallet::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -10%;
  width: 70%;
  height: 110%;
  background: radial-gradient(circle, rgba(208, 255, 0, 0.22), transparent 65%);
  pointer-events: none;
  transform: rotate(-12deg);
}

.wallet h2,
.wallet h1 {
  position: relative;
  z-index: 1;
}

.wallet h1 {
  color: white;
  font-size: 3rem;
}

/* =========================
   ABOUT PAGE
========================= */

.support-dev {
  margin-top: 25px;
  background: rgba(var(--accent-rgb), 0.18);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  padding: 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-rim-light);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.6);
}

.support-dev h3 {
  color: var(--primary-deep);
}

.doc-buttons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.btn {
  display: inline-flex;
  padding: 14px 30px;
  background: linear-gradient(160deg, var(--primary), var(--primary-deep) 70%);
  color: white;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 600;
  box-shadow:
    var(--depth-shadow-2),
    inset 0 1px 1px rgba(255, 255, 255, 0.3),
    inset 0 -4px 10px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.35s var(--ease-liquid),
    box-shadow 0.35s var(--ease-liquid);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 55%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.3),
    rgba(255, 255, 255, 0) 100%
  );
  border-radius: var(--radius-pill) var(--radius-pill) 50% 50%;
  pointer-events: none;
}

.btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow:
    var(--depth-shadow-3),
    inset 0 1px 1px rgba(255, 255, 255, 0.4);
}

.qr-img {
  width: 100%;
  max-width: 700px;
  height: auto;
  display: block;
  margin: auto;
  border-radius: var(--radius-md);
  box-shadow:
    var(--depth-shadow-2),
    inset 0 1px 1px rgba(255, 255, 255, 0.5);
  border: 1px solid var(--glass-rim-light);
}

/* =========================
   FOOTER — grounded glass base
========================= */

footer {
  background: linear-gradient(180deg, var(--secondary), #190734);
  color: white;
  text-align: center;
  padding: 50px 20px;
  margin-top: 90px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(
    180deg,
    rgba(208, 255, 0, 0.08),
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
}

footer h3 {
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

footer p {
  position: relative;
  z-index: 1;
}

/* =========================
   RESPONSIVE
   Breakpoints: 1440 (large desktop) / 1024 (laptop/tablet landscape)
   / 768 (tablet portrait) / 600 (large phone) / 400 (small phone)
========================= */

@media (min-width: 1440px) {
  .navbar {
    margin: 16px 8% 0;
  }
}

@media (max-width: 1024px) {
  .navbar {
    margin: 16px 4% 0;
    padding: 14px 20px;
  }

  .section {
    padding: 60px 5%;
  }

  .hero {
    padding: 70px 5% 50px;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .grid {
    gap: 22px;
  }
}

@media (max-width: 900px) {
  .navbar {
    flex-direction: column;
    gap: 14px;
    margin: 12px 4% 0;
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    top: 10px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }

  .nav-links a {
    padding: 10px 14px;
    font-size: 0.9rem;
  }

  .coin-box {
    font-size: 0.9rem;
  }

  .hero h1 {
    font-size: 2.7rem;
  }

  .hero {
    min-height: 70vh;
    padding: 60px 6% 40px;
  }

  .hero-img {
    width: 220px !important;
    height: 220px !important;
  }

  .grid,
  .four-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .card,
  .coupon-card,
  .reward-card,
  .stat-card {
    padding: 24px;
  }
}

@media (max-width: 600px) {
  body {
    line-height: 1.55;
  }

  .section {
    padding: 50px 6%;
  }

  .section h1 {
    font-size: 1.7rem;
  }

  .section h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-img {
    width: 170px !important;
    height: 170px !important;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
    text-align: center;
  }

  .navbar {
    border-radius: var(--radius-md);
    padding: 14px 16px;
  }

  .logo {
    font-size: 1.4rem;
  }

  .grid,
  .four-grid {
    grid-template-columns: 1fr;
  }

  .card,
  .coupon-card,
  .reward-card,
  .stat-card {
    padding: 22px;
  }

  .wallet {
    padding: 28px 20px;
  }

  .wallet h1 {
    font-size: 2.4rem;
  }

  button,
  .primary-btn,
  .secondary-btn,
  .btn,
  input,
  select,
  textarea,
  .search-bar {
    min-height: 48px;
  }

  footer {
    padding: 40px 16px;
    margin-top: 60px;
  }
}

@media (max-width: 400px) {
  .navbar {
    padding: 12px 14px;
  }

  .logo {
    font-size: 1.25rem;
  }

  .nav-links a {
    padding: 9px 12px;
    font-size: 0.85rem;
  }

  .coin-box {
    padding: 8px 16px;
    font-size: 0.85rem;
  }

  .hero h1 {
    font-size: 1.7rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .badge {
    font-size: 0.85rem;
    padding: 8px 16px;
  }

  .hero-img {
    width: 140px !important;
    height: 140px !important;
  }

  .section h1 {
    font-size: 1.5rem;
  }

  .section h2 {
    font-size: 1.3rem;
  }

  .card,
  .coupon-card,
  .reward-card,
  .stat-card {
    padding: 18px;
  }

  .wallet h1 {
    font-size: 2rem;
  }

  .qr-img {
    border-radius: var(--radius-sm);
  }
}

@media (max-height: 480px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 40px 6%;
  }

  .hero-img {
    width: 110px !important;
    height: 110px !important;
  }

  .hero h1 {
    font-size: 1.8rem;
  }
}

@media (hover: none) {
  .card:hover,
  .coupon-card:hover,
  .reward-card:hover,
  .stat-card:hover,
  .primary-btn:hover,
  .secondary-btn:hover,
  button:hover,
  .btn:hover,
  .nav-links a:hover {
    transform: none;
  }
}
