<!DOCTYPE html>
<html class="light" lang="en"><head>
<meta charset="utf-8"/>
<meta content="width=device-width, initial-scale=1.0" name="viewport"/>
<title>QuizQuest - Quizzes Listing</title>
<link href="https://fonts.googleapis.com/css2?family=Spline+Sans:wght@300;400;500;600;700&display=swap" rel="stylesheet"/>
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:wght,FILL@100..700,0..1&display=swap" rel="stylesheet"/>
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:wght,FILL@100..700,0..1&display=swap" rel="stylesheet"/>
<script src="https://cdn.tailwindcss.com?plugins=forms,container-queries"></script>
<script id="tailwind-config">
tailwind.config = {
darkMode: "class",
theme: {
extend: {
colors: {
"primary": "#7f13ec",
"primary-light": "#9d4bf2",
"primary-dark": "#5e0eb0",
"background-light": "#f8f7fa",
"surface-white": "#ffffff",
"text-main": "#1a1122",
"text-muted": "#6b5e78",
"accent-green": "#00ba88",
"accent-gold": "#fbbf24",
},
fontFamily: {
"display": ["Spline Sans", "sans-serif"]
},
borderRadius: {
"DEFAULT": "1rem",
"lg": "1.5rem",
"xl": "2rem",
"2xl": "2.5rem",
"full": "9999px"
},
boxShadow: {
'soft': '0 4px 20px -2px rgba(127, 19, 236, 0.05)',
'card': '0 0 0 1px rgba(0,0,0,0.03), 0 2px 8px rgba(0,0,0,0.04)',
'card-hover': '0 0 0 1px #7f13ec, 0 12px 24px -8px rgba(127, 19, 236, 0.15)',
}
},
},
}
</script>
<style>
/* Custom scrollbar for horizontal scrolling areas */
.no-scrollbar::-webkit-scrollbar {
display: none;
}
.no-scrollbar {
-ms-overflow-style: none;
scrollbar-width: none;
}
</style>
</head>
<body class="bg-background-light font-display text-text-main antialiased selection:bg-primary/20 selection:text-primary">
<!-- Navbar -->
<header class="sticky top-0 z-50 w-full border-b border-gray-100 bg-surface-white/80 backdrop-blur-md">
<div class="mx-auto flex h-16 max-w-7xl items-center justify-between px-4 sm:px-6 lg:px-8">
<div class="flex items-center gap-2">
<div class="flex size-8 items-center justify-center rounded-lg bg-primary text-white">
<span class="material-symbols-outlined text-xl">bolt</span>
</div>
<span class="text-xl font-bold tracking-tight text-text-main">QuizQuest</span>
</div>
<nav class="hidden md:flex items-center gap-8">
<a class="text-sm font-medium text-text-muted hover:text-primary transition-colors" href="#">Home</a>
<a class="text-sm font-medium text-primary" href="#">Quizzes</a>
<a class="text-sm font-medium text-text-muted hover:text-primary transition-colors" href="#">Leaderboard</a>
<a class="text-sm font-medium text-text-muted hover:text-primary transition-colors" href="#">About</a>
</nav>
<div class="flex items-center gap-3">
<button class="hidden sm:flex items-center justify-center rounded-full border border-gray-200 bg-white px-5 py-2 text-sm font-semibold text-text-main hover:bg-gray-50 hover:border-gray-300 transition-all">
Log In
</button>
<button class="flex items-center justify-center gap-2 rounded-full bg-primary px-5 py-2 text-sm font-bold text-white shadow-lg shadow-primary/25 hover:bg-primary-dark transition-all">
<span>Start Playing</span>
<span class="material-symbols-outlined text-[18px]">arrow_forward</span>
</button>
</div>
</div>
</header>
<main class="relative w-full overflow-x-hidden pb-20">
<!-- Abstract Background Pattern -->
<div class="absolute top-0 left-0 w-full h-[600px] bg-[url('https://placeholder.pics/svg/300')] bg-cover opacity-[0.03] -z-10 pointer-events-none" data-alt="Abstract geometric light grey pattern background"></div>
<!-- Hero Section -->
<section class="mx-auto max-w-7xl px-4 pt-12 pb-8 sm:px-6 lg:px-8">
<div class="flex flex-col items-center text-center">
<div class="inline-flex items-center gap-2 rounded-full bg-primary/10 px-3 py-1 text-xs font-semibold text-primary mb-6">
<span class="material-symbols-outlined text-[16px]">verified</span>
Daily Challenge Live Now
</div>
<h1 class="max-w-3xl text-4xl font-black tracking-tight text-text-main sm:text-5xl md:text-6xl mb-4">
Challenge Your Knowledge,<br/> <span class="text-transparent bg-clip-text bg-gradient-to-r from-primary to-primary-light">Win Real Rewards</span>
</h1>
<p class="max-w-2xl text-lg text-text-muted mb-10">
Join thousands of players in real-time trivia battles. Prove your skills, climb the leaderboard, and unlock exclusive badges and prizes.
</p>
<!-- Search Bar -->
<div class="relative w-full max-w-2xl group">
<div class="absolute inset-y-0 left-0 flex items-center pl-4 pointer-events-none text-text-muted group-focus-within:text-primary transition-colors">
<span class="material-symbols-outlined">search</span>
</div>
<input class="block w-full rounded-full border-2 border-gray-200 bg-white py-4 pl-12 pr-32 text-base text-text-main placeholder:text-gray-400 focus:border-primary focus:outline-none focus:ring-4 focus:ring-primary/10 transition-all shadow-sm" placeholder="Search for topics like 'Space', 'Movies', or 'History'..." type="text"/>
<div class="absolute inset-y-2 right-2">
<button class="h-full rounded-full bg-primary px-6 text-sm font-bold text-white hover:bg-primary-dark transition-colors">
Find Quiz
</button>
</div>
</div>
</div>
</section>
<!-- Categories & Filters -->
<section class="mx-auto max-w-7xl px-4 py-8 sm:px-6 lg:px-8">
<div class="flex flex-col gap-6 md:flex-row md:items-center md:justify-between">
<div class="flex items-center gap-2 overflow-x-auto no-scrollbar pb-2 md:pb-0">
<button class="whitespace-nowrap rounded-full bg-primary px-5 py-2 text-sm font-bold text-white shadow-md shadow-primary/20">
All Quizzes
</button>
<button class="whitespace-nowrap rounded-full bg-white border border-gray-200 px-5 py-2 text-sm font-medium text-text-muted hover:border-primary hover:text-primary transition-colors">
Pop Culture
</button>
<button class="whitespace-nowrap rounded-full bg-white border border-gray-200 px-5 py-2 text-sm font-medium text-text-muted hover:border-primary hover:text-primary transition-colors">
Science & Nature
</button>
<button class="whitespace-nowrap rounded-full bg-white border border-gray-200 px-5 py-2 text-sm font-medium text-text-muted hover:border-primary hover:text-primary transition-colors">
History
</button>
<button class="whitespace-nowrap rounded-full bg-white border border-gray-200 px-5 py-2 text-sm font-medium text-text-muted hover:border-primary hover:text-primary transition-colors">
Sports
</button>
<button class="whitespace-nowrap rounded-full bg-white border border-gray-200 px-5 py-2 text-sm font-medium text-text-muted hover:border-primary hover:text-primary transition-colors">
Technology
</button>
</div>
<div class="flex items-center gap-2 ml-auto shrink-0">
<span class="text-xs font-semibold uppercase tracking-wider text-text-muted">Sort By:</span>
<select class="rounded-lg border-none bg-transparent py-2 pl-2 pr-8 text-sm font-bold text-text-main focus:ring-0 cursor-pointer hover:text-primary">
<option>Recommended</option>
<option>Newest</option>
<option>Highest Prize</option>
<option>Most Popular</option>
</select>
</div>
</div>
</section>
<!-- Quiz Grid -->
<section class="mx-auto max-w-7xl px-4 py-4 sm:px-6 lg:px-8">
<h2 class="sr-only">Quiz List</h2>
<div class="grid grid-cols-1 gap-6 sm:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4">
<!-- Card 1: Featured/Trending -->
<div class="group relative flex flex-col overflow-hidden rounded-xl bg-surface-white shadow-card transition-all duration-300 hover:-translate-y-1 hover:shadow-card-hover">
<div class="relative h-48 w-full overflow-hidden bg-gray-100">
<img alt="Abstract colorful neon shapes representing pop culture" class="h-full w-full object-cover transition-transform duration-500 group-hover:scale-110" data-alt="Abstract colorful neon shapes representing pop culture" src="https://lh3.googleusercontent.com/aida-public/AB6AXuAzghcOjRN4Ys5uicxprPrPbouq0NUe4qdro-KMGU1NTm0AflcHkomleApT6-3zYy-u6Mb1WfOKpc5bbixtBgjxVxBMRrZ2bcvIgQx6r0DVogWrqlxeCjiz_tt5ZR8bTmr2JmpnXAAGnz7R6u1B06HrvJIg9tkJWm3Rx6hJDoJ5XNWcDq0YXD03PCErFDqZHr9wpupTEHp_nhYnewuk17SROiZ7PU11wT1bHh8JuosQryx2C4c3269JnNKHhe4cElJueDv_RxPJ"/>
<div class="absolute top-3 right-3 flex flex-col items-end gap-2">
<span class="inline-flex items-center rounded-full bg-white/90 backdrop-blur px-2.5 py-1 text-xs font-bold text-primary shadow-sm">
<span class="material-symbols-outlined mr-1 text-[14px]">local_fire_department</span>
Trending
</span>
</div>
<div class="absolute bottom-3 left-3">
<span class="inline-flex items-center rounded-full bg-accent-gold text-text-main px-3 py-1 text-xs font-black shadow-sm border border-yellow-300">
<span class="material-symbols-outlined mr-1 text-[16px]">emoji_events</span>
$500 Pool
</span>
</div>
</div>
<div class="flex flex-1 flex-col p-5">
<div class="mb-2 flex items-center justify-between">
<span class="text-xs font-bold uppercase tracking-wider text-primary">Pop Culture</span>
<span class="text-xs font-medium text-text-muted flex items-center gap-1">
<span class="material-symbols-outlined text-[14px]">schedule</span> 10m
</span>
</div>
<h3 class="mb-2 text-lg font-bold leading-tight text-text-main group-hover:text-primary transition-colors">
Ultimate 2023 Movie Trivia Challenge
</h3>
<p class="mb-4 text-sm text-text-muted line-clamp-2">
Think you know every blockbuster from last year? Test your cinema knowledge now.
</p>
<div class="mt-auto flex items-center justify-between border-t border-gray-100 pt-4">
<div class="flex -space-x-2">
<img alt="User avatar" class="inline-block h-6 w-6 rounded-full ring-2 ring-white object-cover" data-alt="User avatar" src="https://lh3.googleusercontent.com/aida-public/AB6AXuBRJsL-RrKv4lLILv1vWRcJr5aovvyEYi_hjCo31C058E44285O3Ko83giGk96bL728DacCkJoHmySjRiryclCyRYcja2WlE5OqULJmpJTv1bZ0avRGVK33W-ZfnYMI91aBWm_JeS9RfEMSnx2m2-7oV6Wb5yiNmOsBRpLZjVhQbJOlJu5IrV3CTF_D_tkZgQcVC0-1R9McK2kX2jvvBFS9m3J_7hl2Yj9eDeadBtG59Vq5FlPuk1Y1A10lhaqvSbnheAshnwcq"/>
<img alt="User avatar" class="inline-block h-6 w-6 rounded-full ring-2 ring-white object-cover" data-alt="User avatar" src="https://lh3.googleusercontent.com/aida-public/AB6AXuD_CKHjUPJ30nvyaTM7DYV86EYUI1zPy1Bej3GW70WhexyczHDfFnduLpi8ZpVT3fKwIHMjH4Sm5HqxdrkbLmN7BwQ600bdASZnJu5VXxu0OkASc7jW-l7EDfOnsRPLah-AMHp7isfhG75rx2G2x8qLRcnCfzypzHEmY_QKoDuKO2MLJ2fTjKNMhnrtKx7X5v9C96Dw0gm8f6uOJF7CpQXNG2cTEc04oSwP3PkelcgiY0-UGv6nUYGyVM8AmFNI-AiiI95OWeX3"/>
<div class="flex h-6 w-6 items-center justify-center rounded-full bg-gray-100 ring-2 ring-white text-[10px] font-bold text-gray-500">+42</div>
</div>
<button class="flex items-center gap-1 text-sm font-bold text-primary opacity-0 -translate-x-2 transition-all duration-300 group-hover:opacity-100 group-hover:translate-x-0">
Play
<span class="material-symbols-outlined text-[16px]">arrow_right_alt</span>
</button>
</div>
</div>
</div>
<!-- Card 2 -->
<div class="group relative flex flex-col overflow-hidden rounded-xl bg-surface-white shadow-card transition-all duration-300 hover:-translate-y-1 hover:shadow-card-hover">
<div class="relative h-48 w-full overflow-hidden bg-gray-100">
<img alt="Science laboratory glassware with blue liquid" class="h-full w-full object-cover transition-transform duration-500 group-hover:scale-110" data-alt="Science laboratory glassware with blue liquid" src="https://lh3.googleusercontent.com/aida-public/AB6AXuDXUJ7mNPSLff2up__xvBIO3uO4uzGMMisLBDLurxLYn-HUGf-9ezwZYod_gU4eMD2m1v-sHLzEfdLdCnRoZ046Wcm_8tfezKH-fNt_YKUTxyT4-sTlAyY1H_qhqP7v80n_F5AAaLiSdrutHuJAm7plT3xeHBRzc5w5jYem055WkZoWwfitV4eCXFf11M338bR7X3uqhvtQd3jmiUFO-rpfa34LH49nmE4B5m4puWeJ3DbnvWmsG6ADsvlnimebWKGq3Jcx7kj-"/>
<div class="absolute top-3 right-3">
<span class="inline-flex items-center rounded-full bg-white/90 backdrop-blur px-2.5 py-1 text-xs font-bold text-blue-600 shadow-sm">
<span class="material-symbols-outlined mr-1 text-[14px]">science</span>
Science
</span>
</div>
<div class="absolute bottom-3 left-3">
<span class="inline-flex items-center rounded-full bg-accent-green text-white px-3 py-1 text-xs font-black shadow-sm border border-green-400">
<span class="material-symbols-outlined mr-1 text-[16px]">stars</span>
1000 XP
</span>
</div>
</div>
<div class="flex flex-1 flex-col p-5">
<div class="mb-2 flex items-center justify-between">
<span class="text-xs font-bold uppercase tracking-wider text-blue-600">Science</span>
<span class="text-xs font-medium text-text-muted flex items-center gap-1">
<span class="material-symbols-outlined text-[14px]">bolt</span> Hard
</span>
</div>
<h3 class="mb-2 text-lg font-bold leading-tight text-text-main group-hover:text-primary transition-colors">
Advanced Physics: Quantum Mechanics
</h3>
<p class="mb-4 text-sm text-text-muted line-clamp-2">
Dive deep into the fabric of reality. Only for the true science enthusiasts.
</p>
<div class="mt-auto flex items-center justify-between border-t border-gray-100 pt-4">
<div class="flex items-center gap-1 text-xs font-medium text-text-muted">
<span class="material-symbols-outlined text-[14px]">group</span> 1.2k Players
</div>
<button class="flex items-center gap-1 text-sm font-bold text-primary opacity-0 -translate-x-2 transition-all duration-300 group-hover:opacity-100 group-hover:translate-x-0">
Play
<span class="material-symbols-outlined text-[16px]">arrow_right_alt</span>
</button>
</div>
</div>
</div>
<!-- Card 3 -->
<div class="group relative flex flex-col overflow-hidden rounded-xl bg-surface-white shadow-card transition-all duration-300 hover:-translate-y-1 hover:shadow-card-hover">
<div class="relative h-48 w-full overflow-hidden bg-gray-100">
<img alt="Person holding a game controller in front of a screen" class="h-full w-full object-cover transition-transform duration-500 group-hover:scale-110" data-alt="Person holding a game controller in front of a screen" src="https://lh3.googleusercontent.com/aida-public/AB6AXuDFFxijmyZO9IgWRgXh3z_lakBYf9_w-n4R0NvLtAbklooHTms5JYPUmCLlTsydU-5XtkrPF13hJMnPTjFyNkbyvleXlLt2pwyAdTaNI1WIHePO1r2kIvoky1Mjx1KKd-PAhKya4SLkk7-2lXw5bwqyNehI3FkfhvLoU7W28IaFHJNVvS_xwzrJGlIxB2YJnARvA4LE3Wu9yqIB6yXBfRRy2Yo4IX0xRHHiBSmqKhwALx0VvXjxY76_ma1qIpMjKs9UeyGa-hsR"/>
<div class="absolute top-3 right-3">
<span class="inline-flex items-center rounded-full bg-white/90 backdrop-blur px-2.5 py-1 text-xs font-bold text-purple-600 shadow-sm">
<span class="material-symbols-outlined mr-1 text-[14px]">sports_esports</span>
Gaming
</span>
</div>
</div>
<div class="flex flex-1 flex-col p-5">
<div class="mb-2 flex items-center justify-between">
<span class="text-xs font-bold uppercase tracking-wider text-purple-600">Gaming</span>
<span class="text-xs font-medium text-text-muted flex items-center gap-1">
<span class="material-symbols-outlined text-[14px]">schedule</span> 5m
</span>
</div>
<h3 class="mb-2 text-lg font-bold leading-tight text-text-main group-hover:text-primary transition-colors">
Retro Gaming Consoles
</h3>
<p class="mb-4 text-sm text-text-muted line-clamp-2">
From Atari to SNES. Identify the console from the pixel art.
</p>
<div class="mt-auto flex items-center justify-between border-t border-gray-100 pt-4">
<div class="flex items-center gap-1 text-xs font-medium text-text-muted">
<span class="material-symbols-outlined text-[14px]">group</span> 856 Players
</div>
<button class="flex items-center gap-1 text-sm font-bold text-primary opacity-0 -translate-x-2 transition-all duration-300 group-hover:opacity-100 group-hover:translate-x-0">
Play
<span class="material-symbols-outlined text-[16px]">arrow_right_alt</span>
</button>
</div>
</div>
</div>
<!-- Card 4 -->
<div class="group relative flex flex-col overflow-hidden rounded-xl bg-surface-white shadow-card transition-all duration-300 hover:-translate-y-1 hover:shadow-card-hover">
<div class="relative h-48 w-full overflow-hidden bg-gray-100">
<img alt="Old world map on parchment paper" class="h-full w-full object-cover transition-transform duration-500 group-hover:scale-110" data-alt="Old world map on parchment paper" src="https://lh3.googleusercontent.com/aida-public/AB6AXuDIGUyusHBTikLDrZsEDwiIAkCu-9Qs_PfICSF1y3pFfPKt4wynEJkHxgC99pJUCSvoGVoQtgqFyb0NRMEXM8Qbv40XYDaNLvVyaAEh9jhLU0UZmtD9EHrXrfca-J0bp49pNfTn3mC2wkqmyidROrMZLkwBCAY-U5ZXDp9-ELJOI4TiUBfQapVO-Jkvo3bDTqfarqywG4dqpJTamwT9YKaa62JSxwceRC2by0rNK6Pxf_GR9dXGmqatghbj6aOlAXHG2-fy1tOs"/>
<div class="absolute bottom-3 left-3">
<span class="inline-flex items-center rounded-full bg-accent-gold text-text-main px-3 py-1 text-xs font-black shadow-sm border border-yellow-300">
<span class="material-symbols-outlined mr-1 text-[16px]">emoji_events</span>
$100 Pool
</span>
</div>
</div>
<div class="flex flex-1 flex-col p-5">
<div class="mb-2 flex items-center justify-between">
<span class="text-xs font-bold uppercase tracking-wider text-amber-700">History</span>
<span class="text-xs font-medium text-text-muted flex items-center gap-1">
<span class="material-symbols-outlined text-[14px]">bolt</span> Medium
</span>
</div>
<h3 class="mb-2 text-lg font-bold leading-tight text-text-main group-hover:text-primary transition-colors">
Ancient Civilizations
</h3>
<p class="mb-4 text-sm text-text-muted line-clamp-2">
Egypt, Rome, and Mesopotamia. Test your knowledge of the ancients.
</p>
<div class="mt-auto flex items-center justify-between border-t border-gray-100 pt-4">
<div class="flex -space-x-2">
<img alt="User avatar" class="inline-block h-6 w-6 rounded-full ring-2 ring-white object-cover" data-alt="User avatar" src="https://lh3.googleusercontent.com/aida-public/AB6AXuDsImK1O38Iqf6t8VJlSxODEwoFEU2LHcmZpUMW8KOUuwdSp11m4kI4tF9RdHiX_WnIkXLAbSFvRMF3IcT4WTRdHYBxkD3Kukzw6oVDeYx2UhAX0cR1Vo1ZEQ853UnVmo7SSIwLggK12VbA4b3upMFYQik1DTvEj7cnOT1yvgdqcGfHhQtu4rfySNjDLIs9VMIuTkbFqgMtL-iS0QRtdIKGs0ThejOckdbfYPT-i8A1ELaU2CNTUvKwcf5h3YfohIUeczU-HtXQ"/>
<div class="flex h-6 w-6 items-center justify-center rounded-full bg-gray-100 ring-2 ring-white text-[10px] font-bold text-gray-500">+12</div>
</div>
<button class="flex items-center gap-1 text-sm font-bold text-primary opacity-0 -translate-x-2 transition-all duration-300 group-hover:opacity-100 group-hover:translate-x-0">
Play
<span class="material-symbols-outlined text-[16px]">arrow_right_alt</span>
</button>
</div>
</div>
</div>
<!-- Card 5 -->
<div class="group relative flex flex-col overflow-hidden rounded-xl bg-surface-white shadow-card transition-all duration-300 hover:-translate-y-1 hover:shadow-card-hover">
<div class="relative h-48 w-full overflow-hidden bg-gray-100">
<img alt="Fresh healthy salad bowl with vegetables" class="h-full w-full object-cover transition-transform duration-500 group-hover:scale-110" data-alt="Fresh healthy salad bowl with vegetables" src="https://lh3.googleusercontent.com/aida-public/AB6AXuDsOflbiW26VOpPRjpLacG2tsceKHFOAsKFNe857gzqDnY-zAlZgqSnfsUwZ8U7bHs6tiy5XQBCxFzfefrCAOVgA81MgLW_PjbCPFCGxWVBrC03vDaD2pCIWbAIHrZ6Kgvq-Sn5yWf9clRMQ3Wip34jqC8kg3bfeFEVU_xVd51Vxw8p44p8sxuZoRV276dZz9Gkkgj6AmGIkZPXu5XApxOA0h6GZSsDBqsuowk_5H-3AgpUOyN2TzFkwMcqlfEstQj2NmcBHzaU"/>
<div class="absolute top-3 right-3">
<span class="inline-flex items-center rounded-full bg-white/90 backdrop-blur px-2.5 py-1 text-xs font-bold text-green-600 shadow-sm">
<span class="material-symbols-outlined mr-1 text-[14px]">nutrition</span>
Food
</span>
</div>
</div>
<div class="flex flex-1 flex-col p-5">
<div class="mb-2 flex items-center justify-between">
<span class="text-xs font-bold uppercase tracking-wider text-green-600">Lifestyle</span>
<span class="text-xs font-medium text-text-muted flex items-center gap-1">
<span class="material-symbols-outlined text-[14px]">schedule</span> 3m
</span>
</div>
<h3 class="mb-2 text-lg font-bold leading-tight text-text-main group-hover:text-primary transition-colors">
Global Cuisine Identification
</h3>
<p class="mb-4 text-sm text-text-muted line-clamp-2">
Can you identify the dish based on its ingredients?
</p>
<div class="mt-auto flex items-center justify-between border-t border-gray-100 pt-4">
<div class="flex items-center gap-1 text-xs font-medium text-text-muted">
<span class="material-symbols-outlined text-[14px]">group</span> 2.4k Players
</div>
<button class="flex items-center gap-1 text-sm font-bold text-primary opacity-0 -translate-x-2 transition-all duration-300 group-hover:opacity-100 group-hover:translate-x-0">
Play
<span class="material-symbols-outlined text-[16px]">arrow_right_alt</span>
</button>
</div>
</div>
</div>
<!-- Card 6 -->
<div class="group relative flex flex-col overflow-hidden rounded-xl bg-surface-white shadow-card transition-all duration-300 hover:-translate-y-1 hover:shadow-card-hover">
<div class="relative h-48 w-full overflow-hidden bg-gray-100">
<img alt="Earth viewed from space with network connections" class="h-full w-full object-cover transition-transform duration-500 group-hover:scale-110" data-alt="Earth viewed from space with network connections" src="https://lh3.googleusercontent.com/aida-public/AB6AXuCM5y0bk9WsRtMIsbfKqgGeoYktLmzB4LADDIsxNAKVuL71Lx7eoHHsktu_9c-nU_42cDF7S5PxYZnoMns3EPx9qn4m9pY6o7wD81jSicv6Tos7GJ_1FvDNcdldneG-keUKj-OZNdJpZQAUDF6RyIkE0I_sBJaajxRx7RLgDsp7r-2qACs6LZTTlf98SB4BcsXJBAks6IgDY9dSzsgLyn2jj9I_6N6iYLa4VRNs8JmT9m-7P74WVcGjPWZ0EjXuCh5v-mX5UQti"/>
<div class="absolute bottom-3 left-3">
<span class="inline-flex items-center rounded-full bg-accent-green text-white px-3 py-1 text-xs font-black shadow-sm border border-green-400">
<span class="material-symbols-outlined mr-1 text-[16px]">stars</span>
500 XP
</span>
</div>
</div>
<div class="flex flex-1 flex-col p-5">
<div class="mb-2 flex items-center justify-between">
<span class="text-xs font-bold uppercase tracking-wider text-cyan-600">Tech</span>
<span class="text-xs font-medium text-text-muted flex items-center gap-1">
<span class="material-symbols-outlined text-[14px]">bolt</span> Easy
</span>
</div>
<h3 class="mb-2 text-lg font-bold leading-tight text-text-main group-hover:text-primary transition-colors">
The Internet of Things
</h3>
<p class="mb-4 text-sm text-text-muted line-clamp-2">
Understanding how our devices connect and communicate.
</p>
<div class="mt-auto flex items-center justify-between border-t border-gray-100 pt-4">
<div class="flex -space-x-2">
<img alt="User avatar" class="inline-block h-6 w-6 rounded-full ring-2 ring-white object-cover" data-alt="User avatar" src="https://lh3.googleusercontent.com/aida-public/AB6AXuDsTglrtVoN3T3hRDdB-PlKb6yNSCX62fBs4_o04AMzBYI73IK8L4zm7KhOFnPP9qRURYKdG1WLLAKfxHTP3GVC8jxEmvJUwbz_70Kx6N3B5s73H-98V03l_NgnmnV4Fet5wuw498-TPwgS-y73vK-_2SrRSc9b3QugehMM5CsAH0WL-Mmv_jDtnA5KHl2M9L5nKme-iNY1PMbIphk6eNBLu-EU63YCmtdD9-_UvDycWlG4vy639hHWbdPKXSaMk6gQYsULuC1L"/>
<img alt="User avatar" class="inline-block h-6 w-6 rounded-full ring-2 ring-white object-cover" data-alt="User avatar" src="https://lh3.googleusercontent.com/aida-public/AB6AXuAmZaGyTzgdwxa-l3kvj5aCXkz7OrSfvgLnJcu_xiyAFerLWPA2VO4vclDmRzJeDu9DT4QDWD2JRKINpZilWAlartChIdX5tzh7Qu30VpRx7OL1usxSY7opmzZls9sF88BJumUpQRZg67y2fjJbncj3ZAye1GS2zx0WtHx6l90SKwt26-YyxFMIWOlBfpMRm7JuXTGbWetqYVZhFtkTjEmlX-knivS0-Sdwa20X-waBbprizEQc3tkp19kA3QpGM6YTKayUU9Mp"/>
<div class="flex h-6 w-6 items-center justify-center rounded-full bg-gray-100 ring-2 ring-white text-[10px] font-bold text-gray-500">+8</div>
</div>
<button class="flex items-center gap-1 text-sm font-bold text-primary opacity-0 -translate-x-2 transition-all duration-300 group-hover:opacity-100 group-hover:translate-x-0">
Play
<span class="material-symbols-outlined text-[16px]">arrow_right_alt</span>
</button>
</div>
</div>
</div>
<!-- Card 7 -->
<div class="group relative flex flex-col overflow-hidden rounded-xl bg-surface-white shadow-card transition-all duration-300 hover:-translate-y-1 hover:shadow-card-hover">
<div class="relative h-48 w-full overflow-hidden bg-gray-100">
<img alt="Vinyl record player on wooden table" class="h-full w-full object-cover transition-transform duration-500 group-hover:scale-110" data-alt="Vinyl record player on wooden table" src="https://lh3.googleusercontent.com/aida-public/AB6AXuCm5Y_3owadjCmSKVHuOCmEZ550ltENNK9vdfHS_tQmNzyvnIGmekQ6cyDs7Ra1h8Ar8-3TQaLkkJUHQbBjZFJOwa93VTKBvYDi5f3LaV-gpBxMksKTKpJWp_1AvnZw32w4Tl7KA_2XwulbMMT9GboqFok1Q_4dmyNMbJeAA_f3tA4D-9tHUlOO7Cp7iVf8hWLViaKzPCb_qrS7WBDwR07AODRZC2qLh_OZZNayhhLlUEmdrOSENRRTJ3kiaVBuwGp0lpXSugYd"/>
<div class="absolute top-3 right-3">
<span class="inline-flex items-center rounded-full bg-white/90 backdrop-blur px-2.5 py-1 text-xs font-bold text-pink-600 shadow-sm">
<span class="material-symbols-outlined mr-1 text-[14px]">music_note</span>
Music
</span>
</div>
</div>
<div class="flex flex-1 flex-col p-5">
<div class="mb-2 flex items-center justify-between">
<span class="text-xs font-bold uppercase tracking-wider text-pink-600">Music</span>
<span class="text-xs font-medium text-text-muted flex items-center gap-1">
<span class="material-symbols-outlined text-[14px]">schedule</span> 15m
</span>
</div>
<h3 class="mb-2 text-lg font-bold leading-tight text-text-main group-hover:text-primary transition-colors">
80s Rock Anthems
</h3>
<p class="mb-4 text-sm text-text-muted line-clamp-2">
Finish the lyric to these classic rock hits.
</p>
<div class="mt-auto flex items-center justify-between border-t border-gray-100 pt-4">
<div class="flex items-center gap-1 text-xs font-medium text-text-muted">
<span class="material-symbols-outlined text-[14px]">group</span> 5.1k Players
</div>
<button class="flex items-center gap-1 text-sm font-bold text-primary opacity-0 -translate-x-2 transition-all duration-300 group-hover:opacity-100 group-hover:translate-x-0">
Play
<span class="material-symbols-outlined text-[16px]">arrow_right_alt</span>
</button>
</div>
</div>
</div>
<!-- Card 8: High Stakes -->
<div class="group relative flex flex-col overflow-hidden rounded-xl bg-surface-white shadow-card transition-all duration-300 hover:-translate-y-1 hover:shadow-card-hover border-2 border-transparent hover:border-primary/20">
<div class="absolute inset-0 bg-gradient-to-br from-primary/5 to-transparent pointer-events-none"></div>
<div class="relative h-48 w-full overflow-hidden bg-gray-100">
<img alt="3D render of a golden crown" class="h-full w-full object-cover transition-transform duration-500 group-hover:scale-110" data-alt="3D render of a golden crown" src="https://lh3.googleusercontent.com/aida-public/AB6AXuAgOUL2BdRTLkrmAC8Lv8DPhWCnSDslyDsh5T9Ez6iexJVGOkoXA2N80uSEcICCMa_8CM50nTHQbfuxsa9OS_BpfFxOpQgYabl9f7pA3KUtthtedTC2rbzpjhuYK8vQxU2ofoqfk58KqEC5Q3wrjPsTGdw0yvlU2VYhtscTfL1pdMUBQidewrXsUISWLnikHmUyqCb966n-0kiLKcDAvtAC3bbP18V6UeLRA1ICuyp8W8506-biEShZodud0krkosrhfjo5q7gz"/>
<div class="absolute top-3 right-3">
<span class="inline-flex items-center rounded-full bg-primary text-white px-2.5 py-1 text-xs font-bold shadow-md">
<span class="material-symbols-outlined mr-1 text-[14px]">diamond</span>
Elite
</span>
</div>
<div class="absolute bottom-3 left-3">
<span class="inline-flex items-center rounded-full bg-accent-gold text-text-main px-3 py-1 text-xs font-black shadow-sm border border-yellow-300 animate-pulse">
<span class="material-symbols-outlined mr-1 text-[16px]">payments</span>
$2000 JACKPOT
</span>
</div>
</div>
<div class="flex flex-1 flex-col p-5">
<div class="mb-2 flex items-center justify-between">
<span class="text-xs font-bold uppercase tracking-wider text-primary">Special Event</span>
<span class="text-xs font-medium text-text-muted flex items-center gap-1">
<span class="material-symbols-outlined text-[14px]">bolt</span> Expert
</span>
</div>
<h3 class="mb-2 text-lg font-bold leading-tight text-text-main group-hover:text-primary transition-colors">
The Mastermind Challenge
</h3>
<p class="mb-4 text-sm text-text-muted line-clamp-2">
A mix of everything. Only one life. Winner takes all.
</p>
<div class="mt-auto flex items-center justify-between border-t border-gray-100 pt-4">
<div class="flex items-center gap-1 text-xs font-bold text-primary">
Starts in 2h 45m
</div>
<button class="rounded-full bg-primary px-4 py-1.5 text-xs font-bold text-white transition-all hover:bg-primary-dark shadow-md shadow-primary/20">
Join Waitlist
</button>
</div>
</div>
</div>
</div>
<!-- Load More -->
<div class="mt-12 flex justify-center">
<button class="flex items-center gap-2 rounded-full border border-gray-200 bg-white px-8 py-3 text-sm font-bold text-text-main hover:border-primary hover:text-primary transition-colors shadow-sm">
Load More Quizzes
<span class="material-symbols-outlined text-[18px]">expand_more</span>
</button>
</div>
</section>
</main>
<!-- Footer -->
<footer class="border-t border-gray-200 bg-white pt-16 pb-8">
<div class="mx-auto max-w-7xl px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-1 gap-8 md:grid-cols-4 lg:grid-cols-5">
<div class="lg:col-span-2">
<div class="flex items-center gap-2 mb-4">
<div class="flex size-8 items-center justify-center rounded-lg bg-primary text-white">
<span class="material-symbols-outlined text-xl">bolt</span>
</div>
<span class="text-xl font-bold tracking-tight text-text-main">QuizQuest</span>
</div>
<p class="text-sm text-text-muted max-w-xs mb-6">
The ultimate destination for trivia lovers. Learn, compete, and win prizes in real-time.
</p>
<div class="flex gap-4">
<a class="text-gray-400 hover:text-primary transition-colors" href="#"><span class="sr-only">Twitter</span><svg class="h-5 w-5" fill="currentColor" viewbox="0 0 24 24"><path d="M8.29 20.251c7.547 0 11.675-6.253 11.675-11.675 0-.178 0-.355-.012-.53A8.348 8.348 0 0022 5.92a8.19 8.19 0 01-2.357.646 4.118 4.118 0 001.804-2.27 8.224 8.224 0 01-2.605.996 4.107 4.107 0 00-6.993 3.743 11.65 11.65 0 01-8.457-4.287 4.106 4.106 0 001.27 5.477A4.072 4.072 0 012.8 9.713v.052a4.105 4.105 0 003.292 4.022 4.095 4.095 0 01-1.853.07 4.108 4.108 0 003.834 2.85A8.233 8.233 0 012 18.407a11.616 11.616 0 006.29 1.84"></path></svg></a>
<a class="text-gray-400 hover:text-primary transition-colors" href="#"><span class="sr-only">GitHub</span><svg class="h-5 w-5" fill="currentColor" viewbox="0 0 24 24"><path clip-rule="evenodd" d="M12 2C6.477 2 2 6.484 2 12.017c0 4.425 2.865 8.18 6.839 9.504.5.092.682-.217.682-.483 0-.237-.008-.868-.013-1.703-2.782.605-3.369-1.343-3.369-1.343-.454-1.158-1.11-1.466-1.11-1.466-.908-.62.069-.608.069-.608 1.003.07 1.531 1.032 1.531 1.032.892 1.53 2.341 1.088 2.91.832.092-.647.35-1.088.636-1.338-2.22-.253-4.555-1.113-4.555-4.951 0-1.093.39-1.988 1.029-2.688-.103-.253-.446-1.272.098-2.65 0 0 .84-.27 2.75 1.026A9.564 9.564 0 0112 6.844c.85.004 1.705.115 2.504.337 1.909-1.296 2.747-1.027 2.747-1.027.546 1.379.202 2.398.1 2.651.64.7 1.028 1.595 1.028 2.688 0 3.848-2.339 4.695-4.566 4.943.359.309.678.92.678 1.855 0 1.338-.012 2.419-.012 2.747 0 .268.18.58.688.482A10.019 10.019 0 0022 12.017C22 6.484 17.522 2 12 2z" fill-rule="evenodd"></path></svg></a>
</div>
</div>
<div>
<h3 class="text-sm font-semibold text-text-main mb-4">Platform</h3>
<ul class="space-y-3">
<li><a class="text-sm text-text-muted hover:text-primary" href="#">Browse Quizzes</a></li>
<li><a class="text-sm text-text-muted hover:text-primary" href="#">Live Events</a></li>
<li><a class="text-sm text-text-muted hover:text-primary" href="#">Leaderboards</a></li>
</ul>
</div>
<div>
<h3 class="text-sm font-semibold text-text-main mb-4">Company</h3>
<ul class="space-y-3">
<li><a class="text-sm text-text-muted hover:text-primary" href="#">About Us</a></li>
<li><a class="text-sm text-text-muted hover:text-primary" href="#">Careers</a></li>
<li><a class="text-sm text-text-muted hover:text-primary" href="#">Contact</a></li>
</ul>
</div>
<div>
<h3 class="text-sm font-semibold text-text-main mb-4">Legal</h3>
<ul class="space-y-3">
<li><a class="text-sm text-text-muted hover:text-primary" href="#">Privacy Policy</a></li>
<li><a class="text-sm text-text-muted hover:text-primary" href="#">Terms of Service</a></li>
<li><a class="text-sm text-text-muted hover:text-primary" href="#">Cookie Policy</a></li>
</ul>
</div>
</div>
<div class="mt-12 border-t border-gray-100 pt-8 text-center md:text-left">
<p class="text-xs text-text-muted">© 2023 QuizQuest Inc. All rights reserved.</p>
</div>
</div>
</footer>
</body></html>