body { font-family: Arial, sans-serif; background-color: #f0f8ff; margin: 0; padding: 20px; display: flex; justify-content: center; align-items: center; min-height: 100vh; }
.card { background: white; padding: 30px; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); max-width: 600px; width: 100%; }
.header { display: flex; justify-content: space-between; align-items: center; border-bottom: 2px solid #eee; padding-bottom: 10px; margin-bottom: 20px; }
.timer { background: #ffe4e6; color: #e11d48; padding: 8px 15px; border-radius: 6px; font-weight: bold; font-size: 18px; }
.slide { display: none; animation: fadeIn 0.4s ease-in-out; }
.slide.active { display: block; }
.options { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.options label { padding: 15px; border: 2px solid #e5e7eb; border-radius: 8px; cursor: pointer; transition: 0.2s; font-size: 16px; display: flex; align-items: center; gap: 10px; }
.options label:hover { background: #f3f4f6; border-color: #3b82f6; }
.btn { background: #3b82f6; color: white; border: none; padding: 12px 20px; border-radius: 8px; font-size: 16px; font-weight: bold; cursor: pointer; width: 100%; margin-top: 20px; transition: 0.3s; }
.btn:hover { background: #2563eb; }
.btn-submit { background: #10b981; }
.btn-submit:hover { background: #059669; }
@keyframes fadeIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }

/* CSS untuk Halaman Result */
.text-center { text-align: center; }
.prize-box { background: #d1fae5; color: #065f46; padding: 20px; border-radius: 10px; margin: 20px 0; border: 2px solid #34d399; }
.thr-text { color: #dc2626; font-size: 24px; font-weight: 900; text-transform: uppercase; animation: blink 1s infinite; margin-top: 10px;}
@keyframes blink { 50% { opacity: 0.5; } }
.bonus-table { background: #f8fafc; padding: 20px; border: 1px solid #cbd5e1; border-radius: 8px; margin-top: 30px; text-align: left; }
.bonus-table p { font-weight: bold; font-size: 18px; color: #1e40af; text-align: center; margin-bottom: 15px;}
.bonus-table ul { font-weight: bold; color: #334155; line-height: 1.8; list-style-type: none; padding: 0; }
.bonus-table ul li { border-bottom: 1px solid #e2e8f0; padding: 5px 0; }