Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"/> | |
| <title>Draft Day Derby 2.0</title> | |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css" /> | |
| <style> | |
| :root { | |
| --primary: #6a11cb; | |
| --secondary: #2575fc; | |
| --accent: #00f7ff; | |
| --background: #0f0c29; | |
| --text: #ffffff; | |
| --neutral: #f0f0f0; | |
| --danger: #ff3860; | |
| --success: #00d1b2; | |
| --warning: #ffdd57; | |
| --card-bg: #1a1a2e; | |
| --button-bg: #16213e; | |
| --glow: 0 0 8px var(--accent); | |
| } | |
| * { | |
| margin: 0; | |
| padding: 0; | |
| box-sizing: border-box; | |
| font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; | |
| } | |
| body { | |
| background: var(--background); | |
| color: var(--text); | |
| overflow-x: hidden; | |
| } | |
| header { | |
| background: linear-gradient(90deg, var(--primary), var(--secondary)); | |
| padding: 1rem; | |
| text-align: center; | |
| position: relative; | |
| overflow: hidden; | |
| } | |
| header h1 { | |
| font-size: 2.2rem; | |
| text-shadow: var(--glow); | |
| margin-bottom: 0.5rem; | |
| } | |
| header p { | |
| font-size: 1rem; | |
| max-width: 600px; | |
| margin: auto; | |
| } | |
| .hero-selection { | |
| padding: 2rem; | |
| display: grid; | |
| grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); | |
| gap: 1.5rem; | |
| max-width: 1200px; | |
| margin: auto; | |
| } | |
| .hero-card { | |
| background: var(--card-bg); | |
| border-radius: 12px; | |
| padding: 1rem; | |
| text-align: center; | |
| box-shadow: 0 4px 10px rgba(0,0,0,0.5); | |
| transition: transform 0.3s, box-shadow 0.3s; | |
| position: relative; | |
| overflow: hidden; | |
| } | |
| .hero-card.frozen { | |
| filter: grayscale(100%) opacity(0.5); | |
| } | |
| .hero-card.glowing { | |
| box-shadow: var(--glow); | |
| } | |
| .hero-card:hover { | |
| transform: translateY(-5px); | |
| box-shadow: 0 8px 16px rgba(0,0,0,0.6); | |
| } | |
| .hero-card img { | |
| width: 100%; | |
| height: auto; | |
| border-radius: 8px; | |
| margin-bottom: 0.8rem; | |
| } | |
| .hero-card h3 { | |
| font-size: 1.2rem; | |
| margin-bottom: 0.5rem; | |
| } | |
| .hero-stats { | |
| display: flex; | |
| justify-content: space-around; | |
| font-size: 0.9rem; | |
| } | |
| .progress-section { | |
| padding: 2rem; | |
| max-width: 1200px; | |
| margin: auto; | |
| background: rgba(26, 26, 46, 0.5); | |
| border-radius: 12px; | |
| } | |
| .progress-wheel { | |
| width: 200px; | |
| height: 200px; | |
| border-radius: 50%; | |
| background: conic-gradient(var(--accent) 70%, #222 0); | |
| margin: auto; | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| box-shadow: var(--glow); | |
| } | |
| .progress-wheel.frozen { | |
| background: conic-gradient(#888 70%, #333 0); | |
| box-shadow: 0 0 10px #aaa; | |
| } | |
| .progress-center { | |
| width: 160px; | |
| height: 160px; | |
| background: var(--background); | |
| border-radius: 50%; | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| font-weight: bold; | |
| font-size: 1.4rem; | |
| } | |
| .race-replay { | |
| margin-top: 2rem; | |
| padding: 1rem; | |
| background: rgba(26, 26, 46, 0.8); | |
| border-radius: 12px; | |
| text-align: center; | |
| } | |
| .race-replay video { | |
| width: 100%; | |
| max-width: 800px; | |
| margin-top: 1rem; | |
| border-radius: 8px; | |
| } | |
| .boost-section { | |
| display: flex; | |
| justify-content: center; | |
| gap: 1rem; | |
| margin-top: 1rem; | |
| } | |
| .button { | |
| padding: 0.8rem 1.5rem; | |
| background: var(--button-bg); | |
| color: var(--text); | |
| border: none; | |
| border-radius: 8px; | |
| font-weight: bold; | |
| cursor: pointer; | |
| transition: background 0.3s; | |
| display: flex; | |
| align-items: center; | |
| gap: 0.5rem; | |
| } | |
| .button:hover { | |
| background: var(--primary); | |
| } | |
| .button.glowing { | |
| box-shadow: var(--glow); | |
| } | |
| .leaderboard { | |
| margin-top: 2rem; | |
| padding: 1.5rem; | |
| background: rgba(26, 26, 46, 0.8); | |
| border-radius: 12px; | |
| } | |
| .leaderboard h2 { | |
| text-align: center; | |
| margin-bottom: 1rem; | |
| } | |
| .board { | |
| display: grid; | |
| grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); | |
| gap: 1rem; | |
| } | |
| .board-entry { | |
| background: var(--card-bg); | |
| padding: 1rem; | |
| border-radius: 8px; | |
| display: flex; | |
| align-items: center; | |
| gap: 1rem; | |
| } | |
| .board-entry img { | |
| width: 50px; | |
| height: 50px; | |
| border-radius: 50%; | |
| } | |
| .onboarding { | |
| text-align: center; | |
| padding: 2rem; | |
| } | |
| .onboarding video { | |
| width: 100%; | |
| max-width: 600px; | |
| border-radius: 8px; | |
| margin-top: 1rem; | |
| } | |
| footer { | |
| text-align: center; | |
| padding: 2rem; | |
| font-size: 0.9rem; | |
| color: var(--neutral); | |
| background: rgba(0,0,0,0.2); | |
| } | |
| /* Responsive Design */ | |
| @media (max-width: 768px) { | |
| header h1 { | |
| font-size: 1.8rem; | |
| } | |
| .boost-section { | |
| flex-direction: column; | |
| align-items: center; | |
| } | |
| .progress-wheel { | |
| width: 150px; | |
| height: 150px; | |
| } | |
| .progress-center { | |
| width: 120px; | |
| height: 120px; | |
| font-size: 1.1rem; | |
| } | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <header> | |
| <h1>🐎 Draft Day Derby 2.0</h1> | |
| <p>Select 3 hero-athletes to race daily. Unlock boosts, earn rewards, and climb the leaderboard!</p> | |
| </header> | |
| <section class="onboarding"> | |
| <h2>Freeze Preview</h2> | |
| <video controls muted autoplay loop> | |
| <source src="https://www.w3schools.com/html/mov_bbb.mp4" type="video/mp4"> | |
| Freeze animation preview | |
| </video> | |
| <p>If no selection within 36h, your stable freezes. Use a Glider to revive your streak!</p> | |
| </section> | |
| <section class="hero-selection"> | |
| <div class="hero-card glowing"> | |
| <img src="https://i.pravatar.cc/150?img=1" alt="Hero 1"> | |
| <h3>Flash Lance</h3> | |
| <div class="hero-stats"> | |
| <span>Speed: <i class="fas fa-tachometer-alt"></i> 92</span> | |
| <span>Endurance: <i class="fas fa-heart"></i> 75</span> | |
| <span>Burst: <i class="fas fa-bolt"></i> 85</span> | |
| </div> | |
| </div> | |
| <div class="hero-card"> | |
| <img src="https://i.pravatar.cc/150?img=2" alt="Hero 2"> | |
| <h3>Storm Rider</h3> | |
| <div class="hero-stats"> | |
| <span>Speed: <i class="fas fa-tachometer-alt"></i> 80</span> | |
| <span>Endurance: <i class="fas fa-heart"></i> 90</span> | |
| <span>Burst: <i class="fas fa-bolt"></i> 78</span> | |
| </div> | |
| </div> | |
| <div class="hero-card frozen"> | |
| <img src="https://i.pravatar.cc/150?img=3" alt="Hero 3"> | |
| <h3>Blaze Bolt</h3> | |
| <div class="hero-stats"> | |
| <span>Speed: <i class="fas fa-tachometer-alt"></i> 88</span> | |
| <span>Endurance: <i class="fas fa-heart"></i> 80</span> | |
| <span>Burst: <i class="fas fa-bolt"></i> 92</span> | |
| </div> | |
| </div> | |
| <div class="hero-card"> | |
| <img src="https://i.pravatar.cc/150?img=4" alt="Hero 4"> | |
| <h3>Echo Rush</h3> | |
| <div class="hero-stats"> | |
| <span>Speed: <i class="fas fa-tachometer-alt"></i> 75</span> | |
| <span>Endurance: <i class="fas fa-heart"></i> 95</span> | |
| <span>Burst: <i class="fas fa-bolt"></i> 82</span> | |
| </div> | |
| </div> | |
| <div class="hero-card glowing"> | |
| <img src="https://i.pravatar.cc/150?img=5" alt="Hero 5"> | |
| <h3>Neon Stride</h3> | |
| <div class="hero-stats"> | |
| <span>Speed: <i class="fas fa-tachometer-alt"></i> 95</span> | |
| <span>Endurance: <i class="fas fa-heart"></i> 60</span> | |
| <span>Burst: <i class="fas fa-bolt"></i> 88</span> | |
| </div> | |
| </div> | |
| </section> | |
| <section class="progress-section"> | |
| <h2>Speed Progress</h2> | |
| <div class="progress-wheel"> | |
| <div class="progress-center">72%</div> | |
| </div> | |
| <p>Energy recharges at 00:00 UTC. Bonus power-ups activate for eligible heroes.</p> | |
| <div class="boost-section"> | |
| <button class="button glowing"><i class="fas fa-plus-circle"></i> Revive with Glider</button> | |
| <button class="button"><i class="fas fa-bolt"></i> Use Fantasy Flares</button> | |
| </div> | |
| </section> | |
| <section class="race-replay"> | |
| <h2>Race Replay</h2> | |
| <video controls> | |
| <source src="https://www.w3schools.com/html/mov_bbb.mp4" type="video/mp4"> | |
| Race replay animation | |
| </video> | |
| <p>Your heroes just crossed the finish line! Check out today’s fastest lanes.</p> | |
| </section> | |
| <section class="leaderboard"> | |
| <h2><i class="fas fa-crown"></i> Leaderboards</h2> | |
| <div class="board"> | |
| <div class="board-entry"> | |
| <img src="https://i.pravatar.cc/150?img=6" alt="Top User 1"> | |
| <div> | |
| <strong>Alpha Rider</strong> – 1,240 pts<br> | |
| Most Upsets: 🥇 | |
| </div> | |
| </div> | |
| <div class="board-entry"> | |
| <img src="https://i.pravatar.cc/150?img=7" alt="Top User 2"> | |
| <div> | |
| <strong>Neon Flash</strong> – 1,190 pts<br> | |
| Fastest Lane: 🥈 | |
| </div> | |
| </div> | |
| <div class="board-entry"> | |
| <img src="https://i.pravatar.cc/150?img=8" alt="Top User 3"> | |
| <div> | |
| <strong>Bolt Vandal</strong> – 1,150 pts<br> | |
| Weekly Derby Winner: 🥉 | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <footer> | |
| <p>Earn rewards with every race. Share your Derby highlights on social!</p> | |
| <p><i class="fab fa-ethereum"></i> Powered by FCS Fantasy CryptoSports</p> | |
| </footer> | |
| </body> | |
| </html> |