/*
Theme Name: SoulSociety
Author: SoulSociety
Description: Anime dubbing website theme
Version: 1.0
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #f4efe5;
  color: #1f1f1f;
  font-family: Arial, sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

.site-header {
  height: 80px;
  padding: 0 60px;
  background: #f4efe5;
  border-bottom: 1px solid rgba(0,0,0,.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d87525;
  font-size: 22px;
}
.logo-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo h1 {
   font-size: 42px;
    font-weight: 800;
    color: #1f1f1f;
    line-height: 1.1;
    margin: 0;
    position: relative;
    display: inline-block;
    letter-spacing: .5px;
}
.h2::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-10px;
    width:80px;
    height:4px;
    border-radius:20px;
    background:linear-gradient(90deg,#ff8a00,#ffb347);
}

.logo p {
  margin-top:5px;
    font-size:16px;
    color:#d97706;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
}

.navbar {
  display: flex;
  gap: 28px;
}

.navbar a:hover {
  color: #d87525;
}

.site-main {
  max-width: 1180px;
  margin: 35px auto;
  padding: 0 20px;
}

.hero {
  min-height: 390px;
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(0,0,0,.9), rgba(0,0,0,.45)),
    url("https://images.unsplash.com/photo-1578632767115-351597cf2477?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 65px;
  display: flex;
  align-items: center;
  box-shadow: 0 18px 45px rgba(0,0,0,.18);
}

.hero-content span {
  color: #d87525;
  font-weight: bold;
}

.hero h2 {
  font-size: 56px;
  margin: 14px 0;
}

.hero p {
  max-width: 520px;
  color: #e6ded3;
  line-height: 1.8;
}

.main-btn {
  display: inline-block;
  margin-top: 24px;
  background: #d87525;
  color: white;
  padding: 13px 24px;
  border-radius: 11px;
  font-weight: bold;
}

.section-title {
  margin: 45px 0 25px;
}

.section-title h2 {
  font-size: 32px;
  border-left: 4px solid #d87525;
  padding-left: 14px;
}

.anime-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.anime-card {
  background: #fffaf1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0,0,0,.08);
  transition: .3s;
}

.anime-card:hover {
  transform: translateY(-7px);
}

.anime-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.no-poster {
  height: 250px;
  background: #151515;
  color: #d87525;
  display: flex;
  align-items: center;
  justify-content: center;
}

.anime-info {
  padding: 16px;
}

.anime-info h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.anime-info p {
  color: #d87525;
  font-weight: bold;
}

.empty-message {
  grid-column: 1 / -1;
  background: #fffaf1;
  padding: 30px;
  border-radius: 18px;
  text-align: center;
}

.footer {
  background: #151515;
  color: #bbb;
  text-align: center;
  padding: 35px;
  margin-top: 60px;
}

.footer h2 {
  color: white;
  margin-bottom: 8px;
}

@media (max-width: 900px) {
  .site-header {
    height: auto;
    padding: 18px;
    flex-direction: column;
    gap: 15px;
  }

  .navbar {
    flex-wrap: wrap;
    justify-content: center;
  }

  .anime-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    padding: 40px 25px;
  }
}

@media (max-width: 560px) {
  .anime-grid {
    grid-template-columns: 1fr;
  }

  .hero h2 {
    font-size: 38px;
  }
}
.detail-box {
  background: #161515;
  border-radius: 24px;
  padding: 35px;
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 35px;
  box-shadow: 0 16px 42px rgba(0,0,0,.08);
  margin-top: 35px;
}

.detail-poster img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 18px;
}

.detail-info h2 {
  font-size: 42px;
  margin: 12px 0 20px;
}

.info-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 18px 0;
  border-top: 1px solid rgba(0,0,0,.1);
  border-bottom: 1px solid rgba(0,0,0,.1);
}

.description {
  margin-top: 20px;
  line-height: 1.8;
  color: #5f554d;
}

.watch-box {
  margin-top: 35px;
  display: grid;
  grid-template-columns: 260px 1fr;
  background: #151515;
  border-radius: 20px;
  overflow: hidden;
}

.episodes {
  background: #101010;
  color: white;
  padding: 22px;
}

.episode-btn {
  width: 100%;
  border: none;
  background: transparent;
  color: #ded8d1;
  padding: 13px 14px;
  border-radius: 10px;
  text-align: left;
  cursor: pointer;
  margin-bottom: 6px;
}

.episode-btn:hover,
.active-episode {
  background: #8c4d1c;
  color: white;
}

.player iframe {
  width: 100%;
  height: 470px;
  border: none;
  background: #000;
}

.comments {
  margin-top: 35px;
  background: #fffaf1;
  border-radius: 20px;
  padding: 28px;
}
.detail-box {
  max-width: 100%;
  overflow: hidden;
}

.detail-info {
  min-width: 0;
}

.description,
.description p {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.comments textarea {
  width: 100%;
  max-width: 100%;
  min-height: 120px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.15);
  background: #f8f0e5;
  padding: 12px;
  font-family: inherit;
}

.comments input[type="submit"],
.comments button {
  background: #d87525;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 10px;
  cursor: pointer;
}

.comment-form-comment label,
.comment-form-author label,
.comment-form-email label,
.comment-form-url label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
}

.comment-reply-title {
  font-size: 22px;
  margin-bottom: 10px;
}

.logged-in-as,
.comment-notes {
  font-size: 13px;
  color: #6e6258;
  margin-bottom: 10px;
}

.player {
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.player iframe {
  display: block;
}
.comments-box {
  background: #fffaf1;
  border-radius: 18px;
  padding: 24px;
}

.comments-box h3,
.comment-reply-title {
  font-size: 24px;
  margin-bottom: 18px;
  border-left: 4px solid #d87525;
  padding-left: 12px;
}

.comment-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.comment-list li {
  background: #f8f0e5;
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 14px;
}

.comment-author {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
}

.comment-author img {
  border-radius: 50%;
}

.comment-meta {
  margin: 8px 0;
  font-size: 13px;
  color: #7a6d60;
}

.comment-body p {
  line-height: 1.6;
  color: #3f3731;
}

.reply a {
  color: #d87525;
  font-weight: bold;
}

.comment-form-comment label {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
}

.comment-form textarea {
  width: 100%;
  min-height: 140px;
  border: 1px solid rgba(0,0,0,.13);
  background: #f8f0e5;
  border-radius: 14px;
  padding: 14px;
  font-family: inherit;
}

.comment-form input[type="submit"] {
  background: #d87525;
  color: white;
  border: none;
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: bold;
  cursor: pointer;
}
.home-block {
  margin-top: 55px;
}

.top-box {
  background:
    linear-gradient(90deg, rgba(10,10,10,.92), rgba(10,10,10,.45)),
    url("https://soulsocietywatch.com/wp-content/uploads/2026/07/bleach-tybw-op-3-64-uhq-wallpapers-link-with-all-in-the-v0-c9jhmxkjq9xd1-scaled.webp");
  background-size: cover;
  background-position: center;
  border-radius: 22px;
  min-height: 230px;
  padding: 40px;
  color: white;
  display: flex;
  align-items: center;
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
}

.top-box h2 {
  font-size: 40px;
  margin: 8px 0;
}

.top-box p {
  color: #e6ded3;
}
.anime-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(240px,1fr));
    gap:28px;
}

.anime-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    transition:.35s;
    box-shadow:0 12px 28px rgba(0,0,0,.08);
}

.anime-card:hover{
    transform:translateY(-8px);
    box-shadow:0 22px 45px rgba(0,0,0,.18);
}

.anime-card img{
    width:100%;
    height:340px;
    object-fit:cover;
}

.anime-info{
    padding:18px;
}

.anime-info h3{
    font-size:22px;
    margin-bottom:8px;
}

.anime-info p{
    color:#d87525;
    font-weight:bold;
}

.schedule-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

.day-card{
    background:#fff;
    padding:22px;
    border-radius:16px;
    box-shadow:0 10px 24px rgba(0,0,0,.08);
}

.day-card h3{
    color:#d87525;
    margin-bottom:12px;
}

.day-card p{
    color:#666;
    line-height:1.8;
}

.section-title{
    margin:55px 0 28px;
}

.section-title h2{
    font-size:34px;
}
.home-slider {
  position: relative;
  min-height: 420px;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(0,0,0,.2);
  background: #111;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: .7s ease;
  background:
    linear-gradient(90deg, rgba(0,0,0,.9), rgba(0,0,0,.45)),
    url("https://wallpapercave.com/wp/wp12899628.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 70px;
  color: #d87525;
}

.slide:nth-child(2) {
  background:
    linear-gradient(90deg, rgba(0,0,0,.9), rgba(0,0,0,.45)),
    url("https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRUD8ACBxGVecNlVhhY4cjEErSqaWTsIeY2XLWNunGptEIx_5vgiBDVEu4&s=10");
  background-size: cover;
  background-position: center;
}


 .slide:nth-child(3) {
 background:
    linear-gradient(90deg, rgba(0,0,0,.9), rgba(0,0,0,.45)),
    url("https://soulsocietywatch.com/wp-content/uploads/2026/07/content.png");
  background-size: cover;
  background-position: center;
}

.active-slide {
  opacity: 1;
  z-index: 2;
}

.slide-content {
  max-width: 560px;
}

.slide-content span {
  color: #d87525;
  font-weight: 800;
}

.slide-content h2 {
  font-size: 58px;
  margin: 14px 0;
}

.slide-content p {
  color: #e6ded3;
  line-height: 1.8;
}

.slider-dots {
  position: absolute;
  bottom: 25px;
  left: 70px;
  z-index: 5;
  display: flex;
  gap: 10px;
}

.slider-dots button {
  width: 12px;
  height: 12px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,.6);
  cursor: pointer;
}

.slider-dots .active-dot {
  background: #d87525;
}
.page-hero {
  background:
    linear-gradient(90deg, rgba(0,0,0,.9), rgba(0,0,0,.45)),
    url("https://soulsocietywatch.com/wp-content/uploads/2026/07/wp10938516.webp");
  background-size: cover;
  background-position: center;
  color: white;
  border-radius: 24px;
  padding: 55px;
  margin-bottom: 35px;
  box-shadow: 0 18px 45px rgba(0,0,0,.18);
}

.page-hero span {
  color: #d87525;
  font-weight: 800;
}
.page-hero-3 {
  background:
    linear-gradient(90deg, rgba(0,0,0,.9), rgba(0,0,0,.45)),
    url("https://soulsocietywatch.com/wp-content/uploads/2026/07/1221658_1_optimized_250.webp");
  background-size: cover;
  background-position: center;
  color: white;
  border-radius: 24px;
  padding: 55px;
  margin-bottom: 35px;
  box-shadow: 0 18px 45px rgba(0,0,0,.18);
}

.page-hero-3 span {
  color: #d87525;
  font-weight: 800;
}
.page-hero-3 h2 {
  font-size: 48px;
  margin: 10px 0;
}

.page-hero-3 p {
  color: #e6ded3;
}
.page-hero-1{
  background:
    linear-gradient(90deg, rgba(0,0,0,.9), rgba(0,0,0,.45)),
    url("https://soulsocietywatch.com/wp-content/uploads/2026/07/656029_1_optimized_250.webp");
  background-size: cover;
  background-position: center;
  color: white;
  border-radius: 24px;
  padding: 55px;
  margin-bottom: 35px;
  box-shadow: 0 18px 45px rgba(0,0,0,.18);
}

.page-hero-1 span {
  color: #d87525;
  font-weight: 800;
}

.page-hero-1 h2 {
  font-size: 48px;
  margin: 10px 0;
}

.page-hero-1 p {
  color: #e6ded3;
}

.archive-grid {
  margin-top: 30px;
}
.detail-box {
  position: relative;
  overflow: hidden;
}

.detail-box::before {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 260px;
  height: 260px;
  border: 26px solid rgba(216,117,37,.08);
  border-radius: 50%;
}

.detail-poster,
.detail-info {
  position: relative;
  z-index: 2;
}

.detail-info h2 {
  color: #1f1f1f;
}

.info-list p {
  background: #f8f0e5;
  padding: 12px 14px;
  border-radius: 12px;
}

.watch-box {
  border: 1px solid rgba(255,255,255,.08);
}

.episodes {
  max-height: 470px;
  overflow-y: auto;
}

.episodes::-webkit-scrollbar {
  width: 6px;
}

.episodes::-webkit-scrollbar-thumb {
  background: #d87525;
  border-radius: 20px;
}

.player {
  padding: 0;
}

.player iframe {
  display: block;
}
.team-grid {
  margin-top: 35px;
}

.team-card {
  transition: .3s;
  border: 1px solid rgba(216,117,37,.15);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,.14);
}

.team-icon {
  width: 64px;
  height: 64px;
  background: #151515;
  color: #d87525;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-hero {
  min-height: 630px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 80% 20%, rgba(216,117,37,.28), transparent 28%),
    linear-gradient(90deg, rgba(10,10,10,.95), rgba(10,10,10,.55)),
    url("https://soulsocietywatch.com/wp-content/uploads/2026/07/contenttt_optimized_250.png");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 55px;
  display: flex;
  align-items: center;
  box-shadow: 0 22px 55px rgba(0,0,0,.22);
}

.contact-hero span {
  color: #d87525;
  font-weight: 900;
  letter-spacing: 1px;
}

.contact-hero h2 {
  font-size: 52px;
  margin: 12px 0;
}

.contact-hero p {
  color: #e6ded3;
  max-width: 560px;
  line-height: 1.8;
}

.contact-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.contact-actions a {
  background: #d87525;
  color: white;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: bold;
}

.contact-actions a:nth-child(2),
.contact-actions a:nth-child(3) {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
}

.premium-team {
  margin-top: 35px;
}

.premium-team .team-card {
  background:
    linear-gradient(180deg, #fffaf1, #f8f0e5);
  border-radius: 24px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(216,117,37,.18);
  box-shadow: 0 14px 35px rgba(0,0,0,.08);
  transition: .35s;
}

.premium-team .team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 55px rgba(0,0,0,.16);
}

.team-avatar {
  width: 86px;
  height: 86px;
  border-radius: 24px;
  background: #151515;
  color: #d87525;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  margin: 0 auto 18px;
}

.premium-team .team-card span {
  color: #d87525;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
}

.premium-team .team-card h3 {
  font-size: 26px;
  margin: 10px 0;
}

.premium-team .team-card p {
  color: #5f554d;
  margin-bottom: 14px;
}

.premium-team .team-card a {
  color: #d87525;
  font-weight: bold;
}

@media (max-width: 700px) {
  .contact-hero {
    padding: 35px 25px;
  }

  .contact-hero h2 {
    font-size: 36px;
  }

  .contact-actions {
    flex-wrap: wrap;
  }
}
.premium-team{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
    margin-top:50px;
}

.team-card{
    position:relative;
    overflow:hidden;
    background:linear-gradient(180deg,#fffdf8,#f7efe4);
    border-radius:24px;
    padding:35px;
    text-align:center;
    transition:.35s;
    border:1px solid rgba(216,117,37,.15);
    box-shadow:0 18px 40px rgba(0,0,0,.08);
}

.team-card:hover{
    transform:translateY(-10px);
    box-shadow:0 28px 60px rgba(0,0,0,.16);
}

.team-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:120px;
    background:linear-gradient(135deg,#d87525,#ffb15a);
}

.team-avatar{
    position:relative;
    width:150px;
    height:150px;
    margin:35px auto 20px;
    border-radius:50%;
    overflow:hidden;
    border:6px solid #fff;
    box-shadow:0 12px 25px rgba(0,0,0,.15);
    background:#fff;
}

.team-avatar img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.team-card span{
    display:inline-block;
    margin-top:10px;
    color:#d87525;
    font-size:13px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:1px;
}

.team-card h3{
    font-size:30px;
    margin:12px 0;
}

.team-text{
    color:#555;
    line-height:1.8;
    margin-top:10px;
}

.team-card::after{
    content:"SOUL SOCIETY";
    position:absolute;
    bottom:-18px;
    right:-10px;
    font-size:42px;
    font-weight:900;
    color:rgba(216,117,37,.05);
}
.premium-anime-card {
  background: #fffaf1;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(216,117,37,.14);
  box-shadow: 0 16px 38px rgba(0,0,0,.09);
}

.premium-anime-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 60px rgba(0,0,0,.18);
}

.anime-poster-wrap {
  position: relative;
  height: 360px;
  overflow: hidden;
  background: #111;
}

.anime-poster-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .45s;
}

.premium-anime-card:hover .anime-poster-wrap img {
  transform: scale(1.08);
}

.status-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(216,117,37,.95);
  color: white;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  z-index: 3;
}

.poster-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.85));
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 22px;
  opacity: 0;
  transition: .35s;
}

.premium-anime-card:hover .poster-overlay {
  opacity: 1;
}

.watch-now {
  background: #d87525;
  color: white;
  padding: 11px 18px;
  border-radius: 12px;
  font-weight: 800;
}

.anime-card-meta {
  display: flex;
  gap: 10px;
  margin: 10px 0;
  color: #6a5e55;
  font-size: 14px;
}

.genre-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.genre-tags span {
  background: #f2dfc9;
  color: #9b561c;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}
.mini-schedule {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 25px;
}

.mini-day {
  background: linear-gradient(180deg, #fffaf1, #f7efe4);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(216,117,37,.16);
  box-shadow: 0 14px 35px rgba(0,0,0,.08);
  transition: .3s;
}

.mini-day:hover {
  transform: translateY(-6px);
}

.mini-day span {
  color: #d87525;
  font-weight: 900;
}

.mini-day h3 {
  font-size: 24px;
  margin: 10px 0;
}

.mini-day p {
  color: #6e6258;
}

@media (max-width: 700px) {
  .mini-schedule {
    grid-template-columns: 1fr;
  }
}
.schedule-anime{
    display:flex;
    align-items:center;
    gap:18px;
    background:#fff;
    border-radius:18px;
    padding:14px;
    margin-top:18px;
    box-shadow:0 12px 28px rgba(0,0,0,.08);
    transition:.3s;
}

.schedule-anime:hover{
    transform:translateY(-5px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.schedule-thumb{
    width:80px;
    height:110px;
    border-radius:12px;
    overflow:hidden;
    flex-shrink:0;
}

.schedule-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.schedule-info{
    flex:1;
}

.schedule-info strong{
    display:block;
    font-size:22px;
    margin-bottom:8px;
    color:#222;
}

.schedule-info p{
    margin:0;
    color:#666;
    line-height:1.5;
}

.schedule-btn{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#d87525;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:18px;
    transition:.3s;
    flex-shrink:0;
}

.schedule-btn:hover{
    background:#b85c15;
    transform:scale(1.1);
}
.schedule-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 35px;
}

.schedule-day {
  background: linear-gradient(180deg, #fffaf1, #f7efe4);
  border-radius: 24px;
  padding: 26px;
  border: 1px solid rgba(216,117,37,.18);
  border-left: 5px solid #d87525;
  box-shadow: 0 14px 35px rgba(0,0,0,.08);
}

.schedule-day h3 {
  color: #d87525;
  font-size: 26px;
  margin-bottom: 18px;
}

.schedule-anime {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-radius: 18px;
  padding: 14px;
  margin-top: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
  transition: .3s;
}

.schedule-anime:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 42px rgba(0,0,0,.15);
}

.schedule-thumb {
  width: 72px;
  height: 96px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  background: #151515;
}

.schedule-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.schedule-no-thumb {
  width: 100%;
  height: 100%;
  color: #d87525;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.schedule-info {
  flex: 1;
}

.schedule-info strong {
  display: block;
  font-size: 22px;
  margin-bottom: 6px;
  color: #1f1f1f;
}

.schedule-info p,
.empty-day {
  margin: 0;
  color: #6e6258;
  line-height: 1.5;
}

.empty-day {
  background: #f8f0e5;
  padding: 14px;
  border-radius: 14px;
}

.schedule-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #d87525;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (max-width: 800px) {
  .schedule-page-grid {
    grid-template-columns: 1fr;
  }
}
.contact-actions{
    display:flex;
    gap:16px;
    margin-top:30px;
}

.contact-btn{
    position:relative;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
    min-width:130px;
    height:52px;
    padding:0 26px;
    border-radius:15px;
    text-decoration:none;
    font-weight:700;
    color:#fff;
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(8px);
    border:1px solid rgba(255,255,255,.18);
    transition:.35s ease;
}

.contact-btn:first-child{
    background:#d87525;
    border:none;
}

.contact-btn::before{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:70%;
    height:100%;
    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.45),
        transparent
    );
    transform:skewX(-20deg);
    transition:.6s;
}

.contact-btn:hover::before{
    left:170%;
}

.contact-btn:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(216,117,37,.35);
}

.contact-btn:first-child:hover{
    background:#e68434;
}

.contact-btn:not(:first-child):hover{
    background:#d87525;
    border-color:#d87525;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 35px;
}

.review-card {
  background: #fffaf1;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 38px rgba(0,0,0,.09);
  border: 1px solid rgba(216,117,37,.14);
  transition: .3s;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 55px rgba(0,0,0,.16);
}

.review-video {
  height: 230px;
  background: #000;
}

.review-video iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.review-info {
  padding: 20px;
}

.review-info span {
  color: #d87525;
  font-weight: 800;
  font-size: 13px;
}

.review-info h3 {
  font-size: 22px;
  margin: 10px 0;
}

.review-info p {
  color: #6e6258;
  line-height: 1.6;
}
.player-area {
  background: #000;
}

.player-tabs {
  display: flex;
  gap: 8px;
  padding: 12px;
  background: #101010;
}

.player-tab {
  border: none;
  background: #1f1f1f;
  color: #ddd;
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
}

.player-tab:hover,
.player-tab.active-player {
  background: #d87525;
  color: #fff;
}
.watch-box{
  display:grid;
  grid-template-columns:260px 1fr;
  align-items:stretch;
}

.player-area{
  display:flex;
  flex-direction:column;
  min-width:0;
  background:#000;
}

.player-tabs{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  padding:14px;
  background:#101010;
}

.player-tab{
  height:auto;
  border:none;
  background:#1f1f1f;
  color:#ddd;
  padding:11px 16px;
  border-radius:10px;
  cursor:pointer;
  font-weight:700;
}

.player-tab.active-player{
  background:#d87525;
  color:#fff;
}

.player{
  width:100%;
  height:470px;
  background:#000;
}

.player iframe{
  width:100%;
  height:100%;
  display:block;
  border:0;
}

@media(max-width:800px){
  .watch-box{
    grid-template-columns:1fr;
  }
}
/* ===== Fixed Anime Player Layout ===== */

.watch-box {
  margin-top: 35px;
  display: grid !important;
  grid-template-columns: 260px minmax(0, 1fr) !important;
  background: #151515;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 18px 45px rgba(0,0,0,.22);
}

.episodes {
  background: #101010;
  color: white;
  padding: 22px;
  max-height: 545px;
  overflow-y: auto;
}

.episodes h3 {
  margin-bottom: 15px;
  font-size: 20px;
}

.episode-btn {
  width: 100%;
  border: none;
  background: transparent;
  color: #ded8d1;
  padding: 13px 14px;
  border-radius: 10px;
  text-align: left;
  cursor: pointer;
  margin-bottom: 7px;
  font-family: inherit;
  font-weight: 700;
  transition: .25s;
}

.episode-btn:hover,
.episode-btn.active-episode {
  background: #8c4d1c;
  color: white;
}

.player-area {
  display: flex !important;
  flex-direction: column !important;
  min-width: 0;
  background: #000;
}

.player-tabs {
  display: flex !important;
  flex-wrap: wrap;
  gap: 10px;
  padding: 14px;
  background: #101010;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.player-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: #1f1f1f;
  color: #ddd;
  padding: 11px 16px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
  font-family: inherit;
  transition: .25s;
}

.player-tab:hover,
.player-tab.active-player {
  background: #d87525;
  color: #fff;
}

.player {
  width: 100% !important;
  height: 470px !important;
  background: #000;
  display: block !important;
  padding: 0 !important;
}

.player iframe {
  width: 100% !important;
  height: 100% !important;
  display: block;
  border: 0;
  background: #000;
}

.no-video {
  width: 100%;
  height: 470px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

@media (max-width: 800px) {
  .watch-box {
    grid-template-columns: 1fr !important;
  }

  .episodes {
    max-height: none;
  }

  .player {
    height: 320px !important;
  }

  .no-video {
    height: 320px;
  }
}
/* ===== Single Anime Responsive Fix ===== */

@media (max-width: 800px) {
  .detail-box {
    grid-template-columns: 1fr !important;
    padding: 22px !important;
    gap: 22px !important;
  }

  .detail-poster img {
    height: auto !important;
    max-height: none !important;
  }

  .detail-info {
    width: 100% !important;
    min-width: 0 !important;
    display: block !important;
  }

  .detail-info h2 {
    font-size: 30px !important;
    line-height: 1.3;
  }

  .info-list {
    grid-template-columns: 1fr !important;
  }

  .description,
  .description p {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    max-height: none !important;
    overflow: visible !important;
    font-size: 15px;
    line-height: 1.8;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .watch-box {
    grid-template-columns: 1fr !important;
  }

  .episodes {
    max-height: none !important;
  }
}

@media (max-width: 480px) {
  .site-main {
    margin: 20px auto;
    padding: 0 12px;
  }

  .detail-box {
    border-radius: 18px;
    padding: 16px !important;
  }

  .detail-info h2 {
    font-size: 26px !important;
  }

  .description {
    margin-top: 16px;
  }

  .player {
    height: 260px !important;
  }

  .no-video {
    height: 260px !important;
  }
}
.detail-box{

color:white;

background-size:cover;

background-position:center;

position:relative;

overflow:hidden;
}
.anime-banner-box {
  background-size: cover;
  background-position: center;
  color: white;
}

.anime-banner-box .detail-info h2,
.anime-banner-box .info-list p,
.anime-banner-box .description,
.anime-banner-box .description p {
  color: white;
}

.anime-banner-box .info-list p {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(6px);
}

.anime-banner-box .orange-text {
  color: #ffb25a;
}
.anime-banner-box {
  background-blend-mode: normal;
}

.anime-banner-box .detail-info h2 {
  color: #ffffff !important;
  text-shadow: 0 3px 12px rgba(0,0,0,.85);
}
.anime-banner-box .info-list p {
  color: #ffffff !important;
  background: rgba(0,0,0,.45) !important;
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  text-shadow: 0 2px 8px rgba(0,0,0,.7);
}

.anime-banner-box .description,
.anime-banner-box .description p {
  color: #f2f2f2 !important;
  text-shadow: 0 2px 8px rgba(0,0,0,.75);
}

.anime-banner-box .detail-info {
  background: rgba(0,0,0,.28);
  padding: 22px;
  border-radius: 18px;
}
.single-anime-main {
  max-width: 100%;
  width: 100%;
  padding: 0;
  margin-top: 0;
}

.anime-hero {
  width: 100%;
  background-size: cover;
  background-position: center;
  padding: 55px 20px;
}

.anime-hero-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.single-anime-main .watch-box,
.single-anime-main .comments {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}
.main-navigation a{
    color:#222;
    font-weight:600;
    transition:all .35s ease;
    position:relative;
}

.main-navigation a:hover{
    color:#ff8a00;
}

.main-navigation a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:#ff8a00;
    transition: 1s;
}

.main-navigation a:hover::after{
    width:100%;
}
.logo h1,
.logo a,
.site-title{
    transition:.35s ease;
    cursor:pointer;
}

.logo h1:hover,
.logo a:hover,
.site-title:hover{
    color:#ff8a00;
    text-shadow:0 0 15px rgba(255,138,0,.35);
}
.header-search{
  display:flex;
  align-items:center;
  gap:8px;
  background:#fffaf1;
  border:1px solid rgba(216,117,37,.18);
  padding:7px;
  border-radius:14px;
}

.header-search input{
  border:none;
  outline:none;
  background:transparent;
  padding:8px 10px;
  min-width:180px;
  font-family:inherit;
}

.header-search button{
  width:38px;
  height:38px;
  border:none;
  border-radius:10px;
  background:#d87525;
  color:white;
  cursor:pointer;
}

@media(max-width:900px){
  .header-search{
    width:100%;
  }

  .header-search input{
    width:100%;
  }
}