/* =====================================================
   HiTV App - Main Stylesheet
   Arabic RTL - Brand Identity
   ===================================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=El+Messiri:wght@400;500;600;700&family=Tajawal:wght@300;400;500;700;800;900&display=swap');

/* =====================================================
   CSS Variables
   ===================================================== */
:root {
  --bg: #07070F;
  --surface: #0D0D1E;
  --card: #12122A;
  --pink: #FF4E8C;
  --violet: #C44BFF;
  --pink-dim: rgba(255, 78, 140, 0.15);
  --violet-dim: rgba(196, 75, 255, 0.15);
  --white: #FFFFFF;
  --text: #E8E8F0;
  --text-muted: #8888AA;
  --text-dim: #555570;
  --border: rgba(255, 255, 255, 0.07);
  --border-pink: rgba(255, 78, 140, 0.3);
  --gradient: linear-gradient(135deg, var(--pink), var(--violet));
  --gradient-soft: linear-gradient(135deg, rgba(255,78,140,0.8), rgba(196,75,255,0.8));
  --font-display: 'El Messiri', 'Tajawal', sans-serif;
  --font-body: 'Tajawal', sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-pink: 0 0 40px rgba(255, 78, 140, 0.25);
  --shadow-violet: 0 0 40px rgba(196, 75, 255, 0.25);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --nav-height: 72px;
  --container: 1200px;
}

/* =====================================================
   Reset & Base
   ===================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  cursor: none;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  direction: rtl;
  text-align: right;
  line-height: 1.75;
  font-size: 16px;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* حماية خط Font Awesome من أي override */
i, .fa, .fas, .far, .fab, .fal, .fat, .fad,
[class*=" fa-"], [class^="fa-"] {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "Font Awesome 6 Pro" !important;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

button {
  cursor: none;
  font-family: var(--font-body);
  border: none;
  background: none;
  outline: none;
}

input, textarea, select {
  font-family: var(--font-body);
  outline: none;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.3;
}

/* =====================================================
   Custom Cursor
   ===================================================== */
#cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--pink);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.2s, height 0.2s;
}

#cursor-ring {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 2px solid rgba(255, 78, 140, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, width 0.2s, height 0.2s, border-color 0.2s;
}

body:has(a:hover) #cursor-ring,
body:has(button:hover) #cursor-ring {
  width: 44px;
  height: 44px;
  border-color: var(--pink);
}

/* =====================================================
   Layout Utilities
   ===================================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
  position: relative;
}

.section-sm {
  padding: 60px 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.8;
}

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

.text-center .section-sub {
  margin: 0 auto;
}

.text-center .section-label {
  justify-content: center;
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

/* =====================================================
   Ambient Glows
   ===================================================== */
.glow-pink {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,78,140,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.glow-violet {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(196,75,255,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* =====================================================
   Navigation
   ===================================================== */
.nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background 0.4s, box-shadow 0.4s;
}

/* خط gradient في الأسفل دائماً */
.nav::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,78,140,0.35) 30%,
    rgba(196,75,255,0.35) 70%,
    transparent 100%);
}

.nav.scrolled {
  background: rgba(7, 7, 15, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  gap: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  box-shadow: 0 0 14px rgba(255,78,140,0.35);
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 7px 13px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
  transition: left 0.25s, right 0.25s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  left: 13px;
  right: 13px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.nav-links a.active {
  color: var(--pink);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: none;
  z-index: 1001;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}

.hamburger:hover {
  background: rgba(255,78,140,0.1);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, background 0.3s;
}

.hamburger.active span {
  background: var(--pink);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(7, 7, 15, 0.98);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

/* نقطة زخرفية في mobile menu */
.mobile-menu::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,78,140,0.12) 0%, transparent 70%);
  border-radius: 50%;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 11px 40px;
  border-radius: var(--radius-md);
  transition: color 0.2s, background 0.2s, transform 0.2s;
  width: 80%;
  max-width: 280px;
  text-align: center;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--white);
  background: var(--pink-dim);
  transform: scale(1.03);
}

/* زر تحميل داخل mobile-menu */
.mobile-menu .mobile-download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  background: var(--gradient);
  color: var(--white) !important;
  font-size: 16px !important;
  padding: 14px 40px !important;
  border-radius: var(--radius-md);
  font-weight: 700 !important;
  width: 80%;
  max-width: 280px;
  box-shadow: 0 4px 24px rgba(255,78,140,0.3);
  transition: opacity 0.2s, transform 0.2s !important;
}

.mobile-menu .mobile-download-btn:hover {
  opacity: 0.9;
  transform: scale(1.03) !important;
  background: var(--pink-dim) !important;
}

/* =====================================================
   Buttons
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  cursor: none;
  transition: all 0.25s;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.2s;
}

.btn:hover::before {
  background: rgba(255,255,255,0.08);
}

.btn-primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 4px 24px rgba(255, 78, 140, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 78, 140, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--pink);
  color: var(--white);
}

.btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
}

.btn-sm {
  font-size: 13px;
  padding: 9px 18px;
}

.btn-lg {
  font-size: 17px;
  padding: 18px 36px;
}

.btn-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  font-size: 18px;
}

/* Store button */
.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  cursor: none;
  transition: all 0.25s;
  min-width: 160px;
}

.btn-store:hover {
  border-color: var(--pink);
  background: rgba(255, 78, 140, 0.08);
  transform: translateY(-2px);
}

.btn-store-icon {
  font-size: 28px;
  line-height: 1;
}

.btn-store-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: right;
}

.btn-store-sub {
  font-size: 11px;
  color: var(--text-muted);
}

.btn-store-name {
  font-size: 15px;
  font-weight: 700;
}

/* =====================================================
   Cards
   ===================================================== */
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  border-color: rgba(255, 78, 140, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.feature-card:hover::before {
  opacity: 0.04;
}

.feature-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,78,140,0.12), rgba(196,75,255,0.12));
  border: 1px solid rgba(255,78,140,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 20px;
  color: var(--pink);
  transition: all 0.3s;
}

.feature-card:hover .feature-card-icon {
  background: linear-gradient(135deg, rgba(255,78,140,0.22), rgba(196,75,255,0.22));
  border-color: rgba(255,78,140,0.4);
  color: var(--white);
  box-shadow: 0 0 20px rgba(255,78,140,0.2);
}

.feature-card-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.feature-card-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Download Card */
.download-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.download-card:hover {
  border-color: var(--border-pink);
  transform: translateY(-4px);
  box-shadow: var(--shadow-pink);
}

.download-card.featured {
  border-color: var(--border-pink);
  background: linear-gradient(135deg, rgba(255,78,140,0.06), rgba(196,75,255,0.06));
}

.download-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gradient);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}

.download-card-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(255,78,140,0.12), rgba(196,75,255,0.12));
  border: 1px solid rgba(255,78,140,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--pink);
  transition: all 0.3s;
  margin-bottom: 4px;
}

.download-card.featured .download-card-icon {
  background: var(--gradient);
  border-color: transparent;
  color: var(--white);
}

.download-card:hover .download-card-icon {
  transform: scale(1.05);
}

.download-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}

.download-card-sub {
  font-size: 14px;
  color: var(--text-muted);
}

/* Show Card */
.show-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.show-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.show-card-img {
  width: 100%;
  aspect-ratio: 2/3;
  background: linear-gradient(135deg, var(--surface), var(--card));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.show-card-body {
  padding: 12px;
}

.show-card-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.show-card-meta {
  font-size: 12px;
  color: var(--text-muted);
}

/* Blog Card */
.blog-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
}

.blog-card:hover {
  border-color: var(--border-pink);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.blog-card-img {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--surface), rgba(196,75,255,0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  position: relative;
}

.blog-card-body {
  padding: 20px;
}

.blog-card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--pink);
  background: var(--pink-dim);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.blog-card-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.4;
}

.blog-card-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--text-dim);
}

/* =====================================================
   Hero Section
   ===================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
}

.hero-bg {
  display: none;
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
}

.hero-inner > * {
  min-width: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 78, 140, 0.1);
  border: 1px solid rgba(255, 78, 140, 0.25);
  color: var(--pink);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero-badge::before {
  content: '✦';
  font-size: 10px;
}

.hero-title {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 20px;
}

.hero-title span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.hero-stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.hero-phone {
  max-height: 580px;
  max-width: 100%;
  width: 100%;
  min-width: 0;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: none;
  animation: float 6s ease-in-out infinite;
  position: relative;
  z-index: 1;
  display: block;
}

.hero-glow {
  display: none;
  position: absolute;
  width: min(400px, 80vw);
  height: min(400px, 80vw);
  background: radial-gradient(circle, rgba(255,78,140,0.2) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: transform 0.1s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* =====================================================
   Marquee
   ===================================================== */
.marquee-section {
  overflow: hidden;
  padding: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(90deg, rgba(255,78,140,0.03), rgba(196,75,255,0.03));
  position: relative;
}

/* Edge gradient fades */
.marquee-section::before,
.marquee-section::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee-section::before {
  right: 0;
  background: linear-gradient(to left, var(--bg) 15%, transparent);
}
.marquee-section::after {
  left: 0;
  background: linear-gradient(to right, var(--bg) 15%, transparent);
}

/* Pause on hover */
.marquee-section:hover .marquee-inner {
  animation-play-state: paused;
}

/* الـ inner يحمل نسختين جنباً لجنب — يتحرك بعرض نسخة واحدة بالضبط */
.marquee-inner {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: marquee 30s linear infinite;
}

.marquee-track {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 14px 0;
  /* لا gap بين النهاية والبداية */
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 0 20px;
  white-space: nowrap;
  position: relative;
}

/* نقطة فاصلة بدل الخط — تختفي عند نهاية كل track */
.marquee-item::after {
  content: '·';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--border);
  font-size: 18px;
  line-height: 1;
}

/* Highlighted items — pill style */
.marquee-highlight {
  color: var(--pink);
  background: rgba(255, 78, 140, 0.09);
  border: 1px solid rgba(255, 78, 140, 0.22);
  border-radius: 20px;
  padding: 4px 14px;
  margin: 0 4px;
  font-size: 12px;
}

.marquee-highlight::after {
  display: none;
}

/* الحركة = عرض نسخة واحدة بالضبط (50% من اثنتين) */
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =====================================================
   Invitation / Code Box
   ===================================================== */
.code-box {
  background: var(--card);
  border: 1px solid var(--border-pink);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.code-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,78,140,0.05), rgba(196,75,255,0.05));
}

.code-box-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.code-box-value {
  font-family: 'Courier New', monospace;
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.1em;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.code-box-large {
  padding: 32px 40px;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 20px;
  box-shadow: 0 0 60px rgba(255, 78, 140, 0.2);
}

.code-box-large .code-box-value {
  font-size: clamp(20px, 4.5vw, 52px);
  word-break: break-all;
  line-height: 1.3;
}

.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  cursor: none;
  transition: all 0.25s;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}

.copy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(255, 78, 140, 0.4);
}

.copy-btn.copied {
  background: linear-gradient(135deg, #2ecc71, #27ae60);
}

/* =====================================================
   Steps
   ===================================================== */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-number {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

.step-content {
  flex: 1;
  padding-top: 8px;
}

.step-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.step-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =====================================================
   FAQ Accordion
   ===================================================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.25s;
}

.faq-item.open {
  border-color: var(--border-pink);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: none;
  gap: 16px;
  width: 100%;
  text-align: right;
}

.faq-question-text {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-muted);
  transition: transform 0.3s, background 0.3s, color 0.3s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--gradient);
  border-color: transparent;
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  border-top: 1px solid var(--border);
}

/* =====================================================
   Breadcrumb
   ===================================================== */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 32px;
}

.breadcrumb a {
  color: var(--text-muted);
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--pink);
}

.breadcrumb-sep {
  color: var(--text-dim);
  font-size: 10px;
}

.breadcrumb span:last-child {
  color: var(--pink);
}

/* =====================================================
   Note / Alert Boxes
   ===================================================== */
.note-box,
.warning-box,
.tip-box {
  border-radius: var(--radius-md);
  padding: 18px 20px;
  font-size: 14px;
  line-height: 1.7;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin: 20px 0;
}

.note-box {
  background: rgba(196, 75, 255, 0.08);
  border: 1px solid rgba(196, 75, 255, 0.25);
  color: var(--text);
}

.warning-box {
  background: rgba(255, 180, 0, 0.07);
  border: 1px solid rgba(255, 180, 0, 0.25);
  color: var(--text);
}

.tip-box {
  background: rgba(46, 213, 115, 0.07);
  border: 1px solid rgba(46, 213, 115, 0.25);
  color: var(--text);
}

.note-box-icon,
.warning-box-icon,
.tip-box-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* =====================================================
   Badges / Tags
   ===================================================== */
.badge {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}

.badge-pink {
  background: var(--pink-dim);
  color: var(--pink);
}

.badge-violet {
  background: var(--violet-dim);
  color: var(--violet);
}

.badge-green {
  background: rgba(46, 213, 115, 0.1);
  color: #2ed573;
}

/* =====================================================
   Scroll Reveal
   ===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* =====================================================
   Footer
   ===================================================== */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-brand img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  transition: all 0.2s;
}

.footer-social:hover {
  background: var(--pink-dim);
  border-color: var(--border-pink);
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

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

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copyright {
  font-size: 13px;
  color: var(--text-dim);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 13px;
  color: var(--text-dim);
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--pink);
}

/* =====================================================
   Page Hero (inner pages)
   ===================================================== */
.page-hero {
  padding: calc(var(--nav-height) + 60px) 0 60px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,78,140,0.05) 0%, transparent 100%);
  border-bottom: 1px solid var(--border);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
}

.page-hero-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.8;
}

/* =====================================================
   Table of Contents
   ===================================================== */
.toc {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin: 32px 0;
}

.toc-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.toc-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  counter-reset: toc;
}

.toc-list li {
  counter-increment: toc;
}

.toc-list a {
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.2s;
}

.toc-list a::before {
  content: counter(toc) '.';
  color: var(--pink);
  font-weight: 700;
  font-size: 13px;
  min-width: 20px;
}

.toc-list a:hover {
  color: var(--pink);
}

/* =====================================================
   Article Content
   ===================================================== */
.article-content {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-muted);
}

.article-content h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--white);
  margin: 48px 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.article-content h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin: 32px 0 14px;
}

.article-content p {
  margin-bottom: 18px;
}

.article-content ul,
.article-content ol {
  margin: 16px 0;
  padding-right: 24px;
}

.article-content ul {
  list-style: disc;
}

.article-content ol {
  list-style: decimal;
}

.article-content li {
  margin-bottom: 8px;
}

.article-content strong {
  color: var(--white);
  font-weight: 600;
}

/* =====================================================
   Related Articles
   ===================================================== */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.related-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: all 0.3s;
}

.related-card:hover {
  border-color: var(--border-pink);
  transform: translateY(-2px);
}

.related-card-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.4;
}

.related-card-sub {
  font-size: 13px;
  color: var(--text-muted);
}

/* =====================================================
   Device Support
   ===================================================== */
.device-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.device-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s;
}

.device-card:hover {
  border-color: var(--border-pink);
  transform: translateY(-4px);
}

.device-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,78,140,0.1), rgba(196,75,255,0.1));
  border: 1px solid rgba(255,78,140,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 26px;
  color: var(--pink);
  transition: all 0.3s;
}

.device-card:hover .device-icon {
  background: var(--gradient);
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(255,78,140,0.35);
}

.device-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.device-sub {
  font-size: 13px;
  color: var(--text-muted);
}

/* =====================================================
   CTA Section
   ===================================================== */
.cta-section {
  background: linear-gradient(135deg, rgba(255,78,140,0.1), rgba(196,75,255,0.1));
  border: 1px solid rgba(255, 78, 140, 0.2);
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0.03;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-sub {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* =====================================================
   Problem Cards (TV Fix / Troubleshoot)
   ===================================================== */
.problem-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.25s;
}

.problem-card.open {
  border-color: rgba(255, 78, 140, 0.3);
}

.problem-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  cursor: none;
}

.problem-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.problem-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  flex: 1;
}

.problem-arrow {
  color: var(--text-muted);
  transition: transform 0.3s;
  font-size: 20px;
}

.problem-card.open .problem-arrow {
  transform: rotate(180deg);
}

.problem-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.problem-body-inner {
  padding: 0 24px 24px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* =====================================================
   App Info Box
   ===================================================== */
.app-info-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
}

.app-info-item {}

.app-info-label {
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.app-info-value {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
}

/* =====================================================
   Comparison Table
   ===================================================== */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}

.compare-table th {
  background: var(--card);
  padding: 16px 20px;
  text-align: right;
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--white);
  border: 1px solid var(--border);
}

.compare-table td {
  padding: 14px 20px;
  font-size: 14px;
  color: var(--text-muted);
  border: 1px solid var(--border);
  line-height: 1.6;
}

.compare-table tr:nth-child(even) td {
  background: rgba(255,255,255,0.02);
}

.compare-table .check { color: #2ed573; }
.compare-table .cross { color: #ff4757; }

/* =====================================================
   Contact Form
   ===================================================== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

.form-input,
.form-textarea,
.form-select {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 15px;
  color: var(--white);
  direction: rtl;
  transition: border-color 0.25s;
  width: 100%;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--pink);
  background: rgba(255, 78, 140, 0.05);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-dim);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* =====================================================
   Legal Pages
   ===================================================== */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 40px 0 80px;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin: 36px 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.legal-content h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin: 24px 0 10px;
}

.legal-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 16px;
}

.legal-content ul {
  list-style: disc;
  padding-right: 24px;
  margin: 12px 0;
}

.legal-content li {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.legal-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-dim);
  background: var(--card);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 32px;
}

/* =====================================================
   Dividers
   ===================================================== */
.divider {
  height: 1px;
  background: var(--border);
  margin: 40px 0;
}

/* =====================================================
   Layout: Responsive Content Grids
   ===================================================== */
.layout-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.layout-two-col-sm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.layout-faq-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

.layout-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* =====================================================
   Responsive Breakpoints
   ===================================================== */
@media (max-width: 1024px) {
  .layout-two-col,
  .layout-two-col-sm {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .layout-faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--nav-height) + 40px);
    padding-bottom: 60px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 36px;
    overflow: hidden;
    width: 100%;
  }

  .hero-buttons,
  .hero-stats {
    justify-content: center;
  }

  .hero-image {
    order: -1;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .hero-phone {
    max-height: 380px;
    max-width: 100%;
    width: 100%;
    min-width: 0;
  }

  .nav-en-btn {
    display: none !important;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .device-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  :root {
    --nav-height: 64px;
  }

  .section {
    padding: 64px 0;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .device-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero {
    padding-top: calc(var(--nav-height) + 24px);
    padding-bottom: 48px;
  }

  .hero-inner {
    gap: 24px;
    width: 100%;
    overflow: hidden;
  }

  .hero-phone {
    max-height: 240px;
    max-width: 90vw;
    width: 90vw;
    margin: 0 auto;
  }

  .hero-image {
    width: 100%;
    max-width: 100%;
    padding: 0;
    overflow: hidden;
  }

  .cta-section {
    padding: 40px 24px;
  }

  .code-box {
    flex-direction: column;
    text-align: center;
  }

  .code-box-large {
    padding: 20px 16px;
    gap: 14px;
  }

  .code-box-large .code-box-value {
    font-size: 18px;
    letter-spacing: 0.05em;
    word-break: break-all;
  }

  .copy-btn {
    width: 100%;
    justify-content: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .app-info-box {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 24px;
  }

  /* قسم كود الدعوة على الموبايل */
  #invite .section-title {
    font-size: 22px;
    line-height: 1.4;
  }

  .hero-title {
    font-size: 30px;
  }

  .step-item {
    gap: 14px;
  }

  .layout-two-col,
  .layout-two-col-sm,
  .layout-faq-grid {
    gap: 32px;
  }

  .hero-desc {
    max-width: 100%;
  }

  .page-hero-sub {
    max-width: 100%;
  }
}

/* =====================================================
   Touch / Mobile: Restore System Cursor
   ===================================================== */
@media (hover: none) and (pointer: coarse) {
  html, body { cursor: auto; }
  #cursor-dot, #cursor-ring { display: none; }
  .btn, .copy-btn, .hamburger, button,
  .faq-question, .problem-card-header { cursor: pointer; }
}

@media (max-width: 640px) {
  html, body { cursor: auto; }
  #cursor-dot, #cursor-ring { display: none; }
  .btn, .copy-btn, .hamburger, button,
  .faq-question, .problem-card-header { cursor: pointer; }
}
