/* ============================================
   गली दिसावर मिक्स — style.css
   ============================================ */

:root {
  --purple: #7C3AED;
  --purple-light: #A78BFA;
  --blue: #3B82F6;
  --pink: #EC4899;
  --green: #10B981;
  --orange: #F59E0B;
  --teal: #06B6D4;
  --red: #EF4444;
  --grad-main: linear-gradient(135deg, #7C3AED 0%, #3B82F6 50%, #06B6D4 100%);
  --grad-soft: linear-gradient(135deg, #EEF2FF 0%, #F0F9FF 100%);
  --glass-bg: rgba(255,255,255,0.72);
  --glass-border: rgba(255,255,255,0.65);
  --shadow-soft: 0 8px 32px rgba(124,58,237,0.08);
  --shadow-hover: 0 20px 60px rgba(124,58,237,0.18);
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font: 'Poppins', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: #f8f7ff; color: #1e1b4b; overflow-x: hidden; line-height: 1.7; }
section { position: relative; }
.section-pad { padding: 90px 0; }
img { max-width: 100%; }

/* ---- UTILITIES ---- */
.gradient-text { background: var(--grad-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.bg-light-soft { background: var(--grad-soft); }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.text-purple { color: var(--purple) !important; }

/* ---- GLASS CARD ---- */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 24px;
}
.glass-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }

/* ---- BUTTONS ---- */
.btn-gradient {
  background: var(--grad-main); color: #fff !important; border: none;
  border-radius: 50px; font-weight: 600; font-size: 0.9rem;
  padding: 10px 28px; transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(124,58,237,0.3);
  text-decoration: none; display: inline-block;
}
.btn-gradient:hover { opacity: 0.88; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(124,58,237,0.45); }

.btn-outline-glass {
  background: rgba(255,255,255,0.55); border: 2px solid rgba(124,58,237,0.4);
  color: var(--purple) !important; border-radius: 50px; font-weight: 600;
  font-size: 0.9rem; padding: 10px 28px; backdrop-filter: blur(8px);
  transition: all 0.3s; text-decoration: none; display: inline-block;
}
.btn-outline-glass:hover { background: var(--grad-main); color: #fff !important; border-color: transparent; transform: translateY(-2px); }

/* ---- SECTION HEADERS ---- */
.section-tag {
  background: linear-gradient(135deg, #EDE9FE, #DBEAFE);
  color: var(--purple); padding: 6px 18px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.5px;
  display: inline-block; border: 1px solid rgba(124,58,237,0.12);
}
.section-title { font-size: clamp(1.8rem,4vw,2.5rem); font-weight: 800; line-height: 1.2; margin-top: 12px; color: #1e1b4b; }
.section-sub { color: #6b7280; font-size: 1rem; max-width: 560px; margin: 10px auto 0; }

/* ============================================
   STICKY CHATBOT
   ============================================ */
.sticky-chatbot {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.scb-toggle {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--grad-main);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 28px rgba(124,58,237,0.45);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.scb-toggle:hover { transform: scale(1.1); box-shadow: 0 10px 40px rgba(124,58,237,0.55); }

.scb-badge {
  position: absolute;
  top: -4px; right: -4px;
  background: #EF4444;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 20px;
  animation: pulseBadge 1.5s ease-in-out infinite;
}
@keyframes pulseBadge { 0%,100% { transform: scale(1); } 50% { transform: scale(1.15); } }

.scb-window {
  display: none;
  flex-direction: column;
  width: 320px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  border: 1px solid rgba(124,58,237,0.1);
  animation: slideUpChat 0.3s ease;
}
@keyframes slideUpChat { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }

.scb-header {
  background: var(--grad-main);
  padding: 14px 16px;
  display: flex; align-items: center; gap: 10px;
  color: #fff;
}
.scb-avatar {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.22);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.scb-name { font-weight: 700; font-size: 0.9rem; }
.scb-status { font-size: 0.72rem; opacity: 0.85; display: flex; align-items: center; gap: 4px; }
.scb-close {
  background: rgba(255,255,255,0.2); border: none; color: #fff;
  width: 28px; height: 28px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 0.85rem; transition: background 0.2s;
}
.scb-close:hover { background: rgba(255,255,255,0.35); }

.scb-body {
  padding: 14px;
  background: #fafafe;
  height: 230px;
  overflow-y: auto;
  display: flex; flex-direction: column; gap: 10px;
}
.scb-body::-webkit-scrollbar { width: 4px; }
.scb-body::-webkit-scrollbar-thumb { background: var(--purple-light,#A78BFA); border-radius: 2px; }

.scb-msg { display: flex; }
.scb-msg span {
  padding: 9px 13px; border-radius: 16px;
  font-size: 0.8rem; max-width: 88%; line-height: 1.55;
}
.scb-msg.ai span {
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(124,58,237,0.1);
  color: #374151;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  border-radius: 4px 16px 16px 16px;
}
.scb-msg.user { justify-content: flex-end; }
.scb-msg.user span {
  background: var(--grad-main); color: #fff;
  border-radius: 16px 4px 16px 16px;
}

.scb-input-bar {
  padding: 10px 12px;
  background: #fff;
  border-top: 1px solid rgba(124,58,237,0.08);
  display: flex; gap: 8px; align-items: center;
}
.scb-inp {
  flex: 1; border: 1px solid rgba(124,58,237,0.18);
  border-radius: 50px; padding: 8px 14px;
  font-family: var(--font); font-size: 0.8rem;
  outline: none; background: #f8f7ff; color: #374151;
  transition: border-color 0.2s;
}
.scb-inp:focus { border-color: var(--purple); }
.scb-send {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--grad-main); border: none;
  color: #fff; display: flex; align-items: center;
  justify-content: center; cursor: pointer; font-size: 0.85rem;
  flex-shrink: 0; transition: transform 0.2s;
}
.scb-send:hover { transform: scale(1.1); }

/* Online dot */
.online-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ade80; display: inline-block;
  animation: pulse-dot 1.5s ease-in-out infinite;
}
@keyframes pulse-dot { 0%,100% { opacity:1; } 50% { opacity:0.4; } }

/* ============================================
   NAVBAR
   ============================================ */
.glass-nav {
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.5);
  padding: 12px 0; transition: all 0.3s; z-index: 1000;
}
.glass-nav.scrolled { background: rgba(255,255,255,0.95); box-shadow: 0 4px 24px rgba(124,58,237,0.1); }

.logo-text { font-size: 1.3rem; font-weight: 800; color: #1e1b4b !important; text-decoration: none; letter-spacing: -0.5px; }
.logo-dot { background: var(--grad-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.nav-link { color: #374151 !important; font-weight: 500; font-size: 0.88rem; padding: 7px 12px !important; border-radius: 8px; transition: all 0.2s; }
.nav-link:hover { color: var(--purple) !important; background: rgba(124,58,237,0.06); }

/* ============================================
   HERO
   ============================================ */
.hero-section {
  background: linear-gradient(135deg, #faf8ff 0%, #f0f9ff 50%, #fdf4ff 100%);
  min-height: 100vh; overflow: hidden;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shape { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.32; animation: floatShape 8s ease-in-out infinite; }
.shape-1 { width: 500px; height: 500px; background: radial-gradient(circle,#c4b5fd,transparent); top:-100px; right:-80px; }
.shape-2 { width: 350px; height: 350px; background: radial-gradient(circle,#93c5fd,transparent); bottom:100px; left:-60px; animation-delay:-3s; }
.shape-3 { width: 250px; height: 250px; background: radial-gradient(circle,#f9a8d4,transparent); top:50%; left:40%; animation-delay:-5s; }
@keyframes floatShape { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-30px) scale(1.05); } }

.badge-pill {
  background: linear-gradient(135deg,#EDE9FE,#DBEAFE); color: var(--purple);
  padding: 8px 20px; border-radius: 50px; font-size: 0.82rem; font-weight: 600;
  display: inline-block; border: 1px solid rgba(124,58,237,0.15);
}
.hero-title { font-size: clamp(2rem,5vw,3.2rem); font-weight: 800; line-height: 1.15; color: #1e1b4b; margin-top: 14px; }
.hero-desc { color: #6b7280; font-size: 1rem; max-width: 500px; margin-top: 14px; }

.hero-stats { gap: 28px; }
.stat-num { font-size: 1.9rem; font-weight: 800; background: var(--grad-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { font-size: 0.75rem; color: #9ca3af; font-weight: 500; text-transform: uppercase; }
.stat-divider { width: 1px; height: 40px; background: rgba(124,58,237,0.2); align-self: center; }

/* Dashboard Preview */
.dashboard-preview { position: relative; height: 400px; }
.dp-card { position: absolute; }
.main-card { width: 100%; max-width: 420px; top: 0; right: 0; }
.mini-card { width: 155px; padding: 16px; text-align: center; }
.floating-1 { bottom: 20px; left: 0; animation: float1 4s ease-in-out infinite; }
.floating-2 { top: 40px; left: 20px; animation: float1 4s ease-in-out infinite 2s; }
@keyframes float1 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.dp-header { display: flex; align-items: center; }
.dp-dot { width: 10px; height: 10px; border-radius: 50%; margin-right: 4px; }
.dp-dot.red { background:#FF5F57; } .dp-dot.yellow { background:#FFBD2E; } .dp-dot.green { background:#28CA41; }
.dp-title { font-size: 0.78rem; font-weight: 600; color: #6b7280; margin-left: 8px; }
.dp-metrics { display: flex; gap: 16px; }
.dp-metric { text-align: center; }
.dp-val { font-size: 0.95rem; font-weight: 700; color: var(--purple); }
.dp-lbl { font-size: 0.65rem; color: #9ca3af; }
.dp-chart-wrap { background: rgba(124,58,237,0.04); border-radius: 10px; padding: 10px; }
.dp-bar-chart { display: flex; align-items: flex-end; gap: 5px; height: 65px; }
.dp-bar { flex:1; background: linear-gradient(180deg,#c4b5fd,#a78bfa); border-radius: 4px 4px 0 0; }
.dp-bar.active { background: var(--grad-main); }
.dp-win-tag { font-size: 0.78rem; color: var(--purple); font-weight: 600; text-align: center; background: rgba(124,58,237,0.06); padding: 6px 10px; border-radius: 8px; }
.dp-mini-suit { font-size: 1.8rem; font-weight: 900; background: var(--grad-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.dp-mini-suit.hearts { background: linear-gradient(135deg,#be185d,#ec4899); -webkit-background-clip: text; background-clip: text; }
.dp-mini-val { font-size: 0.9rem; font-weight: 700; color: #1e1b4b; margin-top: 4px; }
.dp-mini-lbl { font-size: 0.68rem; color: #9ca3af; }

/* ============================================
   RESULT CARDS
   ============================================ */
.result-card {
  border-radius: var(--radius-lg);
  padding: 28px 18px;
  position: relative;
  overflow: hidden;
  border-top: 4px solid transparent;
}
.game-gali   { border-top-color: #7C3AED; }
.game-disawar { border-top-color: #EC4899; }
.game-faridabad { border-top-color: #F59E0B; }
.game-ghaziabad { border-top-color: #10B981; }
.game-kalyan { border-top-color: #06B6D4; }
.game-milan  { border-top-color: #3B82F6; }
.game-milanday { border-top-color: #F59E0B; }
.game-bombay { border-top-color: #EF4444; }

.rc-game-name { font-size: 1.1rem; font-weight: 800; color: #1e1b4b; margin-bottom: 10px; }
.rc-number {
  font-size: 3.5rem; font-weight: 900; line-height: 1;
  background: var(--grad-main);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin: 8px 0;
}
.rc-time { font-size: 0.78rem; color: #9ca3af; font-weight: 500; margin-bottom: 10px; }
.rc-status { display: inline-block; padding: 4px 14px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; }

.live-badge { background: rgba(239,68,68,0.1); color: #EF4444; animation: blink 1.2s ease-in-out infinite; }
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:0.5; } }

.wait-badge { background: rgba(245,158,11,0.1); color: #F59E0B; }

/* ============================================
   FEATURES / GAMES
   ============================================ */
.feature-card { border-radius: var(--radius-xl); padding: 32px 26px; cursor: pointer; }
.feature-card h5 { font-size: 1.05rem; font-weight: 700; color: #1e1b4b; margin: 16px 0 8px; }
.feature-card p { color: #6b7280; font-size: 0.88rem; margin: 0; }

.fc-icon {
  width: 56px; height: 56px; border-radius: 15px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 900; color: #fff;
}
.fc-icon.purple { background: linear-gradient(135deg,#7C3AED,#A78BFA); }
.fc-icon.pink   { background: linear-gradient(135deg,#EC4899,#F9A8D4); }
.fc-icon.orange { background: linear-gradient(135deg,#F59E0B,#FCD34D); }
.fc-icon.green  { background: linear-gradient(135deg,#10B981,#6EE7B7); }
.fc-icon.blue   { background: linear-gradient(135deg,#3B82F6,#93C5FD); }
.fc-icon.teal   { background: linear-gradient(135deg,#06B6D4,#67E8F9); }

/* ============================================
   RECORD CHART TABLE
   ============================================ */
.record-table-card { padding: 0; overflow: hidden; border-radius: var(--radius-lg); }

.rt-header {
  background: var(--grad-main); color: #fff;
  padding: 16px 20px; font-weight: 700; font-size: 1rem;
  display: flex; align-items: center; gap: 8px;
}
.rt-suit { font-size: 1.3rem; }
.rt-suit.hearts   { color: #fecdd3; }
.rt-suit.diamonds { color: #fde68a; }
.rt-suit.clubs    { color: #a7f3d0; }

.record-table { border-collapse: collapse; background: transparent; }
.record-table thead tr { background: rgba(124,58,237,0.06); }
.record-table th { padding: 10px 16px; font-size: 0.78rem; font-weight: 700; color: #6b7280; text-transform: uppercase; letter-spacing: 0.5px; border-bottom: 1px solid rgba(124,58,237,0.08); }
.record-table td { padding: 10px 16px; font-size: 0.88rem; color: #374151; border-bottom: 1px solid rgba(124,58,237,0.05); }
.record-table tbody tr:hover { background: rgba(124,58,237,0.04); }
.record-table tbody tr:last-child td { border-bottom: none; }

.num-highlight {
  font-size: 1.2rem; font-weight: 800;
  background: var(--grad-main);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ============================================
   PLAYING CARDS
   ============================================ */
.play-card {
  border-radius: 20px; padding: 22px 18px; min-height: 280px;
  position: relative; display: flex; flex-direction: column;
  justify-content: space-between;
  transition: transform 0.4s cubic-bezier(.175,.885,.32,1.275), box-shadow 0.3s;
  cursor: pointer; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.4);
}
.play-card::before {
  content:''; position:absolute; inset:0; opacity:0.05;
  background-image: repeating-linear-gradient(45deg,currentColor 0,currentColor 1px,transparent 0,transparent 50%);
  background-size: 12px 12px;
}
.play-card:hover { transform: translateY(-12px) rotateZ(1deg); box-shadow: 0 30px 60px rgba(0,0,0,0.16); }

.play-card.spades   { background: linear-gradient(145deg,#1e1b4b,#312e81); color:#fff; }
.play-card.hearts   { background: linear-gradient(145deg,#be185d,#ec4899); color:#fff; }
.play-card.diamonds { background: linear-gradient(145deg,#92400e,#f59e0b); color:#fff; }
.play-card.clubs    { background: linear-gradient(145deg,#065f46,#10b981); color:#fff; }

.pc-suit { font-size: 2rem; font-weight: 900; opacity: 0.9; line-height: 1; }
.pc-suit.bottom-right { align-self: flex-end; transform: rotate(180deg); }
.pc-body { text-align: center; padding: 6px 0; }
.pc-game-name { font-size: 1.4rem; font-weight: 800; margin-bottom: 2px; }
.pc-time { font-size: 0.75rem; opacity: 0.8; margin-bottom: 8px; }
.pc-number-display { font-size: 2.5rem; font-weight: 900; letter-spacing: 3px; margin: 6px 0; opacity: 0.9; }
.pc-body p { font-size: 0.78rem; opacity: 0.82; line-height: 1.5; margin: 0; }

/* ============================================
   STATISTICS BAND
   ============================================ */
.stats-section { background: var(--grad-main); padding: 80px 0; }
.stat-box { padding: 20px; }
.stat-big { font-size: clamp(2.5rem,6vw,4rem); font-weight: 900; color:#fff; line-height:1; display:inline-block; }
.stat-plus { font-size: 1.6rem; font-weight: 700; color: rgba(255,255,255,0.7); display: inline; }
.stat-desc { font-size: 0.85rem; color: rgba(255,255,255,0.75); font-weight: 500; margin-top: 8px; text-transform: uppercase; letter-spacing: 0.5px; }

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-features li { padding: 9px 0; font-size: 0.93rem; font-weight: 500; color: #374151; }
.about-mini-card { padding: 22px 16px; border-radius: var(--radius-lg); cursor: pointer; }
.amc-icon { font-size: 1.6rem; font-weight: 900; margin-bottom: 8px; }
.amc-title { font-size: 0.95rem; font-weight: 700; color: #1e1b4b; }
.amc-sub { font-size: 0.75rem; color: #9ca3af; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-card { padding: 30px; border-radius: var(--radius-xl); }
.stars { color: #f59e0b; font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-card p { color: #374151; font-size: 0.92rem; line-height: 1.7; font-style: italic; }
.tc-avatar { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: 700; color: #fff; flex-shrink: 0; }
.tc-avatar.purple { background: linear-gradient(135deg,#7C3AED,#A78BFA); }
.tc-avatar.blue   { background: linear-gradient(135deg,#3B82F6,#93C5FD); }
.tc-avatar.pink   { background: linear-gradient(135deg,#EC4899,#F9A8D4); }
.tc-name { font-weight: 700; font-size: 0.9rem; color: #1e1b4b; }
.tc-role { font-size: 0.75rem; color: #9ca3af; }

/* ============================================
   FAQ
   ============================================ */
.faq-accordion .accordion-item { border: none; margin-bottom: 10px; }
.faq-accordion .accordion-button {
  font-family: var(--font); font-weight: 600; font-size: 0.93rem;
  color: #1e1b4b; background: transparent;
  border-radius: var(--radius-lg) !important;
  padding: 16px 22px; box-shadow: none;
}
.faq-accordion .accordion-button:not(.collapsed) { color: var(--purple); background: rgba(124,58,237,0.04); }
.faq-accordion .accordion-button::after { filter: hue-rotate(260deg) saturate(2); }
.faq-accordion .accordion-body { font-size: 0.88rem; color: #6b7280; padding: 0 22px 18px; line-height: 1.7; }

/* ============================================
   CONTACT
   ============================================ */
.contact-form-card { border-radius: var(--radius-xl); padding: 32px; }
.form-label { font-size: 0.83rem; font-weight: 600; color: #374151; margin-bottom: 5px; }
.form-glass {
  background: rgba(255,255,255,0.72); border: 1px solid rgba(124,58,237,0.15);
  border-radius: 12px; padding: 11px 15px; font-family: var(--font);
  font-size: 0.87rem; color: #374151; transition: border-color 0.2s, box-shadow 0.2s; width: 100%;
}
.form-glass:focus { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(124,58,237,0.1); outline: none; background: rgba(255,255,255,0.95); }

.ci-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg,rgba(124,58,237,0.12),rgba(59,130,246,0.12));
  display: flex; align-items: center; justify-content: center;
  color: var(--purple); font-size: 1.1rem; flex-shrink: 0;
}
.contact-info span { font-size: 0.88rem; color: #374151; font-weight: 500; }

.disclaimer-box {
  background: rgba(239,68,68,0.07);
  border: 1px solid rgba(239,68,68,0.15);
  border-radius: 12px; padding: 14px 16px;
}
.disclaimer-box p { font-size: 0.8rem; color: #7f1d1d; margin: 0; line-height: 1.6; }

/* ============================================
   FOOTER
   ============================================ */
.footer-section { background: #0f0c1d; padding: 80px 0 0; color: rgba(255,255,255,0.75); }
.footer-logo { font-size: 1.5rem; font-weight: 800; color: #fff; letter-spacing: -0.5px; }
.footer-logo span { background: var(--grad-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.footer-desc { font-size: 0.86rem; color: rgba(255,255,255,0.5); max-width: 280px; line-height: 1.7; }
.footer-heading { font-size: 0.82rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.86rem; transition: color 0.2s; }
.footer-links a:hover { color: #A78BFA; }
.social-btn {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 1rem; text-decoration: none;
  transition: all 0.2s; border: 1px solid rgba(255,255,255,0.08);
}
.social-btn:hover { background: var(--grad-main); color: #fff; border-color: transparent; transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-bottom: 28px; text-align: center; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); margin: 0; padding-top: 18px; }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
.glass-card, .result-card, .feature-card, .play-card, .testimonial-card { animation: fadeInUp 0.6s ease both; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
  .dashboard-preview { height: 340px; }
  .main-card { max-width: 100%; }
  .floating-1, .floating-2 { display: none; }
}
@media (max-width: 767px) {
  .section-pad { padding: 65px 0; }
  .hero-section { min-height: auto; }
  .hero-title { font-size: 1.9rem; }
  .dashboard-preview { height: auto; position: static; }
  .main-card { position: static; max-width: 100%; }
  .play-card { min-height: 240px; }
  .stat-big { font-size: 2.4rem; }
  .scb-window { width: 290px; }
}
@media (max-width: 480px) {
  .hero-stats { flex-wrap: wrap; gap: 14px; }
  .stat-divider { display: none; }
  .rc-number { font-size: 2.8rem; }
  .sticky-chatbot { bottom: 16px; right: 14px; }
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #A78BFA; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--purple); }
