* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'LemonMilk', sans-serif;
  background-color: black;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}


.top-nav {
  font-family: 'LemonMilk', sans-serif;
}

@font-face {
  font-family: 'LemonMilk';
  src: url('LemonMilk.otf') format('truetype');
  font-weight: normal;
  font-style: normal;
}


.top-nav {
  position: fixed; /* Changed from absolute */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999; /* Ensure it's on top */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  background: transparent; /* Or use rgba(0, 0, 0, 0.5) for semi-transparent */
  color: white;

}

.logo-container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-img {
  height: 30px;
  display: none;
}

.logo-text {
  font-family: 'LemonMilk', sans-serif;
  font-size: 1.2rem;
  color: lime;
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  color: lime;
  position: relative;
}


.search-icon,
.burger i {
  font-size: 1.2rem;
  cursor: pointer;
  color: lime !important;
}

.main-content {
  padding-top: 80px;
  text-align: center;
}

/*hero-slider*/

.hero-slider {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

/* Dark overlay on each slide */
.slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

/* Ensure content appears above the overlay */
.slide > * {
  position: relative;
  z-index: 2;
}

.slide.active {
  opacity: 1;
}

@keyframes slideInFromRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-content {
  position: absolute;
  bottom: 30px;
  left: 50px;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  max-width: 92%;
  border-radius: 10px;
  border: none;
  outline: none;
  opacity: 0;
  transform: translateX(100px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.slide.active .slide-content {
  animation: slideInFromRight 0.8s ease-out forwards;
}

.slide-content h1 {
  font-family: 'TheBoldFont', sans-serif;
  font-size: 55px;
  color: #f2f2f2;
  letter-spacing: 2px;
}

.slide-content p {
  font-size: 16px;
  line-height: 1.5;
  color: white;
  font-family: Arial, sans-serif;
  max-height: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: justify;
}

@font-face {
  font-family: 'TheBoldFont';
  src: url('THEBOLDFONT-FREEVERSION.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

.gold-rating {
  color: yellow;
  font-weight: bold;
  font-size: 14px;
}

.gold-rating .stars::after {
  content: '';
}

@media (max-width: 767px) {
  .gold-rating .stars {
    font-size: 0;
    position: relative;
  }

  .gold-rating .stars::before {
    content: "★";
    font-size: 12px;
    color: #FFFF00;
    margin-right: 4px;
  }

  .gold-rating .rating-value {
    font-size: 12px;
    color: white;
  }
}

.imdb-logo {
  height: 20px;
}

.slide-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 10px;
}

.meta-info {
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 4px 10px;
  border-radius: 5px;
  font-size: 0.85rem;
  backdrop-filter: blur(3px);
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.overview {
  font-size: 15px;
  line-height: 1.4;
  margin-bottom: 15px;
}

.play-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  color: white;
  background-color: #e50914;
  cursor: pointer;
  overflow: hidden;
  z-index: 0;
  transition: color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.play-button i {
  z-index: 1;
}

.play-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #ff1e1e, #ff7300);
  z-index: -1;
  transition: width 0.4s ease;
}

.play-button:hover::before {
  width: 100%;
}

.play-button:hover {
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(255, 115, 0, 0.6);
}

/* ========================
   📱 Mobile View: 300px–599px
======================== */
@media (min-width: 300px) and (max-width: 599px) {
  .hero-slider {
    height: 60vh;
    min-height: 320px;
    max-height: 480px;
  }

  .slide-content {
    bottom: 10px;
    left: 5px;
    padding: 10px;
    max-width: 95%;
    text-align: left;
    top: unset;
  }

  .slide-content h1 {
    font-size: 24px;
    letter-spacing: 1px;
  }

  .slide-content p,
  .overview {
    font-size: 12px;
    line-height: 1.4;
    max-height: 100px;
    text-align: justify;
    background: none;
  }

  .play-button {
    padding: 6px 12px;
    font-size: 10px;
    border-radius: 20px;
  }

  .imdb-logo {
    height: 16px;
  }

@media screen and (max-width: 300px) {
  .meta-info {
    font-size: 0.6rem;
    padding: 3px 8px;
    max-width: 90%;           /* Limit width to container */
    overflow: hidden;         /* Hide overflowed text */
    white-space: nowrap;      /* Prevent text wrapping */
    text-overflow: ellipsis;  /* Add "..." */
    display: block;
  }
}

.meta-info:hover {
  overflow: visible;
  white-space: normal;
  background-color: #000; /* Optional */
  z-index: 10;
  position: relative;
}


  .slide-meta {
    font-size: 12px;
    gap: 6px;
  }
}

/* ========================
   📲 Tablet View: 600px–1024px
======================== */
@media (min-width: 600px) and (max-width: 1024px) {
  .hero-slider {
    height: 400px;
  }

  .slide-content {
    top: 140px;
    left: 40px;
    padding: 18px;
    max-width: 80%;
    margin-bottom: 20px;
  }

  .slide-content h1 {
    font-size: 32px;
    letter-spacing: 1.5px;
  }

  .slide-content p,
  .overview {
    font-size: 15px;
    max-height: 110px;
  }

  .play-button {
    padding: 11px 20px;
    font-size: 15px;
  }

  .imdb-logo {
    height: 18px;
  }

  .meta-info {
    font-size: 0.8rem;
  }

  .slide-meta {
    font-size: 13px;
    gap: 8px;
  }
}

/* 📱 Mobile View: 300px–599px */
@media (max-width: 599px) {
  .overview {
    display: -webkit-box;
    -webkit-line-clamp: 3;      /* limit to 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* 📲 Tablet View: 600px–1024px */
@media (min-width: 600px) and (max-width: 1024px) {
  .overview {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}


/*notification icon*/

.notification-icon {
  position: relative;
  cursor: pointer;
}

.notification-badge {
  position: absolute;
  top: -6px;
  right: -10px;
  background: red;
  color: white;
  font-size: 10px;
  padding: 2px 4px;
  border-radius: 50%;
  display: none;
}

.notification-modal {
  width: 300px;
  max-height: 400px;
  overflow: hidden auto; /* allow scrolling only vertically */
  background: #111;
  color: #fff;
  border-radius: 10px;
  position: absolute;
  top: 50px;
  right: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.6);
  display: none;
  z-index: 999;
  padding: 0;
}

.notification-modal::after {
  content: "";
  position: absolute;
  top: -10px; /* Shows above the modal */
  right: 40px; /* Adjust until it aligns under the bell */
  width: 0;
  height: 0;
  z-index: 1000;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 10px solid #111; /* Match your modal background */
  pointer-events: none;
}


.notification-header {
  background: lime;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: bold;
  position: sticky;
  top: 0;
  z-index: 10;
  color: black;
}

.notification-list {
  max-height: 360px;
  overflow-y: auto;
  list-style: none;
  margin: 0;
  padding: 0;

  /* Hide scrollbar - cross-browser */
  scrollbar-width: none;        /* Firefox */
  -ms-overflow-style: none;     /* IE 10+ */
}

.notification-list::-webkit-scrollbar {
  display: none;                /* WebKit (Chrome, Safari) */
}

.notification-modal ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: sans-serif;
}

.notification-modal li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 10px;
  border-bottom: 1px solid #333;
}

.notification-link {
  display: flex;
  gap: 10px;
  color: white;
  text-decoration: none;
  width: 100%;
}

.notification-link:hover {
  background-color: #222;
  border-radius: 5px;
}

.notification-poster {
  width: 80px;
  height: 45px;
  object-fit: cover;
  border-radius: 4px;
}

@media (max-width: 600px) {
  .notification-poster {
    width: 80px;
    height: 45px;
  }
}

@media (max-width: 300px) {
  .notification-poster {
    width: 70px;
    height: 40px;
  }
}


.notification-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 12px;
  gap: 2px;
}

.notification-title {
  font-weight: bold;
  font-size: 13px;
  color: white;
}

.notification-type,
.notification-date {
  color: #bbb;
  font-size: 11px;
  line-height: 1.2;
}

@media (max-width: 600px) {
  .notification-modal {
    width: 90vw;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 8px;
    max-height: 80vh;
  }
}
  .notification-header {
    font-size: 14px;
    padding: 10px 12px;
  }



  .notification-modal li {
    padding: 6px 8px;
    gap: 8px;
  }


  .notification-info {
    font-size: 11px;
  }

  .notification-title {
    font-size: 12px;
  }

  .notification-type,
  .notification-date {
    font-size: 10px;
  }
}



@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

#meowbotWidget {
  position: fixed !important;
  bottom: 24px !important;
  right: 24px !important;
  z-index: 999999 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  pointer-events: auto;
}

.meowbot-chatbox {
  background: rgba(15, 15, 15, 0.95);
  color: #d4ffd4;
  border: 2px solid transparent;
  border-radius: 20px;
  padding: 20px 18px 14px;
  font-family: 'Poppins', sans-serif;
  max-width: 360px;
  width: 100%;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.9);
  display: none;
  margin-bottom: 14px;
  backdrop-filter: blur(10px);
  position: relative;
  animation: slideUp 0.35s ease-out;
  background-clip: padding-box;
}

.meowbot-chatbox::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  border-radius: 22px;
  padding: 2px;
  background: linear-gradient(135deg, lime, #00ffd5, #6aff00);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  z-index: -1;
}

/* Header */
.meowbot-header {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 12px;
  color: lime;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 8px;
  text-align: center;
  font-family: 'LemonMilk';
}

/* Messages Area */
.meowbot-messages {
  max-height: 260px;
  overflow-y: auto;
  margin-bottom: 14px;
  padding-right: 6px;
  scrollbar-width: thin;
  scrollbar-color: #00ff88 transparent;
}

.meowbot-messages::-webkit-scrollbar {
  width: 6px;
}
.meowbot-messages::-webkit-scrollbar-thumb {
  background: #00ff88;
  border-radius: 4px;
}

/* Input Area */
.meowbot-input-area {
  display: flex;
  gap: 10px;
  align-items: center;
}

.meowbot-input-area input {
  flex: 1;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid #333;
  background: #202020;
  color: white;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.meowbot-input-area input:focus {
  border-color: lime;
}

.meowbot-input-area button {
  background: linear-gradient(135deg, #adff2f, #32ff7e);
  color: #111;
  border: none;
  border-radius: 12px;
  padding: 10px 16px;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s ease;
}
.meowbot-input-area button:hover {
  background: linear-gradient(135deg, #c0ff5f, #66ffae);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


#meowbotWidget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column-reverse; /* This makes chatbox appear above */
  align-items: flex-end;
  z-index: 999999;
}


@media (max-width: 600px) {
  .meowbot-chatbox {
    max-width: 260px;
    padding: 10px 8px;
    border-radius: 12px;
    font-size: 13px;
  }

  .meowbot-header {
    font-size: 13px;
    margin-bottom: 6px;
    padding-bottom: 4px;
  }

  .meowbot-messages {
    max-height: 60px;
    margin-bottom: 8px;
    padding-right: 2px;
    font-size: 12px;
  }

  .meowbot-input-area {
    gap: 4px;
    flex-direction: row;
    align-items: stretch;
  }

  .meowbot-input-area input {
    font-size: 12px;
    padding: 7px 9px;
    border-radius: 8px;
  }

  .meowbot-input-area button {
    font-size: 12px;
    padding: 7px 9px;
    border-radius: 8px;
  }
}

#meowbotMic.listening {
  background-color: #e91e63;
  color: white;
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.meowbot-card {
  display: flex;
  background: #1a1a1a;
  border-radius: 10px;
  padding: 10px;
  margin-top: 10px;
  gap: 12px;
  color: white;
}

.meowbot-thumb {
  width: 70px;
  height: 105px;
  object-fit: cover;
  border-radius: 6px;
}

.meowbot-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 14px;
  line-height: 1.4;
}

.meowbot-title a {
  color: #1db954;
  font-weight: bold;
  font-size: 15px;
  text-decoration: none;
}

.meowbot-title a:hover {
  text-decoration: underline;
}

.meowbot-meta {
  color: #ccc;
  margin-top: 2px;
  font-size: 13px;
}

.meowbot-chatbox {
  background: rgba(10, 10, 10, 0.95);
  border-radius: 18px;
  padding: 16px;
  color: white;
  font-family: 'Poppins', sans-serif;
  width: 320px;
  height: 410px; /* fixed height */
  display: none;
  flex-direction: column;
  position: relative;
}

/* Mobile view for 300px screens */
@media (max-width: 1100px) {
  .meowbot-chatbox {
    width: 90vw;     /* or 100% minus padding if you prefer */
    height: 320px;   /* reduce height slightly to fit small screens */
    padding: 12px;
  }
}


.meowbot-messages {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 8px 0;
  max-height: 400px;
}

.meowbot-msg {
  max-width: 100%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.4;
  word-wrap: break-word;
  animation: fadeIn 0.3s ease;
}

/* Bot reply - left side */
.meowbot-msg.bot {
  align-self: flex-start;
  background-color: #2a2a2a;
  color: #e0ffe0;
  border-bottom-left-radius: 4px;
}

/* User reply - right side */
.meowbot-msg.user {
  align-self: flex-end;
  background-color: #0078ff;
  color: #fff;
  border-bottom-right-radius: 4px;
}

.meowbot-input-area {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
}

.meowbot-input-area input {
  flex: 1;
  background: #222;
  color: #fff;
  border: 1px solid #444;
  border-radius: 20px;
  padding: 8px 14px;
  font-size: 14px;
  outline: none;
}

.meowbot-input-area button {
  background: transparent;
  color: #fff;
  border: none;
  font-size: 18px;
  cursor: pointer;
  padding: 6px;
  transition: color 0.2s;
}

.meowbot-input-area button:hover {
  color: #00ffcc;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}


#genreSelect {
  background-color: #1e1e1e;
  color: #e0ffe0;
  border: 1px solid #444;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  outline: none;
  margin-bottom: 8px;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20fill%3D%22%23e0ffe0%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20width%3D%2224%22%20xmlns%3D%22http://www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M7%2010l5%205%205-5z%22/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
}


.meowbot-toggle {
  width: 42px;
  height: 42px;
  background-color: #4a4a4a;
  border-radius: 50%;
  color: lime;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  border: 1.5px solid lime;
}

@media (max-width: 600px) {
  .meowbot-toggle {
    width: 36px;
    height: 36px;
    font-size: 16px;
    border-width: 1.5px;
	margin-bottom: 45px;
	margin-right: -15px;
  }
}

@media screen and (max-width: 480px) {
  .meowbot-input-area {
    display: flex;
    flex-wrap: nowrap; /* Ensure everything stays in one row */
    justify-content: space-between;
    align-items: center;
    padding: 6px;
    gap: 4px;
    position: relative;
    width: 100%;
    box-sizing: border-box;
  }

  .meowbot-input-area input[type="text"] {
    flex: 1;
    padding: 9px 12px;
    font-size: 13px;
    border-radius: 16px;
    border: 1px solid #555;
    background: #222;
    color: white;
    min-width: 0; /* Prevents growing too wide */
  }

  .meowbot-input-area button {
    flex: 0 0 auto;
    font-size: 16px;
    padding: 8px;
    border-radius: 50%;
    border: none;
    background: #333;
    color: white;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .meowbot-input-area button i {
    font-size: 15px;
  }
}

/* Watchlist Button */
.watchlist-btn {
  margin-top: 8px;
  padding: 6px 10px;
  background-color: #ff4081;
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 13px;
  cursor: pointer;
  transition: background-color 0.2s;
}
.watchlist-btn:hover {
  background-color: #e91e63;
}

/* MeowBot Dark Theme */
body.meowbot-dark,
body.meowbot-dark .meowbot-chatbox {
  background: #111 !important;
  color: #fff !important;
}
body.meowbot-dark .meowbot-msg.bot {
  background-color: #222;
}
body.meowbot-dark .meowbot-msg.user {
  background-color: #333;
}
body.meowbot-dark .watchlist-btn {
  background-color: #00acc1;
}
body.meowbot-dark .watchlist-btn:hover {
  background-color: #0097a7;
}

/* Mobile Fixes */
@media (max-width: 320px) {
  .meowbot-chatbox {
    width: 280px !important;
    max-height: 400px;
  }

  .meowbot-msg {
    font-size: 13px;
  }

  .meowbot-title a {
    font-size: 14px;
  }

  .watchlist-btn {
    font-size: 12px;
    padding: 5px 8px;
  }
}

#clearChat,
#clearChat i {
  color: white !important;
}


.see-all-btn {
  background-color: #444;
  color: white;
  padding: 8px 14px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  margin-top: 10px;
  transition: background 0.3s;
}
.see-all-btn:hover {
  background-color: #666;
}

#themeToggle {
  position: absolute;
  top: 8px;
  right: 8px;
  background: transparent;
  border: none;
  font-size: 20px;
  cursor: pointer;
  z-index: 1000;
  padding: 4px;
  transition: transform 0.2s ease;
}

#themeToggle:hover {
  transform: scale(1.1);
}

/* ✅ Mobile view: fix it inside the chatbox corner */
@media (max-width: 600px) {
  .meowbot-chatbox {
    position: relative; /* Ensure chatbox is positioned for absolute child */
  }

  #themeToggle {
    position: absolute;
    top: 0;
    right: 10px;
    font-size: 22px;
    z-index: 9999;
  }
}

.meowbot-suggestions {
  background: #1c1c1c;
  color: white;
  border-radius: 8px;
  margin: 8px 12px;
  padding: 10px;
  font-size: 14px;
  line-height: 1.6;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  max-height: 220px;
  overflow-y: auto;
}
.meowbot-suggestions div {
  padding: 6px 10px;
  cursor: pointer;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.meowbot-suggestions div:last-child {
  border-bottom: none;
}
.meowbot-suggestions div:hover {
  background: #333;
}
.meowbot-card {
  background: #1e1e1e;
  border-radius: 12px;
  margin: 10px 0;
  padding: 10px;
  display: flex;
  color: white;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
  position: relative;
}

.meowbot-thumb {
  width: 100px;
  border-radius: 10px;
  margin-right: 10px;
}

.meowbot-info {
  flex-grow: 1;
}

.meowbot-title {
  font-size: 16px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pin-btn {
  background: transparent;
  color: gold;
  border: none;
  cursor: pointer;
  font-size: 18px;
  margin-left: 8px;
}

.emoji-feedback {
  margin-top: 8px;
}

.emoji-feedback button {
  font-size: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  margin-right: 5px;
}

.emoji-feedback button:hover {
  transform: scale(1.2);
}

/* Default: mobile-first, burger menu at bottom */
.navburger-menu {
  display: block;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) rotateX(-90deg);
  transform-origin: bottom;
  z-index: 1000;
  background-color: #000;
  padding: 10px;
  border-top: 2px solid lime;
  border-bottom: none;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.3s ease;
  backface-visibility: hidden;
  width: 100%;
  max-width: 300px;
}

.navburger-menu.active {
  transform: translateX(-50%) rotateX(0deg);
  opacity: 1;
  display: flex;
  justify-content: center;
}

.navburger-list {
  display: flex;
  flex-direction: row;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.navburger-list li {
  margin: 0;
}

.navburger-list a {
  color: lime;
  text-decoration: none;
  font-family: 'LemonMilk', sans-serif;
  font-size: 14px;
  padding: 4px 6px;
  border-radius: 4px;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.navburger-list a:hover {
  background-color: white;
  color: black;
}

.navburger-list a i {
  font-size: 20px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navburger-list a span {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

.navburger-list a:hover span {
  opacity: 1;
  visibility: visible;
}

#burger {
  cursor: pointer;
}

/* Icon + floating label */
.icon-label {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: lime;
  font-size: 17px;
  text-decoration: none;
  gap: 12px;
}

.icon-label i,
.icon-label svg {
  font-size: 20px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  fill: lime;
}

.icon-label span {
  position: absolute;
  top: 28px;
  background-color: rgba(0, 0, 0, 0.85);
  color: white;
  padding: 3px 6px;
  border-radius: 4px;
  font-size: 11px;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  transition: opacity 0.3s ease;
  z-index: 100;
}

.icon-label:hover span {
  opacity: 1;
}


.more-dropdown {
  position: relative;
  display: inline-block;
}

.more-menu {
  display: none;
  position: absolute;
  background: #111;
  color: #fff;
  padding: 10px;
  border-radius: 8px;
  list-style: none;
  z-index: 999;
  min-width: 160px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.more-menu.show {
  display: block;
}

.more-menu li a {
  color: lime;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}

/* Responsive adjustments */
@media (max-width: 599px) {
  .more-menu {
    bottom: 100%;
    top: auto;
    left: -20px;
    transform: none;
    margin-bottom: 10px;
    padding: 8px;
    min-width: 140px;
  }

  .more-menu li a {
    font-size: 12px;
    gap: 6px;
  }

  .more-menu li a i {
    font-size: 14px !important;
  }
}

@media (min-width: 600px) {
  .more-menu {
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    bottom: auto;
    margin-top: 12px;
  }

  .more-menu li a {
    font-size: 14px;
    gap: 8px;
  }

  .more-menu li a i {
    font-size: 16px !important;
  }
}


/* Small devices (max-width: 599px) */
@media (max-width: 599px) {
  .navburger-menu {
    width: 280px;
    max-width: 100vw;
    top: auto;
    bottom: 0;
    border-top: 2px solid lime;
    border-bottom: none;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    transform-origin: bottom;
  }

  .navburger-list a i,
  .icon-label i {
    font-size: 18px;
    width: 22px;
    height: 22px;
  }

  .icon-label span {
    top: -26px;
    font-size: 11px;
  }
}

/* Tablet & Desktop (min-width: 600px) */
@media (min-width: 600px) {
  .navburger-menu {
    top: 0;
    bottom: auto;
    transform: translateX(-50%) rotateX(-90deg);
    transform-origin: top;
    border-top: none;
    border-bottom: 2px solid lime;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    max-width: 300px;
  }

  .navburger-menu.active {
    transform: translateX(-50%) rotateX(0deg);
  }

  .icon-label span {
    top: 28px;
  }
}

/* Optional: Responsive adjustments */
@media (max-width: 768px) {
  .navburger-menu {
    width: 100%;
  }
}

/* === Section Title === */
.carousel-title {
  font-size: 14px;
  font-weight: bold;
  color: white;
  margin: 20px 16px 10px;
}

/* === Carousel Outer Wrapper === */
.carousel-container {
  position: relative;
  background-color: transparent;
  margin-bottom: 10px;
  padding: 0;
  -webkit-overflow-scrolling: touch; /* iOS smooth scrolling */
  overflow-x: hidden; /* prevent iOS double scroll */
}

/* === Carousel Buttons Floating on Top === */
.carousel-buttons {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  pointer-events: none;
  z-index: 10;
}

.carousel-btn {
  pointer-events: all;
  position: relative;
  width: 35px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  font-size: 28px;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 11;
  -webkit-tap-highlight-color: transparent; /* Remove tap highlight on iOS */
}

.carousel-btn.left {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
}

.carousel-btn.right {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
}

/* === Scrollable Carousel === */
.carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  align-items: flex-start;
  padding: 16px 40px;
  -webkit-overflow-scrolling: touch; /* iOS scroll smoothness */
}

.carousel::-webkit-scrollbar {
  display: none;
}

/* === Carousel Item === */
.carousel-item {
  flex: 0 0 auto;
  width: 300px;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backface-visibility: hidden; /* Prevents flickering on iOS */
  -webkit-transform: translateZ(0); /* Triggers GPU layer */
}

.carousel-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  z-index: 1;
  position: relative;
  transition: transform 0.3s ease;
  -webkit-transform: translateZ(0); /* iOS flicker fix */
}

.carousel-item:hover img {
  transform: scale(1.05);
}

/* === Title Logo Overlay === */
.title-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  pointer-events: none;
  max-width: 90%;
}

.title-logo {
  max-height: 90px;
  max-width: 100%;
  object-fit: contain;
}

.fallback-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: white;
  text-shadow: 2px 2px 4px #000;
  margin: 0;
}

/* === Mobile View === */
@media (max-width: 599px) {
  .carousel-container {
    margin-bottom: -20px;
  }

  .carousel-item {
    width: 160px;
    height: 100px;
  }

  .carousel-title {
    font-size: 10px;
    margin: 12px 12px 8px;
    color: #ccc;
  }

  .carousel-btn {
    display: none;
  }

  .carousel {
    padding: 12px;
    gap: 12px;
  }

  .title-logo {
    max-height: 60px;
  }

  .fallback-title {
    font-size: 10px;
  }
}

/* === Tablet View === */
@media (min-width: 600px) and (max-width: 1023px) {
  .carousel-item {
    width: 240px;
    height: 140px;
  }

  .carousel-title {
    font-size: 16px;
    margin: 16px 14px 8px;
    color: #ddd;
  }

  .carousel-btn {
    font-size: 24px;
    width: 30px;
    padding: 4px;
  }

  .carousel {
    padding: 14px 30px;
    gap: 14px;
  }

  .title-logo {
    max-height: 70px;
  }

  .fallback-title {
    font-size: 14px;
  }
}

/* === Desktop XL (Optional) === */
@media (min-width: 1280px) {
  .carousel-item {
    width: 320px;
    height: 200px;
  }

  .title-logo {
    max-height: 100px;
  }
}


/*hero slider Content*/

.slide-background-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1));
  z-index: 1;
}


.show-logo {
  max-width: 300px;
  height: auto;
  margin-bottom: 10px;
}



.type-badge {
  background-color: rgba(0, 0, 0, 0.5); /* semi-transparent black */
  color: #fff;
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 5px;
  backdrop-filter: blur(3px); /* optional for glassy effect */
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

@media screen and (max-width: 300px) {
  .type-badge {
    font-size: 0.6rem;
  }
}

.heading-with-chevron {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
}

.heading-with-chevron i {
  font-size: 1rem;
  color: #fff;
}

/* Tablet: up to 1024px */
@media (max-width: 1024px) {

  .heading-with-chevron {
    font-size: 1.2rem;
  }

  .heading-with-chevron i {
    font-size: 0.9rem;
  }
}

  .heading-with-chevron {
    font-size: 1rem;
  }

  .heading-with-chevron i {
    font-size: 0.8rem;
  }
}

.fallback-title.hidden {
  display: none;
}

.media-type-label {
  position: absolute;
  top: 6px;
  right: 6px;
  background-color: red;
  color: #fff;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 3px;
  text-transform: uppercase;
  z-index: 2;
  pointer-events: none;
  font-family: 'Arial';
}

.poster-wrapper {
  position: relative;
}

/* Tablet view (768px and below) */
@media (max-width: 768px) {
  .media-type-label {
    font-size: 0.6rem;
    padding: 1.5px 5px;
  }
}

/* Mobile view (480px and below) */
@media (max-width: 480px) {
  .media-type-label {
    font-size: 0.5rem;
    padding: 1px 4px;
  }
}


.disclaimer-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 30px;
  background-color: #fff8f1;
  border: 1px solid #f5c29d;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  font-family: 'Segoe UI', Roboto, sans-serif;
  color: #333;
  line-height: 1.7;
  animation: fadeIn 0.6s ease-in;
  margin-top: 50px;
}

.disclaimer-container h1 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #cc6600;
}

.disclaimer-container p {
  margin-bottom: 16px;
  font-size: 0.95rem;
  text-align: justify;
}

.disclaimer-container strong {
  color: #000;
}

.disclaimer-container a {
  color: #cc5500;
  text-decoration: underline;
}

.disclaimer-container a:hover {
  text-decoration: none;
}

/* Tablet (width: 601px to 900px) */
@media (max-width: 900px) {
  .disclaimer-container {
    padding: 25px;
    margin: 50px 20px;
  }

  .disclaimer-container h1 {
    font-size: 1.4rem;
  }

  .disclaimer-container p {
    font-size: 0.9rem;
  }
}

/* Mobile (width: 600px and below) */
@media (max-width: 600px) {
  .disclaimer-container {
    padding: 20px;
    margin: 50px 10px;
	
  }

  .disclaimer-container h1 {
    font-size: 1rem;
  }

  .disclaimer-container p {
    font-size: 0.85rem;
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/*burgermenu*/
.meowflex-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background-color: black;
  padding: 10px 15px;
  border-left: 2px solid lime;
  border-right: 2px solid lime;
  border-bottom: 2px solid lime;
  border-top: none;
  border-radius: 0 0 30px 30px;
}

/* Icon list layout */
.meowflex-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.meowflex-icon-label {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: lime;
  cursor: pointer;
}

.meowflex-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(72%) sepia(92%) saturate(431%) hue-rotate(53deg) brightness(102%) contrast(101%);
}

/* Hover label */
.meowflex-icon-label span {
  position: absolute;
  top: 40px;
  background-color: black;
  color: lime;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 11px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateY(5px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  z-index: 1001;
}

.meowflex-icon-label:hover span {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* MOBILE VIEW: ≤ 500px */
@media (max-width: 500px) {
  .meowflex-menu {
    top: auto;
    bottom: 0;
    left: 0;
    transform: none;
    width: 100%;
    padding: 10px 15px;
    border-top: 2px solid lime;
    border-left: 2px solid lime;
    border-right: 2px solid lime;
    border-bottom: none; /* Removed bottom border */
    border-radius: 30px 30px 0 0;
  }

  .meowflex-list {
    justify-content: space-around;
    gap: 10px;
    flex-wrap: wrap;
  }

  .meowflex-icon {
    width: 22px;
    height: 22px;
  }

  .meowflex-icon-label span {
    top: 30px;
    font-size: 10px;
  }
}


/* TABLET VIEW: 501px–1024px (same as desktop) */
@media (min-width: 501px) and (max-width: 1024px) {
  .meowflex-menu {
    top: 0;
    bottom: auto;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    padding: 10px 15px;
    border-left: 2px solid lime;
    border-right: 2px solid lime;
    border-bottom: 2px solid lime;
    border-top: none;
    border-radius: 0 0 30px 30px;
  }

  .meowflex-list {
    justify-content: center;
    gap: 20px;
  }

  .meowflex-icon {
    width: 28px;
    height: 28px;
  }

  .meowflex-icon-label span {
    top: 40px;
    font-size: 11px;
  }
}


/*scrolling*/
/* === Mobile Scrolling Performance Boost === */

/* Enable smooth scroll behavior globally */
html {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

/* GPU acceleration on carousels, sliders, and scrollable areas */
.carousel-container,
.carousel-item,
.poster-wrapper,
.slide,
#mainContent {
  will-change: transform, opacity;
  transform: translateZ(0);
  backface-visibility: hidden;
  perspective: 1000px;
}

/* Optimize transitions */
.slide,
.poster-wrapper {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Prevent jank when hover effects apply */
.poster-wrapper img {
  image-rendering: -webkit-optimize-contrast;
  backface-visibility: hidden;
}

/* Lazy loading image defaults */
img[loading="lazy"] {
  content-visibility: auto;
  contain-intrinsic-size: auto 200px;
}

.logo-text {
  font-family: 'LemonMilk', sans-serif;
  font-size: 1.2rem;
  color: lime;
}

/* Mobile view: reduce font size for small screens */
@media (max-width: 600px) {
  .logo-text {
    font-size: 0.9rem;
  }
}

.logo-link {
  text-decoration: none;
  color: inherit; /* Optional: keeps the text color consistent */
}
