/*
Theme Name: AI Will Die - Glitch Head (v3)
Theme URI: https://aiwilldie.com
Author: ChatGPT
Description: Fun glitch theme with AJAX voting and embedded punch sound (Sucuri-safe).
Version: 3.0
License: GPLv3
Text Domain: aiwilldie
*/
body {
  margin: 0;
  background: black;
  color: #0f0;
  font-family: 'Courier New', monospace;
  overflow-x: hidden;
}
#glitch-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle at center, #001a00, #000);
  opacity: 0.1;
  z-index: -1;
  animation: flicker 3s infinite alternate;
}
@keyframes flicker { 0% {opacity:0.05;} 100% {opacity:0.15;} }
.container { text-align: center; padding-top: 15vh; }
h1 { text-shadow: 0 0 15px #0f0; }
button#voteBtn {
  font-size: 1.6rem;
  background: #0f0;
  border: none;
  color: black;
  padding: 1rem 2rem;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 0 20px #0f0;
  transition: transform 0.1s ease;
}
button#voteBtn:active { transform: scale(0.9); background: #9f0; }
#count { margin-top: 20px; font-size: 2rem; }
#meter { width: 80%; height: 20px; margin: 30px auto; background: #333; border-radius: 10px; overflow: hidden; }
#meter-fill { width: 0%; height: 100%; background: #0f0; transition: width 0.4s ease-in-out; }
