/*
Theme Name: Seeksins XYZ Core
Version: 1.0
*/

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #000;
  color: #fff;
}

header {
  background: #000;
  padding: 1em 0;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 999;
}

.logo {
  font-size: 2.2em;
  color: #00ff99;
  text-shadow: 0 0 5px #00ff99, 0 0 10px #00ff99;
  animation: flicker 3s infinite;
}

nav {
  margin-top: 0.5em;
}

nav a {
  color: #00ff99;
  margin: 0 1em;
  text-decoration: none;
}

.searchform {
  margin-top: 1em;
  display: flex;
  justify-content: center;
}

.searchform input[type="text"] {
  padding: 0.5em;
  border-radius: 20px;
  border: none;
  width: 250px;
}

.site-main {
  max-width: 700px;
  margin: 2em auto;
  padding: 0 1em;
}

.post-grid {
  display: flex;
  flex-direction: column;
  gap: 2em;
}

.post-box {
  border: 2px solid #00ff99;
  padding: 1em;
  text-align: center;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease-in-out;
}

.post-box:hover {
  box-shadow: 0 0 15px #00ff99;
  border-color: #00ffcc;
}

.post-title {
  font-size: 1.2em;
  margin-top: 0.5em;
  color: #fff;
}

.thumb-wrapper img {
  max-width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.ad-box {
  border: 2px solid #00ff99;
  padding: 1em;
  margin: 2em 0;
  text-align: center;
}

.video-wrapper iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.tag-buttons a {
  display: inline-block;
  padding: 0.4em 1em;
  background: #00ff99;
  color: #000;
  border-radius: 20px;
  margin: 0.5em 0.3em;
  text-decoration: none;
}

@keyframes flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    opacity: 1;
  }
  20%, 24%, 55% {
    opacity: 0.4;
  }
}
