#site-header {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  background-color: transparent; 
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000; 
}

.logo {
  height: 60px; 
  object-fit: contain;
}

body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  background-color: #000;
  color: white;
  display: flex;
  flex-direction: column;
  height: 100vh;
}

h1, h2, h3, button {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}

h1, h2 {
  text-shadow: 0 0 6px #66ccff;
  color: #ffffff;
}

.top-section {
  position: relative;
  height: 100vh;

}

.background-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}


.video-overlay a {
  background-color: #ffcc00;
  color: #000;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
}

.overlay h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.official-btn {
  padding: 10px 20px;
  background-color: #ffcc00;
  color: black;
  text-decoration: none;
  border-radius: 10px;
}

.character-section {
  padding: 20px;
  text-align: center;
}

.category-buttons button {
  margin: 10px;
  padding: 10px 15px;
  background-color: #444;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.content-section {
  height: 35vh; 
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  overflow: hidden;
}

.character-display {
  display: flex;
  align-items: center;
  justify-content: center;
}

#character-card {
  width: 600px;
  text-align: center;
  background-color: #222;
  padding: 20px;
  border-radius: 10px;
  margin: 0 20px;
}


.character-card img {
  max-width: 100%;
  border-radius: 10px;
}

.category-buttons button {
  margin: 1 10px;
  padding: 10px 15px;
  background-color: #444;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.category-buttons button.active {
  background-color: #ffcc00;
  color: black;
  font-weight: bold;
  border: 2px solid #fff;
}

.nav-buttons button {
  background-color: #333;
  color: white;
  border: none;
  font-size: 2rem;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
}


.kyara h3{
  height: 50%;
  font-size: 24px;
  margin: 20 20px;
  color: #ffd700; 
}

.video-wrapper {
  position: relative;
  width: 200%;
  max-width: 960px; 
  margin: 0 auto;
  padding-bottom: 45%; 
  height: 90%;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70%;
}

#official-video h3{
  height: 30px;
  font-size: 24px;
  margin: 50 50px;
  color: #ffd700; 
}







