// Game-related interfaces
export interface GameQuestion {
  question: string;
  answer: string;
}

export interface GameData {
  title: string;
  title_blog: string;
  meta_description: string;
  meta_description_blog: string;
  description: string;
  description_alt: string;
  questions: GameQuestion[];
  related_keywords: string[];
}

export interface GameItem {
  id: string;
  title: string;
  cat: string[];
  thumb: string;
  gameUrl: string;
  pageUrl: string;
  slug: string;
  code: string;
}

export interface GameCategory {
  name: string;
  slug: string;
  count: number;
  games: GameItem[];
}

// Main games data interface
export interface GamesIndex {
  [key: string]: GameItem;
}
