/* ################### */
/* Global */
/* ################### */
/* --- Lovelo Font Sections --- */
header .navigation a,
.section-heading span,
.home-content h1 span,
.scroll-indicator span,
.btn,
footer h6,
footer a {
  font-family: 'Lovelo', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  list-style: none;
  outline: none;
  border: none;
  scroll-behavior: smooth;
}

:root {
  --accent: #fff;
  --accent2: #892d0c;
  --bg: #131319;
  --text: #fff;
  --pink: #f59cc2;
  --shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.2);
}

body {
  background: var(--bg);
  color: var(--text);
}

section {
  text-align: center;
}

img {
  width: 100%;
}

p {
  max-width: 500px;
  text-align: center;
  margin: 1rem 0;
  font-size: 1rem;
  font-family: impact;
  margin: 1rem auto;
}

.btn {
  font-family: impact;
  font-size: 1.5rem;
  width: 41%;
  display: inline-block;
  margin: 1rem 0;
  padding: 15px 14px;
  background-color: rgb(45, 45, 45);
  color: whitesmoke;
  transition: 0.2s ease-in-out;
  border-radius: 4px;
}
.btn:hover {
  background-color: var(--pink);
  color: whitesmoke;
  transform: translateY(2px);
}

.section-heading {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (max-width: 768px) {
  .section-heading {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

.section-heading span {
  font-size: 2rem; /* Previously 20px – now ~32px */
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 4px;
  line-height: 3em;
  padding-left: 0.25em;
  padding-bottom: 10px;
}

/* ################### */
/* Header */
/* ################### */
@font-face {
  font-family: 'Lovelo';
  src: url('assets/fonts/Lovelo-Black.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

header {
  position: fixed;
  z-index: 99;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  transition: 0.5s;
}

header.active {
  box-shadow: var(--shadow);
  background-color: #131319;
}

.logo img {
  width: 32px;
  border-radius: 6px;
  opacity: 0.7;
}

.navigation {
  position: relative;
  display: flex;
}

.navigation a {
  color: var(--text);
  padding: 10px 45px;
  margin-right: 1rem;
}
.navigation a:hover,
.navigation a.active {
  background-color: #e4e4e4a3;
  border-radius: 10px;
}

#burger-menu {
  font-size: 2rem;
  float: inline-end;
  color: var(--accent);
  cursor: pointer;
  display: none;
}

/* ################### */
/* Home*/
/* ################### */

.home {
	position: relative;
  padding: 60px;
  width: 100%;
  height: 100vh;
  background-image: url(" assets/images/background.webp");
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  box-shadow: inset 0px 15px 81px -00px rgba(0, 0, 0, 0.5),
    inset 0px -11px 81px 0px rgba(0, 0, 0, 0.5);
  background-attachment: fixed;
  align-items: center;
}

.home-content h1 {
  margin-top: 1rem;
  font-size: clamp(20px, 5vw, 150px);
  position: relative;
  text-align: center;
}
.home-content h1 span {
  color: var(--accent);
  font-family: impact;
}
.home-content p {
  margin-top: 5px;
  font-size: 1rem;
  justify-content: center;
  text-align: center;
  font-family: Impact;
}

/* ################### */
/* New Story */
/* ################### */

.box-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.box-img img {
  width: 80%;
  height: 90%;
  margin-top: 4rem;
  object-fit: cover;
  transition: transform 0.2s ease-in-out;
}

.box:hover .box-img img {
  transform: scale(1.2);
}

.news-container {
  margin-top: 2rem;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* ################### */
/* Video Trailer */
/* ################### */

.videoContainer {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  margin: 0 auto;
}

.videoMP4 {
  width: 100%;
  position: relative;
}

.videoControl {
  width: 100%;
  height: 100%;
}

/* ################### */
/* New Gameplay */
/* ################### */

.slider-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider-container img {
  width: 50%;
  box-shadow: var(--shadow);
}

.swiper-pagination > .swiper-pagination-bullet {
  opacity: 1;
  border: rgb(111, 111, 111) solid 0.5px;
  background-color: transparent;
}
.swiper-pagination > .swiper-pagination-bullet-active {
  background-color: white;
}

/* ################### */
/* Coming Soon */
/* ################### */

.ComingSoon-container {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 600px;
  margin: 1rem auto;
  border: solid 2px rgb(45, 45, 45);
  padding: 30px 30px;
}

.ComingSoon-img img {
  width: 500px;
  height: 50%;
  border-radius: 7px;
  object-fit: contain;
  object-position: center;
  background: no-repeat top / cover;
}

.ComingSoon-content span {
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
}
.ComingSoon-content h1 {
  font-size: 2rem;
  margin: 1rem 0;
  font-family: impact;
}

/* ################### */
/* footer*/
/* ################### */

.footer-logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 2rem 0;
}

.logo-VI {
  max-height: 60px;  /* or 100px if you want them really big */
  height: auto;
  width: auto;
  margin: 1rem;
}

.logos-container {
  margin-top: 2rem;
  display: flex;
  justify-content: space-evenly;
}

.logos-container img {
  width: 30px;
  height: 30px;
}

footer {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, auto));
  gap: 2rem;
  margin-top: 2rem;
  padding: 1rem 5rem;
}

.footer-box {
  display: flex;
  flex-direction: column;
}

.footer-box h6 {
  font-size: 20px;
  margin-bottom: 1rem;
  font-family: impact;
}

.footer-box a {
  color: var(--accent);
  font-family: impact;
}
.footer-box a:hover {
  color: var(--pink);
  transform: translateY(1px);
}

.footer-social {
  display: flex;
  align-items: center;
  column-gap: 1rem;
}
.footer-social .bx {
  padding: 10px;
  color: whitesmoke;
  border-radius: 50px;
  cursor: pointer;
}

.footer-social .bx:hover {
  color: var(--pink);
}

.copy {
  text-align: center;
  font-size: 1rem; /* Previously 0.85rem or 13px — now slightly larger */
  font-family: 'Lovelo', sans-serif;
  color: #ccc;
  padding: 0.75rem 0;
}


/* ################### */
/* Breakpoints*/
/* ################### */

@media screen and (max-width: 998px) {
  header {
    padding: 2rem 1rem;
  }
  .section {
    padding: 50px 4%;
  }
  #burger-menu {
    display: block;
  }

  .navigation {
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: -100%;
    width: 280px;
    min-height: 100vh;
    box-shadow: var(--shadow);
    transition: right 0.2s ease-in-out;
    background: var(--bg);
  }

  .navigation a {
    display: block;
    font-family: Impact;
  }

  .navigation a:hover,
  .navigation a.active {
    color: var(--pink);
    background-color: transparent;
    transform: translateY(2px);
  }

  .navigation.active {
    right: 0;
  }

  .ComingSoon-img img {
    width: 280px;
    position: relative;
    height: 50%;
    border-radius: 7px;
    object-fit: contain;
    object-position: center;
    background: no-repeat top / cover;
  }
}

@media screen and (max-width: 481px) {
	.ComingSoon img {
    max-width: 150px;
  }
  .box,
  .box-img {
    height: 300px;
	.quiz-section {
    padding: 3rem 1rem;
  }

  .quiz-section .section-heading span {
    font-size: 1.5rem;
  }

  .quiz-section .news-para {
    font-size: 1rem;
  }

  .quiz-answer {
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
  }

  .result-hero img {
    width: 150px;
  }
  }

  .home {
    background: url("assets/images/background-mobile.jpg");
    background-position: top;
  }

  .home-content h1 {
    font-size: 20px;
    position: relative;
    text-align: center;
  }
.home-content p {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #e0e0e0;
  font-family: 'Poppins', sans-serif;
}

  .ComingSoon-content h1 {
    font-size: 2rem; /* Previously 2rem with Impact, keeping same unit but enlarging it */
    margin: 1rem 0;
    font-family: impact;
  }

p {
  max-width: 600px;
  text-align: center;
  margin: 1rem auto;
  font-size: 1.125rem; /* Increased for readability */
  font-family: 'Poppins', sans-serif; /* Changed from Impact to a more readable font */
  color: #e0e0e0; /* Brighter text on dark bg */
  line-height: 1.6;
}

  .btn {
    font-size: 1rem;
    width: 60%;
    padding: 10px 10px;
  }

  .copy {
    font-size: 7px;
  }

  .slider-container img {
    width: 90%;
  }
}
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 3;
  pointer-events: none;
  animation: fadeIn 2s ease-out;
}

.scroll-indicator span {
  font-family: 'Lovelo', sans-serif;
  font-size: 16px;
  color: white;
  display: block;
  margin-bottom: 4px;
  animation: pulseText 2s infinite;
}

.arrow-wrapper {
  animation: bounceArrow 2.0s infinite;
}

.arrow-down {
  width: 24px;
  height: 24px;
  border-bottom: 3px solid white;
  border-right: 3px solid white;
  transform: rotate(45deg);
  margin: 0 auto;
}

@keyframes bounceArrow {
  0%   { transform: translateY(0); opacity: 1; }
  50%  { transform: translateY(6px); opacity: 0.6; }
  100% { transform: translateY(0); opacity: 1; }
}

@keyframes pulseText {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.particle-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,192,203,0.4), rgba(186,85,211,0));
  animation: floatParticle 12s infinite ease-in-out;
  opacity: 0;
}

/* Size Variants */
.particle.small {
  width: 6px;
  height: 6px;
}
.particle.medium {
  width: 12px;
  height: 12px;
}
.particle.large {
  width: 18px;
  height: 18px;
}

/* Randomized placement and delay */
.particle:nth-child(1)  { top: 80%; left: 10%; animation-delay: 0s;  opacity: 0.4; }
.particle:nth-child(2)  { top: 85%; left: 20%; animation-delay: 1s;  opacity: 0.3; }
.particle:nth-child(3)  { top: 90%; left: 30%; animation-delay: 2s;  opacity: 0.5; }
.particle:nth-child(4)  { top: 95%; left: 35%; animation-delay: 3s;  opacity: 0.6; }
.particle:nth-child(5)  { top: 75%; left: 40%; animation-delay: 1.5s;opacity: 0.4; }
.particle:nth-child(6)  { top: 80%; left: 60%; animation-delay: 0.5s;opacity: 0.3; }
.particle:nth-child(7)  { top: 85%; left: 65%; animation-delay: 2.5s;opacity: 0.6; }
.particle:nth-child(8)  { top: 90%; left: 68%; animation-delay: 3.5s;opacity: 0.4; }
.particle:nth-child(9)  { top: 95%; left: 72%; animation-delay: 4s;  opacity: 0.3; }
.particle:nth-child(10) { top: 85%; left: 18%; animation-delay: 2s;  opacity: 0.5; }
.particle:nth-child(11) { top: 88%; left: 33%; animation-delay: 1s;  opacity: 0.4; }
.particle:nth-child(12) { top: 92%; left: 22%; animation-delay: 2.8s;opacity: 0.3; }
.particle:nth-child(13) { top: 50%; left: 12%; animation-delay: 0.8s;opacity: 0.5; }
.particle:nth-child(14) { top: 83%; left: 90%; animation-delay: 1.3s;opacity: 0.4; }
.particle:nth-child(15) { top: 77%; left: 95%; animation-delay: 3s;  opacity: 0.6; }
.particle:nth-child(16) { top: 62%; left: 93%; animation-delay: 2.8s;opacity: 0.3; }
.particle:nth-child(17) { top: 60%; left: 95%; animation-delay: 0.8s;opacity: 0.5; }
.particle:nth-child(18) { top: 63%; left: 81%; animation-delay: 1.3s;opacity: 0.4; }
.particle:nth-child(19) { top: 67%; left: 76%; animation-delay: 3s;  opacity: 0.6; }
.particle:nth-child(20) { top: 67%; left: 68%; animation-delay: 3s;  opacity: 0.6; }
.particle:nth-child(21) { top: 72%; left: 73%; animation-delay: 3.8s;opacity: 0.3; }
.particle:nth-child(22) { top: 80%; left: 45%; animation-delay: 4.8s;opacity: 0.5; }
.particle:nth-child(23) { top: 93%; left: 37%; animation-delay: 5.3s;opacity: 0.4; }
.particle:nth-child(24) { top: 57%; left: 28%; animation-delay: 6s;  opacity: 0.7; }
.particle:nth-child(25) { top: 67%; left: 18%; animation-delay: 5s;  opacity: 0.3; }

/* Floating animation */
@keyframes floatParticle {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50% {
    transform: translateY(-80px) scale(1.2);
    opacity: 0.7;
  }
  90% {
    opacity: 0;
  }
  100% {
    transform: translateY(-120px) scale(1);
    opacity: 0;
  }
}
.particle-container {
  transition: opacity 1s ease;
}

.particle-container.hidden {
  opacity: 0;
  pointer-events: none;
}
.background-logo {
  position: absolute;
  bottom: 5%;
  right: 3%;
  width: 100px;
  height: auto;
  background-image: url('assets/images/hobbylogo.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 0;
  opacity: 0.6;
  pointer-events: none;
}
$('.slider-for').slick({
  slidesToShow: 1,
  slidesToScroll: 1,
  arrows: false,
  fade: true,
  asNavFor: '.slider-nav'
});

$('.slider-nav').slick({
  slidesToShow: 5,
  slidesToScroll: 1,
  asNavFor: '.slider-for',
  dots: false,
  centerMode: true,
  focusOnSelect: true
});
.language-selector-floating {
  display: inline-block; /* or flex-column */
  position: absolute;
  top: 16px;
  left: 20px;
}

.language-selector-floating .current-language {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.language-selector-floating .current-language img {
  width: 36px;
  height: auto;
  cursor: pointer;
  border-radius: 4px;
}

.language-selector-floating .language-dropdown {
  display: none;
  position: absolute;
  top: 38px;
  left: 12px;
  transform: none;
  background-color: rgba(0, 0, 0, 0.95);
  padding: 6px;
  border-radius: 8px;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}

.language-selector-floating:hover .language-dropdown {
  display: flex;
}

.language-dropdown img {
  width: 32px;
  height: auto;
  cursor: pointer;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .language-selector-floating {
    top: 12px;
    left: 12px;
  }

  .language-selector-floating img {
    width: 20px;
  }
}

/* ======================== */
/* Unified Paragraph Styling */
/* ======================== */

/* Large sections (story, coming soon) */
.news-para,
.ComingSoon-content p {
  max-width: 800px;
  margin: 1.5rem auto;
  font-size: 1.075rem;
  line-height: 1.8;
  font-family: 'Lovelo', sans-serif;
  color: #eaeaea;
  font-weight: 300;
  letter-spacing: 0.2px;
  text-align: center;
}

/* Footer enhancements */
.footer-box h6 {
  font-size: 1.125rem;
  font-weight: 400;
  font-family: 'Lovelo', sans-serif;
  color: #f1f1f1;
}

.footer-box a {
  font-size: 1rem;
  font-weight: 300;
  font-family: 'Lovelo', sans-serif;
  color: #eaeaea;
  margin-bottom: 6px;
}

/* Smaller copyright */
.copy {
  font-size: 0.85rem;
  color: #aaa;
}
.news-para,
.ComingSoon-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  padding: 0 1rem;
  text-align: center;
}

.footer-box a,
.footer-box h6 {
  font-size: 0.9rem;
  text-align: left;
  padding-left: 0.5rem;
}

.copy {
  font-size: 0.7rem;
}

/* ################### */
/* Quiz Section */
/* ################### */



.quiz-container {
  max-width: 800px;
  margin: 0 auto;
}

.quiz-question {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
}

.quiz-question.active {
  display: flex;
  animation: fadeIn 0.4s ease-in-out;
}

.quiz-answer {
  background-color: #2c2c33;
  color: white;
  font-family: 'Lovelo', sans-serif;
  font-size: 1rem;
  padding: 0.8rem 1.2rem;
  border: 1px solid #555;
  border-radius: 6px;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  transform: scale(1);
}

.quiz-answer:hover {
  transform: scale(1.03);
  background-color: #7e5cbf;
  color: #fff;
  box-shadow: 0 0 10px #7e5cbf;
}


.quiz-result {
  display: none;
  text-align: center;
  padding: 2rem;
  justify-content: center;
  align-items: center;
}

.quiz-result.active {
  display: block;
  animation: fadeIn 0.5s ease-in-out;
}

.result-hero img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  margin: 2rem auto;
  border-radius: 1rem;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
}

.result-hero h3 {
  font-size: 1.5rem;
  margin-top: 1rem;
  font-family: 'Lovelo', sans-serif;
}

#restart-quiz {
  margin-top: 2rem;
  padding: 0.8rem 1.5rem;
  background-color: #2c2c33;
  border: none;
  color: white;
  border-radius: 6px;
  font-family: 'Lovelo', sans-serif;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

#restart-quiz:hover {
  background-color: #7e5cbf;
  color: #fff;
  box-shadow: 0 0 10px #7e5cbf;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}


.quiz-section .news-para {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  color: #ccc;
  font-family: 'Lovelo', sans-serif;
}
.quiz-result h2 {
  font-family: 'Lovelo', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

#hero-name {
  font-family: 'Lovelo', sans-serif;
  font-size: 1.25rem;
  font-weight: bold;
  margin-top: 1rem;
}

#hero-description {
  font-family: 'Lovelo', sans-serif;
  font-size: 1rem;
  margin-top: 0.5rem;
  color: #ccc;
}

.quiz-question h2 {
  font-family: 'Lovelo', sans-serif;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}
.quiz-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75); /* dark overlay for contrast */
  z-index: -1;
}
/* Hide logo by default */
.mobile-logo {
  display: none;
}

/* Show only on mobile */
@media (max-width: 768px) {
  .mobile-logo {
    display: block;
    max-width: 120px;
    margin: 0 auto 1rem;
  }
}
@media screen and (max-width: 768px) {
  .section-heading span {
    font-size: 1.25rem;
    line-height: 1.3;
  }

  .news-para,
  .quiz-question h2,
  .quiz-answer,
  .quiz-result h2,
  #hero-description {
    font-size: 1rem;
  }

  .navigation a {
    font-size: 1rem;
    padding: 1rem;
  }

  .home {
    background-image: url("assets/images/background-mobile.jpg");
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    height: auto;
  }
}
@media (max-width: 768px) {
  .home-content h1 {
    font-size: 1.5rem;
    text-align: center;
    line-height: 1.3;
  }
}

  /* Smaller main heading (home section) */
  .home-content h1 {
    font-size: 1.5rem;
    line-height: 1.2;
    text-align: center;
  }

  /* Section title (e.g. "Which Aura Hero...") */
  .section-heading span {
    font-size: 1.3rem;
    line-height: 1.3;
    text-align: center;
  }

  /* Quiz & paragraph text */
  .news-para,
  .quiz-question h2,
  .quiz-result h2,
  .quiz-answer,
  #hero-description {
    font-size: 1rem;
    line-height: 1.5;
  }



  /* Result image scaled nicely */
  .result-hero img {
    max-width: 80%;
    margin: 1rem auto;
  }

  /* Footer spacing */
  footer {
    padding: 1rem;
    text-align: center;
    gap: 1rem;
    grid-template-columns: 1fr;
  }
}
#burger-menu {
  width: 40px;
  height: auto;
  cursor: pointer;
  display: block;
}

@media screen and (min-width: 769px) {
  #burger-menu {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .quiz-question h2 {
    font-size: 1.1rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    text-align: center;
  }

  .quiz-answer {
    font-size: 0.95rem;
    padding: 0.6rem 1rem;
    margin: 0.4rem auto;
    max-width: 280px;
    width: 90%;
    text-align: center;
    border-radius: 10px;
  }
@media screen and (max-width: 768px) {
  .quiz-answer {
    max-width: 320px;
    width: 90%;
  }
}
  .quiz-result h2 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-align: center;
  }

  #hero-description {
    font-size: 1rem;
    line-height: 1.4;
    padding: 0 1rem;
  }

  #hero-name {
    font-size: 1.2rem;
    margin-top: 1rem;
    text-align: center;
  }

}
/* Hide burger icon by default (desktop) */
#burger-menu {
  display: none;
}
.quiz-section {
  padding: 4rem 1.5rem;
  background-color: #1a1a1f;
  color: var(--text);
  text-align: center;

  background-image: var(--quiz-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 0.5s ease-in-out;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .quiz-section {
    min-height: 100vh; /* only for desktop */
	    padding: 2rem 1rem;
  }
}

/* Fix Trailer spacing issue explicitly */
.trailer {
  padding-bottom: 0 !important; /* Remove extra space at bottom */
  margin-bottom: 0 !important;
}

.trailer .section-heading {
  padding-bottom: 1rem !important; /* Consistent smaller spacing after the heading */
  margin-bottom: 0 !important;
}

.videoContainer {
  margin-bottom: 0 !important; /* ensure video container doesn't add extra spacing */
  padding-bottom: 0 !important;
}

.episode-subtext {
  font-size: 0.75rem;
  color: #ccc;
  text-align: center;
  margin-top: 0.5rem;
  font-family: 'Lovelo', sans-serif;
  letter-spacing: 1px;
  opacity: 0.8;
}
  .quiz-section {
    padding: 2rem 1rem !important;
    min-height: auto !important;
    overflow: hidden;
  }
  .quiz-question {
    padding: 1rem;
    gap: 1rem;
  }
  .quiz-question h2 {
    font-size: 1.2rem;
    line-height: 1.4;
    text-align: center;
    margin-bottom: 1rem;
  }
  .quiz-answer {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    margin: 0.5rem auto;
    width: 100%;
    max-width: 90%;
    border-radius: 8px;
  }
  .quiz-result {
    padding: 2rem 1rem;
  }
  .quiz-result h2 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
}
.language-selector-floating {
  transition: opacity 0.5s ease;
  opacity: 1;
  pointer-events: auto;
}

.language-selector-hidden {
  opacity: 0;
  pointer-events: none;
}
