// Shared content used across all 3 directions.
// IPTV reseller — generic, no real-brand names.

const PLANS = [
  { id: '1m',  label: '1 Month',   months: 1,  price: 15,  perMo: 15,   tag: 'TRY IT' },
  { id: '3m',  label: '3 Months',  months: 3,  price: 30,  perMo: 10,   tag: null },
  { id: '6m',  label: '6 Months',  months: 6,  price: 45,  perMo: 7.50, tag: 'POPULAR' },
  { id: '12m', label: '12 Months', months: 12, price: 75,  perMo: 6.25, tag: 'BEST VALUE' },
];

const CONNECTIONS = [
  { id: 1, label: '1 Device',  add: 0  },
  { id: 2, label: '2 Devices', add: 10 },
  { id: 3, label: '3 Devices', add: 18 },
  { id: 5, label: '5 Devices', add: 30 },
];

const FEATURES = [
  { icon: '◢', title: '22,000+ live channels',     body: 'Sports, movies, news, kids, international.' },
  { icon: '◇', title: '80,000+ VOD & series',      body: 'Hollywood, K-drama, anime, documentaries.' },
  { icon: '◈', title: '4K / FHD / HD streaming',   body: 'Multi-bitrate. Auto-switches on bad networks.' },
  { icon: '◉', title: 'Anti-buffer servers',       body: 'Global CDN. Less than 0.3s zap times.' },
  { icon: '◐', title: 'Works on any device',       body: 'Firestick, Android, iOS, Smart TV, MAG, Enigma2.' },
  { icon: '◆', title: '24-hour free trial',        body: 'No card required. Cancel any time.' },
];

const CATEGORIES = [
  { name: 'Sports',         count: 4200, hot: true  },
  { name: 'Movies',         count: 9800, hot: false },
  { name: 'TV Series',      count: 6500, hot: false },
  { name: 'News',           count: 1100, hot: false },
  { name: 'Kids',           count:  870, hot: false },
  { name: 'Documentaries',  count: 1450, hot: false },
  { name: 'PPV / Events',   count:  220, hot: true  },
  { name: 'International',  count: 7600, hot: false },
];

const CHANNELS = [
  { code: 'SPRT-01', name: 'Premier Sport HD',   cat: 'Sports',   live: '21:00 · Arsenal vs City' },
  { code: 'SPRT-09', name: 'NBA League Pass',    cat: 'Sports',   live: 'LIVE · Lakers vs Celtics' },
  { code: 'UFC-PPV', name: 'UFC PPV Channel',    cat: 'PPV',      live: 'Sat 22:00 · UFC 312' },
  { code: 'CINE-04', name: 'Cinema 4K One',      cat: 'Movies',   live: 'Now · Dune Part Two' },
  { code: 'KDRM-11', name: 'K-Drama Plus',       cat: 'Series',   live: 'Marathon · Goblin' },
  { code: 'NEWS-02', name: 'World 24',           cat: 'News',     live: 'LIVE · Breaking' },
  { code: 'KIDS-07', name: 'Cartoon Vault',      cat: 'Kids',     live: 'Now · Spongebob' },
  { code: 'DOC-03',  name: 'Planet Deep',        cat: 'Docs',     live: 'Now · Frozen Worlds' },
];

const COUNTRIES = ['🇺🇸 US', '🇬🇧 UK', '🇨🇦 CA', '🇩🇪 DE', '🇫🇷 FR', '🇪🇸 ES', '🇮🇹 IT', '🇧🇷 BR', '🇲🇽 MX', '🇮🇳 IN', '🇸🇦 SA', '🇹🇷 TR', '🇯🇵 JP', '🇰🇷 KR', '🇨🇳 CN', '🇳🇱 NL'];

const FAQ = [
  { q: 'How fast do I get my line after paying?',
    b: 'Activation is automated. Your M3U link, Xtream credentials, and setup guide arrive by email within 60 seconds of payment confirmation.' },
  { q: 'Which payment methods do you accept?',
    b: 'Card (Visa / Mastercard / Amex), PayPal, USDT (TRC20 / ERC20), Bitcoin, and Apple Pay. Crypto orders get a 10% discount.' },
  { q: 'Will it work on my Firestick / Smart TV / iPhone?',
    b: 'Yes. We push a setup wizard with one-tap install for IPTV Smarters, TiviMate, GSE, Sparkle TV, and 12 other players.' },
  { q: 'What if a channel goes down?',
    b: 'Our backup ring routes traffic across 4 geo-redundant CDN zones. Average channel uptime last quarter: 99.93%.' },
];

window.IPTV_DATA = { PLANS, CONNECTIONS, FEATURES, CATEGORIES, CHANNELS, COUNTRIES, FAQ };
