    :root {
      --accent: #00ff00;
      --hover: #ff8c00;
    }* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Orbitron', sans-serif;
  
}

body {
  background: #0d1117;
  color: var(--accent);
  padding: 2rem;

  max-width: 600px;
  margin: 0 auto;
}

h1 {
  margin-bottom: 2rem;
  padding-top: 0;
  text-shadow: 0 0 10px var(--accent);
  text-align: center;
}

.genre-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
}

.genre-list button {
  background-color: rgba(0, 255, 224, 0.1);
  border: 2px solid var(--accent);
  color: var(--accent);
  padding: 0.75rem 1rem;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.genre-list button:hover {
  background-color: var(--hover);
  color: #000;
  box-shadow: 0 0 10px var(--hover);
}

.modal {
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: #0d1117;
  padding: 2rem;
  border: 1px solid var(--accent);
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 0 20px var(--accent);
  position: relative;
}

.close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 2rem;
  color: var(--accent);
  cursor: pointer;
}

.anime-list {
  list-style: none;
  margin-top: 1rem;
  padding: 0;
  max-height: 400px;
  overflow-y: auto;
  text-align: left;
}

.anime-list a {
  color: var(--accent);
  text-decoration: none;
  font-weight: bold;
  display: block;
  padding: 0.5rem;
  border-bottom: 1px solid var(--accent);
  transition: background-color 0.3s;
}

.anime-list a:hover {
  background-color: rgba(0,255,224,0.1);
}

/* Ad Popup */
#adPopup {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  display: none;
}
#adPopup iframe {
  width: 90%;
  height: 250px;
  border: none;
  border-radius: 8px;
}
#countdown {
  margin-top: 1rem;
  color: #fff;
  font-weight: bold;
}