/* ============================================================
   CarX Street Rewards — style.css
   Light racing theme · Interactive · Mobile-first
   ============================================================ */

/* ---------- RESET & TOKENS ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #4CAF50; /* Emerald Green */
  --primary-glow: rgba(76, 175, 80, 0.4);
  --accent: #ffd700; /* Gold */
  --dark: #121212; /* Very Dark */
  --bg-deep: #0a0a0a; /* Darkest background */
  --bg-card: #1c1c1c; /* Card background */
  --bg-card2: #242424;
  --border: rgba(255, 255, 255, 0.08);
  --border-focus: rgba(76, 175, 80, 0.3);
  --text: #ffffff;
  --text-dim: #a0a0a0;
  --radius: 16px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Cairo', sans-serif;
  background: var(--bg-deep);
  color: var(--text);
  overflow-x: hidden;
  direction: rtl;
}

/* Background Racing Pattern */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: linear-gradient(45deg, rgba(255,255,255,0.01) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.01) 50%, rgba(255,255,255,0.01) 75%, transparent 75%, transparent);
  background-size: 20px 20px;
  z-index: -1;
  opacity: 0.5;
}

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #e2e8f0;
}
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

/* ---------- PARTICLE CANVAS ---------- */
#particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .8;
}

/* ---------- CONTAINER ---------- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.2rem;
  position: relative;
  z-index: 2;
}

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(18, 18, 18, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}

.logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: .02em;
}
.logo-img { height: 32px; width: auto; border-radius: 6px;}
.logo-text { color: #fff; }
.accent { color: var(--primary); }

.header-badge {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  font-weight: 700;
  color: var(--primary);
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.2);
  border-radius: 20px;
  padding: .35rem .9rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse-dot 1.4s infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.6); }
  50% { box-shadow: 0 0 0 6px rgba(76, 175, 80, 0); }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 90svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6rem 0 4rem;
  overflow: hidden;
}

/* Road lines */
.road-lines {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  gap: 60px;
  pointer-events: none;
  opacity: .4;
}

.road-lines .line {
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, #ccc 40%, transparent);
  animation: road-scroll 1.5s linear infinite;
}

.road-lines .line:nth-child(2) { animation-delay: .5s; }
.road-lines .line:nth-child(3) { animation-delay: 1s; }

@keyframes road-scroll {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(18,18,18,0.7) 0%, rgba(18,18,18,1) 100%), url('../images/hero_bg.webp') center/cover no-repeat;
  z-index: 0;
}

/* Car SVG / Icon */
.hero-car {
  position: relative;
  z-index: 2;
  margin-bottom: 2rem;
}

.hero-icon {
  width: 160px;
  height: 160px;
  border-radius: 36px;
  object-fit: cover;
  box-shadow: 0 15px 35px rgba(76, 175, 80, 0.25), 0 5px 15px rgba(0,0,0,0.5);
  animation: float-icon 4s ease-in-out infinite;
  display: block;
  margin: 0 auto;
  border: 4px solid var(--primary);
}

@keyframes float-icon {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-12px) scale(1.02); }
}

/* Hero content */
.hero-content {
  text-align: center;
  z-index: 2;
  padding: 0 1rem;
}

.hero-tag {
  display: inline-block;
  background: var(--dark);
  color: #fff;
  border-radius: 20px;
  padding: .4rem 1.2rem;
  font-size: .85rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  animation: fade-in .6s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.hero-title {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 800;
  letter-spacing: .02em;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-dim);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  font-weight: 600;
}

/* ---------- BUTTONS ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: linear-gradient(135deg, var(--primary) 0%, #388e3c 100%);
  color: #fff;
  font-family: 'Cairo', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px var(--primary-glow), 0 4px 10px rgba(0, 0, 0, .4);
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 35px var(--primary-glow), 0 6px 15px rgba(0, 0, 0, .2);
}

.btn-primary:active {
  transform: scale(.96);
}

.btn-shine {
  position: absolute;
  top: -50%;
  left: -60%;
  width: 50%;
  height: 200%;
  background: rgba(255, 255, 255, .25);
  transform: skewX(-20deg);
  animation: shine 2.8s infinite;
}

@keyframes shine {
  0% { left: -60%; }
  40%, 100% { left: 130%; }
}

.btn-large {
  width: 100%;
  justify-content: center;
  font-size: 1.3rem;
  padding: 1.1rem 2rem;
  border-radius: 12px;
  margin-top: 1rem;
}

.arrow {
  font-size: 1.2rem;
  animation: bounce-arrow 1.5s infinite;
}

@keyframes bounce-arrow {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-5px); }
}

/* Hero stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3.5rem;
  flex-wrap: wrap;
  z-index: 2;
  background: rgba(36, 36, 36, 0.6);
  backdrop-filter: blur(10px);
  padding: 1rem 2rem;
  border-radius: 100px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.05);
}

.stat-item { text-align: center; }
.stat-num { display: block; font-size: 1.4rem; font-weight: 800; color: #fff; }
.stat-label { font-size: .8rem; color: var(--text-dim); font-weight: 600; }
.stat-divider { width: 2px; height: 36px; background: rgba(255,255,255,0.1); }

/* ---------- SECTION TITLES ---------- */
.section-title {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  margin-bottom: .5rem;
  color: #fff;
}

.section-title::after {
  content: '';
  display: block;
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  margin: .8rem auto 0;
}

.section-sub {
  text-align: center;
  color: var(--text-dim);
  margin-bottom: 3rem;
  font-size: 1.05rem;
  font-weight: 600;
}

/* ---------- REWARDS SECTION ---------- */
.rewards-section {
  padding: 5rem 0;
  position: relative;
  z-index: 2;
}

.rewards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.8rem;
}

.reward-card {
  background: var(--bg-card);
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 2.2rem 1.5rem 1.8rem;
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  outline: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.reward-card:hover,
.reward-card:focus {
  transform: translateY(-8px);
  border-color: rgba(230, 46, 45, 0.2);
  box-shadow: 0 15px 35px rgba(230, 46, 45, 0.1), 0 10px 20px rgba(0, 0, 0, 0.05);
}

.reward-card.selected {
  border-color: var(--primary);
  background: #2a2a2a;
  box-shadow: 0 15px 40px var(--primary-glow), 0 10px 20px rgba(0, 0, 0, 0.4);
  transform: translateY(-10px) scale(1.03);
}

.reward-card.selected .card-check {
  opacity: 1;
  transform: scale(1);
}

.card-glow {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  filter: blur(45px);
  opacity: .15;
  pointer-events: none;
  transition: opacity 0.3s;
}

.reward-card:hover .card-glow { opacity: 0.3; }

.glow-yellow { background: #ffd700; }
.glow-gold { background: #ff9900; }
.glow-cyan { background: var(--primary); }
.glow-purple { background: var(--dark); }

.card-icon {
  margin-bottom: 1.2rem;
  display: flex;
  justify-content: center;
  transition: transform 0.3s;
}
.reward-card:hover .card-icon { transform: scale(1.1); }

.card-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: .5rem;
  color: #fff;
}

.card-amount {
  font-size: .95rem;
  color: var(--text-dim);
  margin-bottom: 1rem;
  font-weight: 600;
}

.card-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 800;
  padding: .25rem .8rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.tag-hot { background: rgba(76, 175, 80, 0.1); color: var(--primary); }
.tag-premium { background: rgba(255, 215, 0, 0.15); color: #ffd700; }
.tag-rare { background: rgba(255, 255, 255, 0.1); color: #fff; }
.tag-new { background: rgba(0, 200, 83, 0.1); color: #00c853; }

.card-check {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 28px;
  height: 28px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  font-weight: 900;
  opacity: 0;
  transform: scale(.5);
  transition: opacity .4s cubic-bezier(0.175, 0.885, 0.32, 1.275), transform .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 10px var(--primary-glow);
}

/* ---------- GENERATOR SECTION ---------- */
.generator-section {
  padding: 5rem 0;
  position: relative;
  z-index: 2;
}

.gen-box {
  background: var(--bg-card2);
  border: none;
  border-radius: 24px;
  padding: 3rem 2.5rem;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0,0,0,0.03);
  position: relative;
  overflow: hidden;
}

.gen-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--dark), var(--primary), var(--accent));
}

.gen-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.gen-icon {
  font-size: 3rem;
  margin-bottom: .8rem;
  text-shadow: 0 4px 10px rgba(230,46,45,0.2);
}

.gen-title {
  font-size: 1.9rem;
  font-weight: 900;
  margin-bottom: .5rem;
  color: #fff;
}

.gen-sub {
  color: var(--text-dim);
  font-size: 1rem;
  font-weight: 600;
}

/* Input */
.input-group {
  margin-bottom: 1.5rem;
}

.input-label {
  display: block;
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: .6rem;
  color: #fff;
}

.input-wrapper {
  position: relative;
}

.input-icon {
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  pointer-events: none;
  color: var(--text-dim);
}

.styled-input {
  width: 100%;
  background: #121212;
  border: 2px solid #333;
  border-radius: 12px;
  color: #fff;
  font-family: 'Cairo', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 1rem 3.2rem 1rem 1.2rem;
  outline: none;
  transition: all var(--transition);
  direction: rtl;
}

.styled-input::placeholder {
  color: #94a3b8;
  font-weight: 500;
}

.styled-input:focus {
  background: #fff;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(230, 46, 45, 0.15);
}

.styled-input.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.15);
}

.input-error {
  display: block;
  color: #ef4444;
  font-size: .85rem;
  font-weight: 600;
  margin-top: .4rem;
  min-height: 1.2rem;
}

/* Selected reward display */
.selected-reward-display {
  background: rgba(230, 46, 45, 0.05);
  border: 1px solid rgba(230, 46, 45, 0.15);
  border-radius: 10px;
  padding: .8rem 1.2rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .95rem;
}

.sd-label {
  color: var(--text-dim);
  font-weight: 600;
  flex-shrink: 0;
}

.sd-value {
  color: var(--primary);
  font-weight: 800;
}

.no-password-note {
  text-align: center;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-dim);
  margin-top: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

/* ---------- STEPS SECTION ---------- */
.steps-section {
  padding: 5rem 0;
  position: relative;
  z-index: 2;
  background: #121212;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.step-card {
  background: #1c1c1c;
  border: 1px solid #333;
  border-radius: var(--radius);
  padding: 2.5rem 1.8rem;
  text-align: center;
  position: relative;
  transition: all var(--transition);
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.step-card:hover {
  background: #242424;
  border-color: var(--primary);
  box-shadow: 0 15px 30px rgba(0,0,0,0.5);
  transform: translateY(-5px);
}

.step-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(76, 175, 80, 0.08);
  position: absolute;
  top: .5rem;
  right: 1rem;
  line-height: 1;
}

.step-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  transition: transform 0.3s;
}
.step-card:hover .step-icon { transform: scale(1.1) rotate(5deg); }

.step-title {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: .6rem;
  color: #fff;
}

.step-desc {
  font-size: .95rem;
  color: var(--text-dim);
  line-height: 1.6;
  font-weight: 600;
}

/* ---------- TRUST SECTION ---------- */
.trust-section {
  padding: 4rem 0;
  position: relative;
  z-index: 2;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}

.trust-item {
  padding: 1.5rem;
  background: #1c1c1c;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}
.trust-item:hover { transform: translateY(-5px); }

.trust-icon {
  font-size: 2.2rem;
  margin-bottom: .8rem;
}

.trust-item h4 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: .4rem;
  color: #fff;
}

.trust-item p {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-dim);
}

/* ---------- FOOTER ---------- */
.site-footer {
  padding: 3.5rem 0 2.5rem;
  text-align: center;
  background: var(--dark);
  color: #fff;
  position: relative;
  z-index: 2;
}

.footer-logo {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.5rem;
}

.disclaimer-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.2rem 1.8rem;
  max-width: 720px;
  margin: 0 auto 1.8rem;
}

.disclaimer-text {
  font-size: .85rem;
  color: #94a3b8;
  line-height: 1.8;
  font-weight: 500;
}

.footer-copy {
  font-size: .8rem;
  color: #64748b;
  font-weight: 600;
}

/* ---------- COMMENTS SECTION ---------- */
.comments-section {
  padding: 4rem 0;
  position: relative;
  z-index: 2;
  background: var(--bg-deep);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.comments-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-card);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.05);
}

.comment-box {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  animation: fade-in 0.5s ease;
}

.comment-box:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.comment-avatar img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.comment-content {
  flex: 1;
}

.comment-header {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: .4rem;
}

.comment-name {
  font-weight: 800;
  color: #fff;
  font-size: 1.05rem;
}

.comment-time {
  font-size: .8rem;
  color: var(--text-dim);
  font-weight: 600;
}

.comment-text {
  font-size: .95rem;
  color: #e2e8f0;
  line-height: 1.6;
  margin-bottom: .8rem;
  font-weight: 600;
}

.comment-actions {
  display: flex;
  gap: 1.2rem;
  font-size: .85rem;
  color: var(--text-dim);
  font-weight: 700;
}

.comment-like, .comment-reply {
  cursor: pointer;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
}

.comment-like:hover, .comment-reply:hover {
  color: var(--primary);
}

.add-comment-mock {
  max-width: 800px;
  margin: 1.5rem auto 0;
  display: flex;
  gap: 1rem;
}

.add-comment-mock input {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  padding: .8rem 1.5rem;
  color: #fff;
  font-family: 'Cairo', sans-serif;
  font-size: .95rem;
  font-weight: 600;
}

.add-comment-mock button {
  padding: .8rem 1.8rem;
  border-radius: 50px;
  font-size: 1rem;
}

@media (max-width: 640px) {
  .comments-container { padding: 1rem; }
  .add-comment-mock { flex-direction: column; }
  .add-comment-mock button { width: 100%; }
}

/* ---------- ANIMATIONS ---------- */
@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content {
  animation: fade-in .8s ease .2s both;
}

.hero-stats {
  animation: fade-in .8s ease .5s both;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s cubic-bezier(0.2, 0.8, 0.2, 1), transform .7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .hero-title { font-size: 2.5rem; }
  .gen-box { padding: 2rem 1.5rem; }
  .rewards-grid, .steps-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
}

@media (max-width: 640px) {
  .hero { padding: 5rem 0 2rem; min-height: auto; }
  .hero-icon { width: 120px; height: 120px; border-radius: 24px; }
  .rewards-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .stat-divider { display: none; }
  .hero-stats { gap: 1rem; flex-direction: column; border-radius: 20px; }
}

@media (max-width: 400px) {
  .rewards-grid { grid-template-columns: 1fr; }
}

/* ---------- SWEETALERT OVERRIDES ---------- */
.swal2-popup {
  background: #1c1c1c !important;
  border-radius: 24px !important;
  border: 1px solid #333 !important;
  box-shadow: 0 25px 50px rgba(0,0,0,0.5) !important;
  font-family: 'Cairo', sans-serif !important;
}
.swal2-title {
  font-family: 'Cairo', sans-serif !important;
  font-size: 1.4rem !important;
  font-weight: 800 !important;
  color: #fff !important;
}
.swal2-html-container { font-weight: 600 !important; color: var(--text-dim) !important; }
.swal2-image { border-radius: 50% !important; box-shadow: 0 10px 20px rgba(0,0,0,0.05) !important; }