// ─── Static Data File ─────────────────────────────────────────────────────────
// All data arrays are pure TypeScript — no API calls, no side-effects.
// Components import directly from this file.

// ── Types ──────────────────────────────────────────────────────────────────────

export interface StaticCategory {
  id: number;
  name: string;
}

export interface StaticVideo {
  id: string;
  title: string;
  channelName: string;
  channelAvatar: string;
  thumbnail: string;
  duration: string;
  views: string;
  category: string;
  description: string;
  isPremium?: boolean;
}

export interface StaticMusicTrack {
  id: string;
  title: string;
  artist: string;
  album: string;
  albumArt: string;
  duration: string;
  plays: string;
  genre: string;
}

export interface StaticPodcast {
  id: string;
  title: string;
  host: string;
  channel: string;
  artwork: string;
  duration: string;
  episodeNumber: number;
  description: string;
  isNew: boolean;
}

export interface StaticRadioStation {
  id: string;
  name: string;
  genre: string;
  logo: string;
  gradientFrom: string;
  gradientTo: string;
  borderColor: string;
  listeners: string;
  isLive: boolean;
}

export interface StaticReel {
  id: string;
  caption: string;
  thumbnail: string;
  likes: string;
  hue: number;
  creator: string;
}

export interface StaticRentItem {
  id: string;
  title: string;
  thumbnail: string;
  price: number;
  rating: number;
  genre: string;
  duration: string;
  year: number;
  description: string;
}

export interface StaticFeedPost {
  id: string;
  channelName: string;
  channelAvatar: string;
  timeAgo: string;
  content: string;
  image?: string;
  likes: number;
  comments: number;
  isVerified: boolean;
}

export interface StaticHomeSection {
  id: string;
  title: string;
  items: StaticVideo[];
}

// ── STATIC_CATEGORIES ─────────────────────────────────────────────────────────

export const STATIC_CATEGORIES: StaticCategory[] = [
  { id: 1, name: "All" },
  { id: 2, name: "Trailers" },
  { id: 3, name: "Comedy" },
  { id: 4, name: "Social" },
  { id: 5, name: "Music" },
  { id: 6, name: "Romance" },
  { id: 7, name: "Workout" },
  { id: 8, name: "Entertainment" },
];

// ── STATIC_VIDEOS ─────────────────────────────────────────────────────────────

export const STATIC_VIDEOS: StaticVideo[] = [
  {
    id: "v1",
    title: "Jawan Official Trailer | Shah Rukh Khan | Atlee | Deepika Padukone",
    channelName: "Red Chillies Entertainment",
    channelAvatar: "https://picsum.photos/seed/redchillies/40/40",
    thumbnail: "https://picsum.photos/seed/jawan-trailer/480/270",
    duration: "2:45",
    views: "142M views",
    category: "Trailers",
    description:
      "The official trailer of Jawan, starring Shah Rukh Khan in a double role. Directed by Atlee. A heartwarming action film about a father and son.",
    isPremium: false,
  },
  {
    id: "v2",
    title: "Pathaan Full Movie | Shah Rukh Khan | Deepika Padukone | John Abraham",
    channelName: "YRF Films",
    channelAvatar: "https://picsum.photos/seed/yrf/40/40",
    thumbnail: "https://picsum.photos/seed/pathaan/480/270",
    duration: "2:26:10",
    views: "88M views",
    category: "Entertainment",
    description:
      "Pathaan is the comeback of Shah Rukh Khan in a spectacular action thriller. He plays a RAW agent trying to stop a deadly terrorist attack.",
    isPremium: true,
  },
  {
    id: "v3",
    title: "Khatron Ke Khiladi Season 14 | Highlights | Colors TV",
    channelName: "Colors TV Official",
    channelAvatar: "https://picsum.photos/seed/colorstv/40/40",
    thumbnail: "https://picsum.photos/seed/khatron14/480/270",
    duration: "42:17",
    views: "12M views",
    category: "Entertainment",
    description:
      "Rohit Shetty returns as the host of the daring reality show Khatron Ke Khiladi. Watch the best stunts from Season 14.",
    isPremium: false,
  },
  {
    id: "v4",
    title: "Kapil Sharma Show | Best Comedy Moments | Netflix India",
    channelName: "Netflix India",
    channelAvatar: "https://picsum.photos/seed/netflixin/40/40",
    thumbnail: "https://picsum.photos/seed/kapilshow/480/270",
    duration: "18:44",
    views: "34M views",
    category: "Comedy",
    description:
      "Laugh out loud with the funniest moments from The Kapil Sharma Show. A compilation of the best celebrity interactions.",
    isPremium: false,
  },
  {
    id: "v5",
    title: "Arijit Singh Live Concert 2024 | Mumbai Night | Full Performance",
    channelName: "Arijit Singh Official",
    channelAvatar: "https://picsum.photos/seed/arijit/40/40",
    thumbnail: "https://picsum.photos/seed/arijitlive/480/270",
    duration: "1:52:30",
    views: "67M views",
    category: "Music",
    description:
      "Experience the magic of Arijit Singh live in Mumbai. Full concert recording including all his biggest hits.",
    isPremium: true,
  },
  {
    id: "v6",
    title: "Rocky Aur Rani Kii Prem Kahaani | Full Film | Ranveer | Alia",
    channelName: "Dharma Productions",
    channelAvatar: "https://picsum.photos/seed/dharma/40/40",
    thumbnail: "https://picsum.photos/seed/rockyrani/480/270",
    duration: "2:49:00",
    views: "55M views",
    category: "Romance",
    description:
      "A Karan Johar film about a wild Punjabi boy and a refined Bengali girl navigating their differences and falling in love.",
    isPremium: false,
  },
  {
    id: "v7",
    title: "Guru Randhawa New Song 2024 | Ban Ja Rani | Official Video",
    channelName: "T-Series",
    channelAvatar: "https://picsum.photos/seed/tseries/40/40",
    thumbnail: "https://picsum.photos/seed/gurrandhawa/480/270",
    duration: "3:52",
    views: "28M views",
    category: "Music",
    description:
      "Guru Randhawa's latest Punjabi hit. Featuring his signature upbeat style with vibrant music.",
    isPremium: false,
  },
  {
    id: "v8",
    title: "Yoga with Baba Ramdev | Morning Routine | 30 Min Full Body",
    channelName: "Patanjali Yoga",
    channelAvatar: "https://picsum.photos/seed/ramdev/40/40",
    thumbnail: "https://picsum.photos/seed/yogaramdev/480/270",
    duration: "31:05",
    views: "19M views",
    category: "Workout",
    description:
      "A complete 30-minute morning yoga routine by Baba Ramdev. Perfect for flexibility, strength, and inner peace.",
    isPremium: false,
  },
  {
    id: "v9",
    title: "Animal Official Trailer | Ranbir Kapoor | Rashmika | Bobby Deol",
    channelName: "T-Series Films",
    channelAvatar: "https://picsum.photos/seed/tseriesfilms/40/40",
    thumbnail: "https://picsum.photos/seed/animalfilm/480/270",
    duration: "3:12",
    views: "175M views",
    category: "Trailers",
    description:
      "The explosive official trailer of Animal featuring Ranbir Kapoor in his most intense role yet, directed by Sandeep Reddy Vanga.",
    isPremium: false,
  },
  {
    id: "v10",
    title: "Bigg Boss 17 Grand Finale | Salman Khan | Full Episode",
    channelName: "Colors TV Official",
    channelAvatar: "https://picsum.photos/seed/colorstv2/40/40",
    thumbnail: "https://picsum.photos/seed/biggboss17/480/270",
    duration: "3:14:22",
    views: "40M views",
    category: "Social",
    description:
      "The grand finale of Bigg Boss 17 hosted by Salman Khan. Who wins? Watch the full finale episode!",
    isPremium: false,
  },
  {
    id: "v11",
    title: "Deva Official Trailer | Shahid Kapoor | Pooja Hegde | Action Thriller",
    channelName: "Zee Studios",
    channelAvatar: "https://picsum.photos/seed/zeestudios/40/40",
    thumbnail: "https://picsum.photos/seed/devafilm/480/270",
    duration: "2:30",
    views: "62M views",
    category: "Trailers",
    description:
      "Shahid Kapoor is back with a bang in Deva, a gritty action thriller directed by Rosshan Andrrews.",
    isPremium: false,
  },
  {
    id: "v12",
    title: "Shreya Ghoshal | Best Songs Collection | Bollywood Romantic Hits",
    channelName: "Saregama Music",
    channelAvatar: "https://picsum.photos/seed/saregama/40/40",
    thumbnail: "https://picsum.photos/seed/shreyaghoshal/480/270",
    duration: "1:22:15",
    views: "85M views",
    category: "Music",
    description:
      "The ultimate Shreya Ghoshal collection featuring all her iconic Bollywood romantic songs.",
    isPremium: false,
  },
  {
    id: "v13",
    title: "Zakir Khan Stand-Up Comedy | Sakht Launda Returns | Full Special",
    channelName: "Amazon Prime Video IN",
    channelAvatar: "https://picsum.photos/seed/amazon/40/40",
    thumbnail: "https://picsum.photos/seed/zakircomedy/480/270",
    duration: "58:20",
    views: "22M views",
    category: "Comedy",
    description:
      "Zakir Khan is back with his most hilarious set yet. Sakht Launda Returns on Amazon Prime.",
    isPremium: true,
  },
  {
    id: "v14",
    title: "Prem Ratan Dhan Payo | Full Film | Salman Khan | Sonam Kapoor",
    channelName: "Rajshri Films",
    channelAvatar: "https://picsum.photos/seed/rajshri/40/40",
    thumbnail: "https://picsum.photos/seed/premratan/480/270",
    duration: "2:40:15",
    views: "48M views",
    category: "Romance",
    description:
      "A royal love story starring Salman Khan as a look-alike of a troubled prince who falls in love.",
    isPremium: false,
  },
  {
    id: "v15",
    title: "Ranveer Singh HIIT Workout | Gym Routine | Celebrity Fitness 2024",
    channelName: "GQ India",
    channelAvatar: "https://picsum.photos/seed/gqindia/40/40",
    thumbnail: "https://picsum.photos/seed/ranveerfit/480/270",
    duration: "24:50",
    views: "8.5M views",
    category: "Workout",
    description:
      "Get inside Ranveer Singh's intense gym routine. Full HIIT workout session exclusive to GQ India.",
    isPremium: false,
  },
  {
    id: "v16",
    title: "India vs Pakistan T20 World Cup 2024 | Full Highlights | ICC",
    channelName: "ICC Official",
    channelAvatar: "https://picsum.photos/seed/icc/40/40",
    thumbnail: "https://picsum.photos/seed/indiapak/480/270",
    duration: "28:14",
    views: "310M views",
    category: "Entertainment",
    description:
      "Full match highlights from the India vs Pakistan T20 World Cup 2024 clash. A nail-biting finish!",
    isPremium: false,
  },
];

// ── STATIC_MUSIC ──────────────────────────────────────────────────────────────

export const STATIC_MUSIC: StaticMusicTrack[] = [
  {
    id: "m1",
    title: "Tum Hi Ho",
    artist: "Arijit Singh",
    album: "Aashiqui 2",
    albumArt: "https://picsum.photos/seed/tumhiho/120/120",
    duration: "4:22",
    plays: "2.1B",
    genre: "Romantic",
  },
  {
    id: "m2",
    title: "Kesariya",
    artist: "Arijit Singh",
    album: "Brahmastra",
    albumArt: "https://picsum.photos/seed/kesariya/120/120",
    duration: "5:00",
    plays: "1.4B",
    genre: "Bollywood",
  },
  {
    id: "m3",
    title: "Raataan Lambiyan",
    artist: "Jubin Nautiyal, Asees Kaur",
    album: "Shershaah",
    albumArt: "https://picsum.photos/seed/raataan/120/120",
    duration: "4:07",
    plays: "980M",
    genre: "Romantic",
  },
  {
    id: "m4",
    title: "Dil Diyan Gallan",
    artist: "Atif Aslam",
    album: "Tiger Zinda Hai",
    albumArt: "https://picsum.photos/seed/dildiyan/120/120",
    duration: "4:30",
    plays: "845M",
    genre: "Bollywood",
  },
  {
    id: "m5",
    title: "Believer (Remix)",
    artist: "Badshah ft. Imagine Dragons",
    album: "Beats of India",
    albumArt: "https://picsum.photos/seed/believer/120/120",
    duration: "3:24",
    plays: "620M",
    genre: "Hip-Hop",
  },
  {
    id: "m6",
    title: "Butta Bomma",
    artist: "Armaan Malik",
    album: "Ala Vaikunthapurramuloo",
    albumArt: "https://picsum.photos/seed/buttabomma/120/120",
    duration: "4:52",
    plays: "560M",
    genre: "Telugu",
  },
  {
    id: "m7",
    title: "Tere Naal Nachna",
    artist: "Nawazuddin Siddiqui, Sunanda S.",
    album: "Motichoor Chaknachoor",
    albumArt: "https://picsum.photos/seed/terenaal/120/120",
    duration: "3:55",
    plays: "340M",
    genre: "Dance",
  },
  {
    id: "m8",
    title: "Pasoori",
    artist: "Ali Sethi, Shae Gill",
    album: "Coke Studio Season 14",
    albumArt: "https://picsum.photos/seed/pasoori/120/120",
    duration: "6:09",
    plays: "1.2B",
    genre: "Indie",
  },
  {
    id: "m9",
    title: "Photograph",
    artist: "Ed Sheeran, Lata Mangeshkar Tribute",
    album: "Crossover Hits",
    albumArt: "https://picsum.photos/seed/photograph/120/120",
    duration: "4:18",
    plays: "290M",
    genre: "Pop",
  },
  {
    id: "m10",
    title: "Lutt Putt Gaya",
    artist: "Arijit Singh",
    album: "Dunki",
    albumArt: "https://picsum.photos/seed/luttputt/120/120",
    duration: "4:45",
    plays: "430M",
    genre: "Bollywood",
  },
  {
    id: "m11",
    title: "Ve Kamleya",
    artist: "Arijit Singh, Shreya Ghoshal",
    album: "Rocky Aur Rani",
    albumArt: "https://picsum.photos/seed/vekamleya/120/120",
    duration: "5:12",
    plays: "380M",
    genre: "Romantic",
  },
  {
    id: "m12",
    title: "Arjan Vailly",
    artist: "Bhupinder Babbal",
    album: "Animal OST",
    albumArt: "https://picsum.photos/seed/arjanvailly/120/120",
    duration: "3:38",
    plays: "920M",
    genre: "Punjabi",
  },
];

// ── STATIC_PODCASTS ───────────────────────────────────────────────────────────

export const STATIC_PODCASTS: StaticPodcast[] = [
  {
    id: "p1",
    title: "The India Startup Story: From Zero to IPO",
    host: "Nikhil Kamath",
    channel: "WTF is with Nikhil Kamath",
    artwork: "https://picsum.photos/seed/nikhilkamath/300/300",
    duration: "1:22:14",
    episodeNumber: 142,
    description: "Nikhil sits down with startup founders who built unicorns from scratch.",
    isNew: true,
  },
  {
    id: "p2",
    title: "Bollywood's Untold Stories | Karan Johar Reveals All",
    host: "Karan Johar",
    channel: "Koffee with Karan Podcast",
    artwork: "https://picsum.photos/seed/koffee/300/300",
    duration: "58:30",
    episodeNumber: 88,
    description: "Behind the scenes drama, film flops, and lessons from Bollywood's biggest director.",
    isNew: true,
  },
  {
    id: "p3",
    title: "Fit India: Nutrition Myths Debunked",
    host: "Luke Coutinho",
    channel: "Fit India Movement",
    artwork: "https://picsum.photos/seed/fitindia/300/300",
    duration: "44:10",
    episodeNumber: 56,
    description: "India's leading integrative nutritionist busts common diet myths.",
    isNew: true,
  },
  {
    id: "p4",
    title: "The Stock Market Blueprint | Zerodha Founders Special",
    host: "Nithin Kamath",
    channel: "Zerodha Talks",
    artwork: "https://picsum.photos/seed/zerodha/300/300",
    duration: "1:10:45",
    episodeNumber: 34,
    description: "Nithin Kamath explains how everyday Indians can build wealth through markets.",
    isNew: false,
  },
  {
    id: "p5",
    title: "Mental Health in Modern India | Breaking the Stigma",
    host: "Dr. Shyam Bhat",
    channel: "Mind Matters India",
    artwork: "https://picsum.photos/seed/mindmatters/300/300",
    duration: "52:20",
    episodeNumber: 21,
    description: "Practical strategies for managing anxiety and depression in urban India.",
    isNew: false,
  },
  {
    id: "p6",
    title: "Cricket Conversations | Rohit Sharma Exclusive Interview",
    host: "Harsha Bhogle",
    channel: "Cricbuzz Podcast",
    artwork: "https://picsum.photos/seed/cricbuzz/300/300",
    duration: "1:05:00",
    episodeNumber: 203,
    description: "Rohit Sharma opens up about captaincy, pressure, and India's World Cup journey.",
    isNew: false,
  },
  {
    id: "p7",
    title: "The Devotion Project | Stories of Indian Spirituality",
    host: "Sadhguru",
    channel: "Isha Foundation Talks",
    artwork: "https://picsum.photos/seed/sadhguru/300/300",
    duration: "38:50",
    episodeNumber: 77,
    description: "Sadhguru shares powerful stories of spiritual transformation from across India.",
    isNew: false,
  },
  {
    id: "p8",
    title: "Future India: AI, Tech & Society",
    host: "Tanmay Bhat",
    channel: "BB Ki Vines Podcast",
    artwork: "https://picsum.photos/seed/techfuture/300/300",
    duration: "1:18:33",
    episodeNumber: 15,
    description: "How AI will reshape jobs, education, and culture in India.",
    isNew: false,
  },
  {
    id: "p9",
    title: "Desi Money Talk | Build Your First Crore",
    host: "Ankur Warikoo",
    channel: "Warikoo Podcast",
    artwork: "https://picsum.photos/seed/warikoo/300/300",
    duration: "47:15",
    episodeNumber: 62,
    description: "Step-by-step guide to building your first crore through savings and investments.",
    isNew: false,
  },
  {
    id: "p10",
    title: "The Filmmaker's Journey | Anurag Kashyap Unfiltered",
    host: "Film Companion",
    channel: "Film Companion",
    artwork: "https://picsum.photos/seed/filmcompanion/300/300",
    duration: "1:30:00",
    episodeNumber: 118,
    description: "Anurag Kashyap speaks candidly about indie cinema, censorship, and creative freedom.",
    isNew: false,
  },
];

// ── STATIC_RADIO ──────────────────────────────────────────────────────────────

export const STATIC_RADIO: StaticRadioStation[] = [
  {
    id: "r1",
    name: "Radio Mirchi 98.3",
    genre: "Bollywood",
    logo: "https://picsum.photos/seed/radiomirchi/120/120",
    gradientFrom: "#e87722",
    gradientTo: "#ff4500",
    borderColor: "rgba(232,119,34,0.6)",
    listeners: "1.2M",
    isLive: true,
  },
  {
    id: "r2",
    name: "Red FM 93.5",
    genre: "Pop",
    logo: "https://picsum.photos/seed/redfm/120/120",
    gradientFrom: "#cc0000",
    gradientTo: "#ff6666",
    borderColor: "rgba(204,0,0,0.6)",
    listeners: "980K",
    isLive: true,
  },
  {
    id: "r3",
    name: "Big FM 92.7",
    genre: "Retro",
    logo: "https://picsum.photos/seed/bigfm/120/120",
    gradientFrom: "#6b21a8",
    gradientTo: "#a855f7",
    borderColor: "rgba(107,33,168,0.6)",
    listeners: "745K",
    isLive: true,
  },
  {
    id: "r4",
    name: "Fever 104 FM",
    genre: "English",
    logo: "https://picsum.photos/seed/fever104/120/120",
    gradientFrom: "#0ea5e9",
    gradientTo: "#38bdf8",
    borderColor: "rgba(14,165,233,0.6)",
    listeners: "620K",
    isLive: true,
  },
  {
    id: "r5",
    name: "AIR Classical",
    genre: "Classical",
    logo: "https://picsum.photos/seed/airclassical/120/120",
    gradientFrom: "#b45309",
    gradientTo: "#f0c040",
    borderColor: "rgba(180,83,9,0.6)",
    listeners: "310K",
    isLive: true,
  },
  {
    id: "r6",
    name: "Punjabi Tadka FM",
    genre: "Punjabi",
    logo: "https://picsum.photos/seed/punjabifm/120/120",
    gradientFrom: "#15803d",
    gradientTo: "#4ade80",
    borderColor: "rgba(21,128,61,0.6)",
    listeners: "870K",
    isLive: true,
  },
  {
    id: "r7",
    name: "Lofi India Radio",
    genre: "Lo-Fi",
    logo: "https://picsum.photos/seed/lofiindia/120/120",
    gradientFrom: "#1e40af",
    gradientTo: "#60a5fa",
    borderColor: "rgba(30,64,175,0.6)",
    listeners: "430K",
    isLive: true,
  },
  {
    id: "r8",
    name: "Bhakti Sangam",
    genre: "Devotional",
    logo: "https://picsum.photos/seed/bhaktisangam/120/120",
    gradientFrom: "#c2410c",
    gradientTo: "#fb923c",
    borderColor: "rgba(194,65,12,0.6)",
    listeners: "560K",
    isLive: true,
  },
];

// ── STATIC_REELS ──────────────────────────────────────────────────────────────

export const STATIC_REELS: StaticReel[] = [
  {
    id: "rl1",
    caption: "When the chai hits different on a rainy day ☕",
    thumbnail: "https://picsum.photos/seed/reel-chai/400/711",
    likes: "2.4M",
    hue: 30,
    creator: "ChaiWalaVibes",
  },
  {
    id: "rl2",
    caption: "Bollywood dance challenge | Try not to vibe 🕺",
    thumbnail: "https://picsum.photos/seed/reel-dance/400/711",
    likes: "5.1M",
    hue: 280,
    creator: "DesiDanceQueen",
  },
  {
    id: "rl3",
    caption: "Street food tour in Old Delhi 🍢 Part 2",
    thumbnail: "https://picsum.photos/seed/reel-food/400/711",
    likes: "1.8M",
    hue: 10,
    creator: "FoodTripIndia",
  },
  {
    id: "rl4",
    caption: "Goa sunsets that make your heart sing 🌅",
    thumbnail: "https://picsum.photos/seed/reel-goa/400/711",
    likes: "3.7M",
    hue: 200,
    creator: "GoaVibes365",
  },
  {
    id: "rl5",
    caption: "Classic Bollywood plot twist compilation 😂",
    thumbnail: "https://picsum.photos/seed/reel-plot/400/711",
    likes: "8.2M",
    hue: 140,
    creator: "BollywoodMemes",
  },
  {
    id: "rl6",
    caption: "Traditional mehndi design tutorial | Bridal special",
    thumbnail: "https://picsum.photos/seed/reel-mehndi/400/711",
    likes: "4.4M",
    hue: 60,
    creator: "MehndiArtistry",
  },
  {
    id: "rl7",
    caption: "Mumbai local train rush hour be like 😅",
    thumbnail: "https://picsum.photos/seed/reel-mumbai/400/711",
    likes: "6.9M",
    hue: 220,
    creator: "MumbaiDiaries",
  },
  {
    id: "rl8",
    caption: "Dosa making magic | South Indian street food",
    thumbnail: "https://picsum.photos/seed/reel-dosa/400/711",
    likes: "2.1M",
    hue: 45,
    creator: "SouthSpiceKitchen",
  },
  {
    id: "rl9",
    caption: "Sharma ji ka beta finally started dancing 💃",
    thumbnail: "https://picsum.photos/seed/reel-sharma/400/711",
    likes: "11.3M",
    hue: 320,
    creator: "DesiHumour",
  },
  {
    id: "rl10",
    caption: "Himalaya trek day 3 | Kedarnath base camp sunrise",
    thumbnail: "https://picsum.photos/seed/reel-trek/400/711",
    likes: "3.0M",
    hue: 180,
    creator: "HimalayanSoul",
  },
];

// ── STATIC_RENT_ITEMS ─────────────────────────────────────────────────────────

export const STATIC_RENT_ITEMS: StaticRentItem[] = [
  {
    id: "rn1",
    title: "Kalki 2898 AD",
    thumbnail: "https://picsum.photos/seed/kalki/480/270",
    price: 149,
    rating: 4.5,
    genre: "Sci-Fi Action",
    duration: "3:01:00",
    year: 2024,
    description: "A mythological sci-fi epic starring Prabhas, Deepika, and Amitabh Bachchan.",
  },
  {
    id: "rn2",
    title: "Stree 2",
    thumbnail: "https://picsum.photos/seed/stree2/480/270",
    price: 99,
    rating: 4.8,
    genre: "Horror Comedy",
    duration: "2:20:00",
    year: 2024,
    description: "The cult hit Stree franchise returns with more scares and laughs.",
  },
  {
    id: "rn3",
    title: "Pushpa: The Rule",
    thumbnail: "https://picsum.photos/seed/pushpa2/480/270",
    price: 199,
    rating: 4.6,
    genre: "Action Drama",
    duration: "3:20:00",
    year: 2024,
    description: "Allu Arjun returns as the iconic red sandalwood smuggler Pushpa Raj.",
  },
  {
    id: "rn4",
    title: "Fighter",
    thumbnail: "https://picsum.photos/seed/fighter/480/270",
    price: 129,
    rating: 4.0,
    genre: "Action",
    duration: "2:46:00",
    year: 2024,
    description: "Hrithik Roshan and Deepika Padukone in India's first aerial action film.",
  },
  {
    id: "rn5",
    title: "Munjya",
    thumbnail: "https://picsum.photos/seed/munjya/480/270",
    price: 79,
    rating: 4.3,
    genre: "Horror Comedy",
    duration: "1:58:00",
    year: 2024,
    description: "A supernatural comedy about a mischievous spirit from Konkan folklore.",
  },
  {
    id: "rn6",
    title: "Bhool Bhulaiyaa 3",
    thumbnail: "https://picsum.photos/seed/bb3/480/270",
    price: 119,
    rating: 4.1,
    genre: "Thriller",
    duration: "2:35:00",
    year: 2024,
    description: "Kartik Aaryan's Rooh Baba faces the ultimate paranormal challenge.",
  },
  {
    id: "rn7",
    title: "Singham Again",
    thumbnail: "https://picsum.photos/seed/singham3/480/270",
    price: 149,
    rating: 4.2,
    genre: "Action",
    duration: "2:52:00",
    year: 2024,
    description: "Rohit Shetty's cop universe explodes with all-star ensemble action.",
  },
  {
    id: "rn8",
    title: "Devara: Part 1",
    thumbnail: "https://picsum.photos/seed/devara/480/270",
    price: 129,
    rating: 4.0,
    genre: "Action Thriller",
    duration: "2:59:00",
    year: 2024,
    description: "Jr. NTR plays a fearless village leader in this gripping period action epic.",
  },
];

// ── STATIC_HOME_SECTIONS ──────────────────────────────────────────────────────

export const STATIC_HOME_SECTIONS: StaticHomeSection[] = [
  {
    id: "trending",
    title: "Trending Now",
    items: STATIC_VIDEOS.slice(0, 8),
  },
  {
    id: "featured",
    title: "Featured",
    items: STATIC_VIDEOS.slice(4, 12),
  },
  {
    id: "new_releases",
    title: "New Releases",
    items: STATIC_VIDEOS.slice(8, 16),
  },
];

// ── STATIC_FEED_POSTS ─────────────────────────────────────────────────────────

export const STATIC_FEED_POSTS: StaticFeedPost[] = [
  {
    id: "fp1",
    channelName: "Dharma Productions",
    channelAvatar: "https://picsum.photos/seed/dharmapost/48/48",
    timeAgo: "2 hours ago",
    content:
      "Rocky Aur Rani Kii Prem Kahaani is now streaming for free! Tag someone who needs a good cry. ❤️ #RockyRani #Bollywood #KaranJohar",
    image: "https://picsum.photos/seed/dharmapostimg/600/338",
    likes: 142300,
    comments: 4820,
    isVerified: true,
  },
  {
    id: "fp2",
    channelName: "Arijit Singh Official",
    channelAvatar: "https://picsum.photos/seed/arijitpost/48/48",
    timeAgo: "5 hours ago",
    content:
      "New song dropping this Friday midnight 🎵 Can you guess the movie from these clues? 1) Biggest blockbuster of 2024. 2) South Indian superstar. 3) You've already heard the teaser 100 times.",
    likes: 89400,
    comments: 12300,
    isVerified: true,
  },
  {
    id: "fp3",
    channelName: "T-Series",
    channelAvatar: "https://picsum.photos/seed/tseriespost/48/48",
    timeAgo: "1 day ago",
    content:
      "🎉 T-Series crosses 300 MILLION subscribers on YouTube! Thank you India, thank you world. This is YOUR achievement. Jai Hind! 🇮🇳 #TSeries300M #ThankYou",
    image: "https://picsum.photos/seed/tseriespostimg/600/338",
    likes: 530000,
    comments: 34200,
    isVerified: true,
  },
  {
    id: "fp4",
    channelName: "Colors TV Official",
    channelAvatar: "https://picsum.photos/seed/colorstvpost/48/48",
    timeAgo: "3 hours ago",
    content:
      "Tonight's Bigg Boss 17 episode is UNMISSABLE 👀 Drama, fights, and a surprise wildcard entry! Tune in at 9 PM only on Colors TV. Who do you think is re-entering the house? 🤔 Comment below!",
    likes: 28400,
    comments: 9100,
    isVerified: true,
  },
  {
    id: "fp5",
    channelName: "Red Chillies Entertainment",
    channelAvatar: "https://picsum.photos/seed/redchilliespost/48/48",
    timeAgo: "12 hours ago",
    content:
      "Behind the scenes from Jawan! 🎬 The crew worked for 800+ days to bring this epic to life. A huge thank you to each and every person on set. #Jawan #BTS #ShahRukhKhan #Atlee",
    image: "https://picsum.photos/seed/jawanbts/600/338",
    likes: 215000,
    comments: 18700,
    isVerified: true,
  },
  {
    id: "fp6",
    channelName: "Film Companion",
    channelAvatar: "https://picsum.photos/seed/filmcomppost/48/48",
    timeAgo: "2 days ago",
    content:
      "Our ranking of the Top 10 Bollywood films of 2024 is LIVE on the channel! Do you agree with our #1 pick? Many of you will be shocked. Link in bio. 🎬🍿 #Bollywood2024 #FilmCompanion",
    likes: 41200,
    comments: 7800,
    isVerified: false,
  },
];
