
/* ---------------------- */
/* GLOBAL BACKGROUND      */
/* ---------------------- */
body {
  background: #06000c;
  font-family: "Inter", Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: white;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(transparent 0%, rgba(160,0,255,0.06) 100%),
    repeating-linear-gradient(45deg, #210042 0 2px, transparent 2px 50px);
  animation: gridMove 16s linear infinite;
  z-index: -1;
  opacity: 0.5;
}

@keyframes gridMove {
  0% { transform: translateY(0px); }
  100% { transform: translateY(80px); }
}

/* ---------------------- */
/* NAVIGATION BAR         */
/* ---------------------- */
nav {
  width: 100%;
  background: rgba(30,0,60,0.7);
  backdrop-filter: blur(14px);
  padding: 15px 0;
  display: flex;
  justify-content: center;
  gap: 50px;
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(200,100,255,0.25);
}
nav a {
  color: #f0d3ff;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}
nav a:hover {
  color: white;
  text-shadow: 0 0 15px #d580ff,0 0 25px #aa55ff,0 0 40px #f5a3ff;
  transform: scale(1.05);
}

/* ---------------------- */
/* MAIN CONTAINER         */
/* ---------------------- */
.container {
  max-width: 1100px;
  margin: 60px auto;
  background: rgba(60,0,120,0.35);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(200,100,255,0.3);
  animation: fadeIn 1s ease;
}

@keyframes fadeIn {
  from {opacity:0; transform:translateY(20px);}
  to {opacity:1; transform:translateY(0);}
}

.title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  text-shadow: 0 0 20px #d580ff;
  margin-bottom: 30px;
}

/* FORM */
.review-form {
  background: rgba(80,0,140,0.4);
  padding: 25px;
  border-radius: 15px;
  margin-bottom: 35px;
  box-shadow: 0 0 20px rgba(180,0,255,0.3);
}

.review-form input,
.review-form textarea,
.review-form select {
  width: 100%;
  padding: 12px;
  margin: 8px 0 18px 0;
  border-radius: 10px;
  border: none;
  background: rgba(255,255,255,0.1);
  color: white;
  font-size: 1rem;
}

.review-form button {
  width: 100%;
  padding: 12px;
  background: #d580ff;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: bold;
  color: #2c0047;
  cursor: pointer;
  transition: 0.3s;
}

.review-form button:hover {
  background: white;
  color: #6600aa;
  box-shadow: 0 0 20px #e699ff;
}

/* SORTING */
.sort-box {
  text-align: center;
  margin-bottom: 30px;
}

.sort-box select {
  padding: 10px;
  background: rgba(150,0,255,0.2);
  color: white;
  border-radius: 10px;
  border: 1px solid #d580ff;
}

/* REVIEW CARDS */
.review {
  background: rgba(50,0,100,0.45);
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 20px;
  border-left: 4px solid #cc66ff;
  animation: fadeIn 0.7s ease;
}

.review-header {
  font-weight: bold;
  font-size: 1.2rem;
}

.review-rating {
  color: #ffd27f;
  margin-bottom: 6px;
}

.review-actions {
  margin-top: 15px;
}

.review-btn {
  padding: 8px 13px;
  margin-right: 8px;
  border-radius: 8px;
  border: none;
  background: rgba(200,100,255,0.25);
  color: #f0caff;
  cursor: pointer;
  transition: 0.3s;
}

.review-btn:hover {
  background: #cc66ff;
}

.likes {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #dca6ff;
}

/* PAGINATION */
.pagination {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.page-btn {
  padding: 10px 15px;
  background: rgba(150,0,255,0.3);
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.page-btn:hover {
  background: #cc66ff;
  color: white;
}

.active-page {
  background: #d580ff;
  color: #2c0047;
}


/* ---------------------- */
/* GLOBAL + BACKGROUND    */
/* ---------------------- */
body {
  background: #080010;
  font-family: "Inter", Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: white;
  overflow-x: hidden;
}

/* Animated neon grid background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(transparent 0%, rgba(160,0,255,0.06) 100%),
    repeating-linear-gradient(45deg, #210042 0 2px, transparent 2px 50px);
  animation: gridMove 16s linear infinite, hueShift 20s linear infinite;
  z-index: -1;
  opacity: 0.5;
}

@keyframes gridMove {
  0% { transform: translateY(0px); }
  100% { transform: translateY(80px); }
}

@keyframes hueShift {
  0%   { filter: hue-rotate(0deg); }
  50%  { filter: hue-rotate(45deg); }
  100% { filter: hue-rotate(0deg); }
}

/* ---------------------- */
/* NAVIGATION BAR         */
/* ---------------------- */
nav {
  width: 100%;
  background: rgba(30, 0, 60, 0.7);
  backdrop-filter: blur(14px);
  padding: 15px 0;
  box-shadow: 0 0 18px rgba(200, 100, 255, 0.4);
  display: flex;
  justify-content: center;
  gap: 50px;
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(200, 100, 255, 0.25);
}

nav a {
  color: #f0d3ff;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

nav a:hover {
  color: white;
  text-shadow: 0 0 15px #d580ff, 0 0 25px #aa55ff, 0 0 40px #f5a3ff;
  transform: scale(1.05);
}

/* ---------------------- */
/* MAIN CONTAINER         */
/* ---------------------- */
.container {
  max-width: 1000px;
  margin: 80px auto 50px;
  padding: 20px;
}

/* ---------------------- */
/* PAGE TITLE             */
/* ---------------------- */
.title {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 700;
  text-shadow: 0 0 15px #d580ff;
  margin-bottom: 40px;
  animation: fadeInUp 1s ease;
}

/* ---------------------- */
/* PERSON CARDS           */
/* ---------------------- */
.person-card {
  background: rgba(60, 0, 120, 0.45);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 30px rgba(200, 100, 255, 0.4);
  padding: 30px;
  margin-bottom: 35px;
  border-left: 4px solid #cc66ff;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInCard 0.8s forwards;
}

.person-card:nth-child(1) { animation-delay: 0.2s; }
.person-card:nth-child(2) { animation-delay: 0.4s; }

@keyframes fadeInCard {
  to { opacity: 1; transform: translateY(0); }
}

.person-name {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.person-role {
  font-size: 1.2rem;
  color: #e7c5ff;
  margin-bottom: 20px;
}

.info-row {
  margin: 10px 0;
  font-size: 1.1rem;
}

.label {
  font-weight: bold;
  color: #dca6ff;
}

.skills {
  margin-top: 15px;
  padding-left: 20px;
}

.skills li {
  margin: 6px 0;
}

/* ---------------------- */
/* MOBILE                 */
/* ---------------------- */
@media (max-width: 600px) {
  .person-card {
    padding: 20px;
  }
  .title {
    font-size: 2rem;
  }
}



/* GLOBAL + BACKGROUND */
body {
  background: #06000c;
  font-family: "Inter", Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: white;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(transparent 0%, rgba(160,0,255,0.06) 100%),
    repeating-linear-gradient(45deg, #210042 0 2px, transparent 2px 50px);
  animation: gridMove 16s linear infinite;
  z-index: -1;
  opacity: 0.5;
}

@keyframes gridMove {
  0% { transform: translateY(0); }
  100% { transform: translateY(80px); }
}

/* NAVIGATION BAR */
nav {
  width: 100%;
  background: rgba(30,0,60,0.7);
  backdrop-filter: blur(14px);
  padding: 15px 0;
  display: flex;
  justify-content: center;
  gap: 50px;
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(200,100,255,0.25);
}

nav a {
  color: #f0d3ff;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

nav a:hover {
  color: white;
  text-shadow: 0 0 15px #d580ff, 0 0 25px #aa55ff, 0 0 40px #f5a3ff;
  transform: scale(1.05);
}

/* MAIN CONTAINER */
.container {
  max-width: 1200px;
  margin: 80px auto 50px;
  padding: 20px;
}

/* PAGE TITLE */
.title {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 700;
  text-shadow: 0 0 15px #d580ff;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease;
}

/* VIDEO SLOT */
.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  margin-bottom: 50px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(200, 100, 255, 0.4);
  background: rgba(60,0,120,0.35);
  backdrop-filter: blur(12px);
  animation: fadeIn 1.2s ease;
}

.video-wrapper iframe,
.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 20px;
}

/* ANIMATIONS */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* BACKGROUND + GLOBAL */
body {
  background: #06000c;
  font-family: "Inter", Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: white;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(transparent 0%, rgba(160,0,255,0.06) 100%),
    repeating-linear-gradient(45deg, #210042 0 2px, transparent 2px 50px);
  animation: gridMove 16s linear infinite;
  z-index: -1;
  opacity: 0.5;
}

@keyframes gridMove {
  0% { transform: translateY(0); }
  100% { transform: translateY(80px); }
}

/* NAVIGATION BAR */
nav {
  width: 100%;
  background: rgba(30,0,60,0.7);
  backdrop-filter: blur(14px);
  padding: 15px 0;
  display: flex;
  justify-content: center;
  gap: 50px;
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(200,100,255,0.25);
}

nav a {
  color: #f0d3ff;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  transition: 0.3s ease;
}

nav a:hover {
  color: white;
  text-shadow: 0 0 15px #d580ff, 0 0 25px #aa55ff, 0 0 40px #f5a3ff;
  transform: scale(1.05);
}

/* PAGE TITLE */
.title {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 20px;
  font-size: 2.6rem;
  font-weight: 700;
  text-shadow: 0 0 15px #d580ff;
  animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* FAQ SECTION WRAPPER */
.faq-section {
  max-width: 1100px;
  margin: 20px auto 80px auto;
  padding: 10px;
  animation: fadeIn 1.2s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* EACH QUESTION BLOCK */
.faq-item {
  background: rgba(60,0,120,0.45);
  border-radius: 18px;
  backdrop-filter: blur(12px);
  border-left: 4px solid #cc66ff;
  margin-bottom: 18px;
  padding: 20px 25px;
  box-shadow: 0 0 25px rgba(200,100,255,0.35);
  cursor: pointer;
  transition: 0.3s ease;
}

.faq-item:hover {
  transform: scale(1.02);
  box-shadow: 0 0 35px rgba(210,120,255,0.45);
}

/* QUESTION TEXT */
.faq-question {
  font-size: 1.3rem;
  font-weight: 700;
  color: #f2d4ff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ANSWER (HIDDEN BY DEFAULT) */
.faq-answer {
  margin-top: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #e7c5ff;
  display: none;
}

/* ROTATING ARROW */
.arrow {
  transition: transform 0.3s;
}

.arrow.open {
  transform: rotate(90deg);
}



/* ---------------------- */
/* GLOBAL + BACKGROUND    */
/* ---------------------- */
body {
  background: #06000c;
  font-family: "Inter", Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: white;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(transparent 0%, rgba(160,0,255,0.06) 100%),
    repeating-linear-gradient(45deg, #210042 0 2px, transparent 2px 50px);
  animation: gridMove 16s linear infinite;
  z-index: -1;
  opacity: 0.5;
}

@keyframes gridMove {0%{transform:translateY(0)}100%{transform:translateY(80px)}}

/* NAVIGATION BAR */
nav {
  width: 100%;
  background: rgba(30,0,60,0.7);
  backdrop-filter: blur(14px);
  padding: 15px 0;
  display: flex;
  justify-content: center;
  gap: 50px;
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(200,100,255,0.25);
}
nav a {
  color: #f0d3ff;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}
nav a:hover {
  color: white;
  text-shadow: 0 0 15px #d580ff,0 0 25px #aa55ff,0 0 40px #f5a3ff;
  transform: scale(1.05);
}

/* MAIN CONTAINER */
.container {
  max-width: 1700px;
  width: 95%;
  margin: 80px auto 50px;
  padding: 20px;
}

/* PAGE TITLE */
.title {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 700;
  text-shadow: 0 0 15px #d580ff;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease;
}

/* DESCRIPTION BOX */
.description-box {
  max-width: 1100px;
  margin: 0 auto 50px auto;
  padding: 20px 25px;
  background: rgba(60,0,120,0.35);
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(200,100,255,0.3);
  color: #e7c5ff;
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: center;
  animation: fadeIn 1.2s ease;
}

/* FILM CARDS */
.card {
  display: flex;
  background: rgba(60,0,120,0.45);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 30px rgba(200,100,255,0.4);
  margin-bottom: 30px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInCard 0.8s forwards;
}

.card img {
  width: 250px;
  height: 150px;
  object-fit: cover;
}

.card-info {
  padding: 20px;
  flex: 1;
}

.card-info h3 {
  margin: 0 0 10px 0;
  font-size: 1.5rem;
}

.card-info p {
  margin: 5px 0;
  font-size: 1rem;
  color: #e7c5ff;
}

.card-info a {
  display: inline-block;
  margin-top: 10px;
  color: #d580ff;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.card-info a:hover {
  color: white;
  text-shadow: 0 0 10px #cc66ff;
}

/* ANIMATIONS */
@keyframes fadeInCard { to {opacity:1; transform:translateY(0);} }
@keyframes fadeInUp { from {opacity:0; transform:translateY(20px);} to {opacity:1; transform:translateY(0);} }
@keyframes fadeIn { from{opacity:0; transform:translateY(10px);} to{opacity:1; transform:translateY(0);} }

/* STAGGER DELAY */
.card:nth-child(1){animation-delay:0.2s;}
.card:nth-child(2){animation-delay:0.4s;}
.card:nth-child(3){animation-delay:0.6s;}
.card:nth-child(4){animation-delay:0.8s;}
.card:nth-child(5){animation-delay:1s;}
.card:nth-child(6){animation-delay:1.2s;}
.card:nth-child(7){animation-delay:1.4s;}
.card:nth-child(8){animation-delay:1.6s;}
.card:nth-child(9){animation-delay:1.8s;}
.card:nth-child(10){animation-delay:2s;}

/* RESPONSIVE */
@media (max-width: 600px){
  .card { flex-direction: column; align-items: center; }
  .card img { width: 100%; height: auto; }
}


/* ---------------------- */
/* GLOBAL + BACKGROUND    */
/* ---------------------- */
body {
  background: #06000c;
  font-family: "Inter", Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: white;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(transparent 0%, rgba(160,0,255,0.06) 100%),
    repeating-linear-gradient(45deg, #210042 0 2px, transparent 2px 50px);
  animation: gridMove 16s linear infinite;
  z-index: -1;
  opacity: 0.5;
}

@keyframes gridMove {0%{transform:translateY(0)}100%{transform:translateY(80px)}}

/* NAVIGATION BAR */
nav {
  width: 100%;
  background: rgba(30,0,60,0.7);
  backdrop-filter: blur(14px);
  padding: 15px 0;
  display: flex;
  justify-content: center;
  gap: 50px;
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(200,100,255,0.25);
}
nav a {
  color: #f0d3ff;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}
nav a:hover {
  color: white;
  text-shadow: 0 0 15px #d580ff,0 0 25px #aa55ff,0 0 40px #f5a3ff;
  transform: scale(1.05);
}

/* MAIN CONTAINER */
.container {
  max-width: 1700px;
  width: 95%;
  margin: 80px auto 50px;
  padding: 20px;
}

/* PAGE TITLE */
.title {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 700;
  text-shadow: 0 0 15px #d580ff;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease;
}

/* DESCRIPTION BOX */
.description-box {
  max-width: 1100px;
  margin: 0 auto 50px auto;
  padding: 20px 25px;
  background: rgba(60,0,120,0.35);
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(200,100,255,0.3);
  color: #e7c5ff;
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: center;
  animation: fadeIn 1.2s ease;
}

/* FILM CARDS */
.card {
  display: flex;
  background: rgba(60,0,120,0.45);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 30px rgba(200,100,255,0.4);
  margin-bottom: 30px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInCard 0.8s forwards;
}

.card img {
  width: 250px;
  height: 150px;
  object-fit: cover;
}

.card-info {
  padding: 20px;
  flex: 1;
}

.card-info h3 {
  margin: 0 0 10px 0;
  font-size: 1.5rem;
}

.card-info p {
  margin: 5px 0;
  font-size: 1rem;
  color: #e7c5ff;
}

.card-info a {
  display: inline-block;
  margin-top: 10px;
  color: #d580ff;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.card-info a:hover {
  color: white;
  text-shadow: 0 0 10px #cc66ff;
}

/* ANIMATIONS */
@keyframes fadeInCard { to {opacity:1; transform:translateY(0);} }
@keyframes fadeInUp { from {opacity:0; transform:translateY(20px);} to {opacity:1; transform:translateY(0);} }
@keyframes fadeIn { from{opacity:0; transform:translateY(10px);} to{opacity:1; transform:translateY(0);} }

/* STAGGER DELAY */
.card:nth-child(1){animation-delay:0.2s;}
.card:nth-child(2){animation-delay:0.4s;}
.card:nth-child(3){animation-delay:0.6s;}
.card:nth-child(4){animation-delay:0.8s;}
.card:nth-child(5){animation-delay:1s;}
.card:nth-child(6){animation-delay:1.2s;}
.card:nth-child(7){animation-delay:1.4s;}
.card:nth-child(8){animation-delay:1.6s;}
.card:nth-child(9){animation-delay:1.8s;}
.card:nth-child(10){animation-delay:2s;}

/* RESPONSIVE */
@media (max-width: 600px){
  .card { flex-direction: column; align-items: center; }
  .card img { width: 100%; height: auto; }
}



/* ---------------------- */
/* GLOBAL + BACKGROUND    */
/* ---------------------- */
html, body {
  margin: 0;
  padding: 0;
  background: #06000c;
  font-family: "Inter", Arial, sans-serif;
  color: #fff;
  overflow-x: hidden;
}

/* Animated neon grid background with hue shift */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(transparent 0%, rgba(160,0,255,0.06) 100%),
    repeating-linear-gradient(45deg, #210042 0 2px, transparent 2px 50px);
  animation: gridMove 16s linear infinite, hueShift 20s linear infinite;
  z-index: -1;
  opacity: 0.5;
}

@keyframes gridMove {
  0% { transform: translateY(0px); }
  100% { transform: translateY(80px); }
}

@keyframes hueShift {
  0%   { filter: hue-rotate(0deg); }
  50%  { filter: hue-rotate(45deg); }
  100% { filter: hue-rotate(0deg); }
}

/* ---------------------- */
/* NAVIGATION BAR         */
/* ---------------------- */
nav {
  width: 100%;
  background: rgba(30, 0, 60, 0.7);
  backdrop-filter: blur(14px);
  padding: 15px 0;
  box-shadow: 0 0 18px rgba(200, 100, 255, 0.4);
  display: flex;
  justify-content: center;
  gap: 50px;
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(200, 100, 255, 0.25);
}

nav a {
  color: #f0d3ff;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

nav a:hover {
  color: white;
  text-shadow: 0 0 15px #d580ff, 0 0 25px #aa55ff, 0 0 40px #f5a3ff;
  transform: scale(1.05);
}

/* ---------------------- */
/* MAIN CONTAINER         */
/* ---------------------- */
.container {
  max-width: 1700px;
  width: 95%;
  margin: 50px auto;
  background: rgba(50, 0, 90, 0.55);
  backdrop-filter: blur(22px);
  border-radius: 30px;
  padding: 50px 60px;
  box-shadow:
    0 0 40px rgba(180, 0, 255, 0.25),
    inset 0 0 40px rgba(120, 0, 200, 0.3);
  animation: containerFade 0.8s ease;
  position: relative;
  overflow: hidden;
}

/* subtle moving neon light on container */
.container::before {
  content: "";
  position: absolute;
  top: -200px;
  left: -200px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(170,0,255,0.4), transparent 70%);
  animation: floatLight 12s ease-in-out infinite;
  filter: blur(40px);
}

@keyframes floatLight {
  0%   { transform: translate(0,0); }
  50%  { transform: translate(300px,200px); }
  100% { transform: translate(0,0); }
}

@keyframes containerFade {
  from { opacity: 0; transform: translateY(50px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------------------- */
/* LOGO                   */
/* ---------------------- */
.logo-container img {
  width: 200px;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(200, 100, 255, 0.7);
  margin-bottom: 25px;
  animation: fadeInLogo 1s ease-out;
}

@keyframes fadeInLogo {
  from { opacity: 0; transform: scale(0.8); }
  to   { opacity: 1; transform: scale(1); }
}
/* Center logo + text */
.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}

.logo-container img {
  width: 180px;
  height: auto;
}

.website-name {
  margin-top: 10px;
  font-size: 2rem;
  font-weight: 700;
  color: #f0d3ff;
  text-shadow: 0 0 15px #d580ff, 0 0 25px #aa55ff;
  letter-spacing: 1px;
}

/* ---------------------- */
/* WELCOME BOX            */
/* ---------------------- */
.welcome-box {
  background: rgba(140, 0, 240, 0.3);
  padding: 22px 30px;
  border-radius: 18px;
  margin: 30px auto 50px;
  max-width: 1000px;
  font-size: 1.2rem;
  line-height: 1.7;
  color: #f7d7ff;
  box-shadow: 0 0 25px rgba(190, 80, 255, 0.3);
  animation: fadeInText 1.1s ease;
  position: relative;
  overflow: hidden;
}

/* sweeping highlight effect */
.welcome-box::after {
  content: '';
  position: absolute;
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to right, rgba(255,200,255,0.4), rgba(215,128,255,0.4));
  animation: typing 3s steps(40) forwards;
}

@keyframes fadeInText {
  from { opacity: 0; filter: blur(4px); }
  to   { opacity: 1; filter: blur(0); }
}

@keyframes typing {
  to { width: 100%; }
}

/* ---------------------- */
/* FILM & MANGA CARDS     */
/* ---------------------- */
.content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
}

.image-box {
  width: 300px;
  height: 300px;
  background: rgba(100, 0, 170, 0.4);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(150, 0, 255, 0.4);
  transition: all 0.3s ease;
  position: relative;
}

.image-box:hover {
  transform: scale(1.08) rotateY(3deg);
  box-shadow: 0 0 50px rgba(200, 100, 255, 0.9),
              0 0 20px rgba(255, 180, 255, 0.5) inset;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------------------- */
/* MOBILE                  */
/* ---------------------- */
@media (max-width: 600px) {
  .image-box {
    width: 220px;
    height: 220px;
  }
}