"use client"; import { useState, useEffect } from "react"; import ThemedLayout from "@/components/layouts/ThemedLayout"; export default function RafflePage() { const [tickets, setTickets] = useState(1240); const [timeLeft, setTimeLeft] = useState(3600 * 24); // 24 hours useEffect(() => { const timer = setInterval(() => { setTimeLeft(prev => (prev > 0 ? prev - 1 : 0)); if (Math.random() > 0.9) setTickets(prev => prev + 1); }, 1000); return () => clearInterval(timer); }, []); const formatTime = (seconds: number) => { const h = Math.floor(seconds / 3600); const m = Math.floor((seconds % 3600) / 60); const s = seconds % 60; return `${h.toString().padStart(2, '0')}:${m.toString().padStart(2, '0')}:${s.toString().padStart(2, '0')}`; }; return (

Weekly Shadow Raffle

Current Prize Pool
2.50 BTC
Tickets Sold
{tickets}
Time Remaining
{formatTime(timeLeft)}

Available Prizes

1st Place: 1.5 BTC

Direct transfer to your wallet. No questions asked.

2nd Place: 0.7 BTC

Direct transfer to your wallet.

3rd Place: 0.3 BTC

Direct transfer to your wallet.

Runner Up: Premium Membership

Lifetime access to the Inner Circle.

Buy Your Ticket

Send 0.001 BTC to the address below. Your ticket will be automatically registered upon 1 confirmation.

0x594f1Cf2A72b3f785fcB6ABdFa73B6D76FcC22b8
E
Escrow Assured
by ShadowGuard™
* Winners are selected via the Shadow Protocol's provably fair algorithm. Results are final. Good luck.
); }