/* Full-on early-2000s eye assault styles */
body { margin:0; font-family: 'Comic Sans MS', 'Segoe UI', Tahoma, sans-serif; background: linear-gradient(135deg,#ff00cc,#00ffff); color:#fff; }
.page-glow{ box-shadow: 0 0 30px rgba(255,255,0,0.6); padding-bottom:40px; }
.header{ text-align:center; padding:20px; background: repeating-linear-gradient(45deg, rgba(255,255,255,0.06) 0 10px, rgba(0,0,0,0.02) 10px 20px); border-bottom:6px dashed yellow }
.title{ font-size:44px; color:#00ff00; text-shadow: 2px 2px #ff00ff; margin:5px }
.logo-gif{ width:120px; height:120px; animation: wobble 3s infinite }
.marquee{ font-weight:bold; color:#ffff00; }

.main-grid{ display:grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap:20px; padding:20px }
.widget{ background: linear-gradient(180deg, rgba(0,0,0,0.15), rgba(255,255,255,0.05)); border: 4px solid cyan; padding:12px; border-radius:10px; position:relative }
.widget h2{ color:#ffdd00; margin:0 0 10px 0; font-size:20px }
.widget-body{ display:flex; flex-direction:column; align-items:center }
.tiny-gif{ width:64px; height:64px; border-radius:8px; box-shadow:0 0 10px #fff }
.output{ width:90%; min-height:70px; background:#fff; color:#000; border:3px double #ff00ff; padding:8px; margin:10px 0; font-weight:bold; text-align:center }
.ugly-btn{ background:linear-gradient(#ff4444,#880000); color:#fff; border:3px solid #ffff00; padding:10px 14px; font-size:16px; cursor:pointer; box-shadow: 4px 4px 0 #000 }
.ugly-btn:hover{ transform:translateY(-3px); }

.footer{ text-align:center; padding:12px; margin-top:16px; color:#000; background:rgba(255,255,255,0.2); border-top:6px double #00ff00 }
.footer-gif{ width:36px; vertical-align:middle }

/* Blink effect to resurrect 2001 */
@keyframes blink { 50% { opacity:0.2 } }
.title{ animation: blink 2s step-start infinite }

/* wobble */
@keyframes wobble{ 0%{transform:rotate(-6deg)}50%{transform:rotate(6deg)}100%{transform:rotate(-6deg)} }

/* Ugly mobile tweaks */
@media (max-width:600px){ .title{ font-size:28px } .output{ min-height:90px } }
