/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700&display=swap');
body, html {
  height: 100%;
  font-family: 'Arial', sans-serif;
  background: black;
  color: white;
  margin: 0;
}
video.bg {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.5);
}
h1.title {
  text-align: center;
  font-size: 32px;
  margin-top: 20px;
  font-family: 'Orbitron', sans-serif;
  color: transparent;
  background: linear-gradient(90deg, #8e2de2, #4a00e0);
  -webkit-background-clip: text;
  animation: glow 2s infinite alternate, flicker 1s infinite;
  text-shadow: 0 0 2px #000;
}
@keyframes glow {
  from { text-shadow: 0 0 5px #fff, 0 0 10px #8e2de2, 0 0 15px #4a00e0; }
  to { text-shadow: 0 0 10px #fff, 0 0 20px #8e2de2, 0 0 30px #4a00e0; }
}
@keyframes flicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.9; }
}
.container {
  padding: 20px;
  max-width: 600px;
  margin: auto;
}
.accordion {
  background-color: rgba(255,255,255,0.1);
  color: white;
  cursor: pointer;
  padding: 15px;
  width: 100%;
  border: none;
  outline: none;
  text-align: left;
  font-size: 16px;
  margin-bottom: 5px;
  border-radius: 8px;
}
.panel {
  padding: 0 15px;
  background-color: rgba(255,255,255,0.05);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  border-radius: 0 0 8px 8px;
  margin-bottom: 10px;
}
.wa-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  padding: 12px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  display: flex;
  align-items: center;
  z-index: 99;
}
.wa-btn img {
  width: 24px;
  margin-right: 8px;
}
.warning-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: rgba(255,255,0,0.2);
  border: 1px solid yellow;
  color: #fff;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  z-index: 99;
  font-size: 14px;
  font-family: monospace;
}
.popup {
  display: none;
  position: fixed;
  top: 60px;
  right: 20px;
  background: rgba(0,0,0,0.9);
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #aaa;
  z-index: 999;
  max-width: 300px;
  font-size: 14px;
}
.popup p { margin-bottom: 8px; }
