// Casino deals data - hand-picked offers
// Each deal supports an optional `logo` field — a path to an .svg/.jpg/.png.
// When present, the image renders inside the colored badge instead of the letter glyph.
// Backend can swap any letter glyph for an uploaded image without touching layout.
const DEALS = [
  {
    id: "twin",
    rank: 1,
    isTopPick: true,
    name: "Twin Casino",
    tag: "twin",
    tagBg: "#0a0a0a",
    tagColor: "#22c55e",
    logo: null,
    bonus: "100% up to €500",
    extra: "+ 200 Free Spins",
    bonusValue: 500,
    spins: 200,
    code: "XOOTIC100",
    rating: 4.9,
    minDeposit: 20,
    wager: "35x",
    payout: "1-2 days",
    games: 4500,
    highlights: ["No Sticky Bonus", "Crypto Friendly", "24/7 Support"],
    license: "MGA",
    established: 2017,
    paymentMethods: ["Visa", "Skrill", "BTC", "ETH", "Trustly"],
    tagline: "The verified #1 — biggest match, most spins, fastest payouts.",
    url: "#"
  },
  {
    id: "slotoro",
    rank: 2,
    name: "Slotoro",
    tag: "SLT",
    tagBg: "#1a0f2e",
    tagColor: "#a78bfa",
    logo: null,
    bonus: "150% up to €300",
    extra: "+ 100 Free Spins",
    bonusValue: 300,
    spins: 100,
    code: "XOOTIC150",
    rating: 4.7,
    minDeposit: 10,
    wager: "30x",
    payout: "1-3 days",
    games: 3200,
    highlights: ["Low Wager", "Daily Reload", "VIP Program"],
    license: "Curacao",
    established: 2020,
    paymentMethods: ["Visa", "Skrill", "BTC", "Neteller"],
    tagline: "Higher match %, lower minimum — solid second pick.",
    url: "#"
  },
  {
    id: "neonvegas",
    rank: 3,
    name: "Neon Vegas",
    tag: "NV",
    tagBg: "#0f1a2e",
    tagColor: "#60a5fa",
    logo: null,
    bonus: "200% up to €200",
    extra: "+ 50 Free Spins",
    bonusValue: 200,
    spins: 50,
    code: "XOOTICNV",
    rating: 4.6,
    minDeposit: 10,
    wager: "40x",
    payout: "2-4 days",
    games: 2800,
    highlights: ["Live Dealer", "Sports Book", "Mobile Optimized"],
    license: "MGA",
    established: 2019,
    paymentMethods: ["Visa", "PayPal", "BTC", "Skrill"],
    tagline: "Massive match for smaller deposits.",
    url: "#"
  },
  {
    id: "rollstar",
    rank: 4,
    name: "RollStar",
    tag: "RS",
    tagBg: "#2e1a0a",
    tagColor: "#fbbf24",
    logo: null,
    bonus: "100% up to €1000",
    extra: "+ 75 Free Spins",
    bonusValue: 1000,
    spins: 75,
    code: "ROLLXOOTIC",
    rating: 4.8,
    minDeposit: 25,
    wager: "35x",
    payout: "Instant",
    games: 5100,
    highlights: ["Highest Cap", "Instant Payout", "Pragmatic Play"],
    license: "MGA",
    established: 2018,
    paymentMethods: ["Visa", "MasterCard", "BTC", "ETH", "Trustly", "Skrill"],
    tagline: "Highest bonus ceiling for serious players.",
    url: "#"
  },
  {
    id: "spincity",
    rank: 5,
    name: "SpinCity",
    tag: "SC",
    tagBg: "#2e0a1f",
    tagColor: "#f472b6",
    logo: null,
    bonus: "75% up to €400",
    extra: "+ 150 Free Spins",
    bonusValue: 400,
    spins: 150,
    code: "XOOTICSC",
    rating: 4.5,
    minDeposit: 15,
    wager: "25x",
    payout: "1-2 days",
    games: 3800,
    highlights: ["Low Wager 25x", "Tournaments", "Cashback"],
    license: "Curacao",
    established: 2021,
    paymentMethods: ["Visa", "Skrill", "BTC", "Apple Pay"],
    tagline: "Lowest wagering — easiest to actually withdraw.",
    url: "#"
  },
  {
    id: "lucky7",
    rank: 6,
    name: "Lucky Seven",
    tag: "L7",
    tagBg: "#0a2e1a",
    tagColor: "#34d399",
    logo: null,
    bonus: "100% up to €250",
    extra: "+ 250 Free Spins",
    bonusValue: 250,
    spins: 250,
    code: "L7XOOTIC",
    rating: 4.4,
    minDeposit: 10,
    wager: "35x",
    payout: "2-3 days",
    games: 2400,
    highlights: ["Most Free Spins", "Loyalty Club", "Daily Drops"],
    license: "Curacao",
    established: 2022,
    paymentMethods: ["Visa", "Skrill", "BTC", "Neteller"],
    tagline: "Free-spin heavy — great for slot enthusiasts.",
    url: "#"
  }
];

window.DEALS = DEALS;
