/* ---------- GLOBAL ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #0e0e10;
  color: #fff;
}

/* ---------- HEADER ---------- */
header {
  background-color: #16161a;
  padding: 15px 40px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
  position: sticky;
  top: 0;
  z-index: 100;
  padding-left: 120px;
  align-items: center;
  text-align: center;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.logo img {
  width: 100px;
  display: block;
  margin-right: 16px;
  margin-left: 400px;
  margin-top: 20px;
}

nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
  align-items: center;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 17px;
  transition: 0.3s ease;
  padding-bottom: 3px;
}

nav a:hover {
  color: #320374;
  border-bottom: 2px solid #320374;
}

/* ---------- LAYOUT ---------- */
.content-layout {
  display: flex;
  gap: 30px;
  padding: 30px;
}

/* ---------- LEFT ZONE ---------- */
.left-zone {
  flex: 3;
}

.left-zone h1 {
  font-size: 34px;
  color: #7f118398;
  margin-bottom: 1.2rem;
  text-shadow: 0 0 12px rgba(91, 7, 114, 0.5);
  text-align: center;
}

/* ---------- VO/VF SWITCH ---------- */
.lang-switch {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.lang-switch button {
  background: linear-gradient(135deg, #320374, #320374);
  border: none;
  padding: 0.7rem 1.4rem;
  border-radius: 14px;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 14px rgba(48, 2, 57, 0.35);
  font-size: 15px;
}

.lang-switch button:hover {
  transform: scale(1.07);
}

.lang-switch button.active {
  background: linear-gradient(135deg, #320374, #320374);
  color: #000;
  transform: scale(1.12);
  box-shadow: 0 0 22px rgba(39, 1, 39, 0.8);
}

/* ---------- PLAYER ---------- */
.player-wrapper {
  width: 100%;
}

iframe {
  width: 100%;
  height: 550px;
  border: none;
  border-radius: 14px;
  box-shadow: 0 0 25px rgba(0,0,0,0.6);
}

/* ---------- EPISODE PANEL ---------- */
.episode-panel {
  flex: 1;
  background-color: #05052e;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 0 25px rgba(1, 5, 26, 0.5);
  height: fit-content;
}

.episode-panel h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #25084e;
  text-shadow: 0 0 10px rgba(5, 21, 70, 0.4);
}

/* ---------- EPISODE BUTTONS ---------- */
.ep-btn {
  display: block;
  width: 100%;
  margin-bottom: 12px;
  padding: 12px;
  background: linear-gradient(135deg, #320374, #320374);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s ease;
  box-shadow: 0 0 12px rgba(30,60,255,0.35);
}

.ep-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 18px rgba(30,60,255,0.6);
}

.ep-btn.active {
  background: linear-gradient(135deg, #320374, #320374);
  color: #000;
  transform: scale(1.08);
  box-shadow: 0 0 22px rgba(1, 8, 29, 0.8);
}

/* ---------- FOOTER ---------- */
footer {
  text-align: center;
  padding: 20px;
  background-color: #16161a;
  font-size: 14px;
  color: #aaa;
}
.ss {
    text-align: center;
    margin-top: 10px;
    margin-left: auto;
    padding-right: 950px;
    padding-left: 45px;
}