:root {
  --accent-color: rgba(0, 102, 204, 0.9);
  --bg-color: #ffffff;
  --text-color: #000000;
  --subtext-color: #666;
}

body {
  background-color: rgb(255, 255, 255); /* light blue with 15% opacity */
  color: rgb(0, 0, 0); /* white text for good contrast */
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  text-align: center;
  min-height: 100vh;
  padding-top: 76px;

}
@media (max-width: 768px) {
  body {
    padding-top: 46px; /* only header on mobile */
  }
}


/* Hero/Slideshow Section */
/* Hero/Slideshow Section - Aspect Ratio Fix */
.slideshow-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: #000;
  aspect-ratio: 16 / 9; /* Maintain consistent height */
}

.slide-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Stack slides on top of each other */
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.3s ease-in-out;
  z-index: 0;
  pointer-events: none;
}

/* Visible slide */
.slide.active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}

/* Background video or image */
.slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.slide-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgb(0, 0, 0), rgba(0, 0, 0, 0.233) 80%), 
    linear-gradient(to top, rgb(0, 0, 0) 5%, rgba(0, 0, 0, 0.034) 50%);
  display: flex;
  align-items: center;  /* align vertically to top */
  justify-content: flex-start; /* align horizontally to left */
  padding: 10vw 4vw; /* adjust left/right padding, but minimal top padding */
  z-index: 2;
}


.hero-content {
  max-width: 700px;
  color: #fff;
}

.Spotlight {
  font-size: 1.5vw;
  color: #4d9dff;
  margin-bottom: 1em;
}


.anime-title {
  font-size: 3.5vw;
  text-transform: uppercase;
  margin-bottom: 0.5em;
  font-weight: bold;
  line-height: 1.2;

}

.anime-description {
  font-size: 1.7vw;
  line-height: 1.5;
  margin-bottom: 1em;
  text-align: left;
  max-width: 600px;
  padding-right: 1rem;
}





@media (max-width: 768px) {
  .hero-content {
    padding: 6vw 4vw; /* reduce padding */
 
  }
  .Spotlight {
    font-size: 3vw; /* scale for mobile */
  }
  .anime-title {
    font-size: 4vw;
  }
  .anime-description {
    font-size: 4vw;
    display: block; /* allow it back in mobile if needed */
    max-width: 90%;
  }


}



/* Hide on small screens */
@media (max-width: 768px) {
  .anime-description {
    display: none;
  }
}

.hero-content {
  max-width: 700px;
  color: #fff;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  position: relative;
  z-index: 4;
}

.watch-now,
.details {
  background-color: #4d9dff;
  color: white;
  padding: clamp(6px, 0.7vw, 12px) clamp(12px, 1.5vw, 24px);
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.15s ease;
  display: inline-block;
  transform: scale(1);
}

.watch-now:hover,
.details:hover {
  background-color: #4a8ce6; /* slightly darker blue on hover */
}

.watch-now:active,
.details:active {
  transform: scale(0.95);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2) inset;
}

.watch-now:focus,
.details:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}



.slide_scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.3);  /* subtle transparent black */
  border: none;
  color: white;
  font-size: 2rem;
  padding: 5px 10px;
  cursor: pointer;
  z-index: 10;
  border-radius: 5px;
  user-select: none;
  transition: background-color 0.3s ease;
}

.slide_scroll-btn.left {
  left: 10px;
}

.slide_scroll-btn.right {
  right: 10px;
}

.scroll-btn:hover {
  background-color: rgba(0, 0, 0, 0.6); /* darken on hover */
}




@media (max-width: 768px) {
  .slide_scroll-btn {
    display: none;
  }
}











.movies-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
}


.movies-title {
  margin: 0 0 20px;
  font-size: 2rem;
  color: var(--text-color);
  text-align: left;
}

.movies-carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.movies-container {
  display: flex;
  width: 100%;
  overflow-x: auto;              /* allow horizontal scrolling */
  scroll-behavior: smooth;
  padding: 10px 0 0;
  -webkit-overflow-scrolling: touch; /* smooth scroll on iOS */
  scrollbar-width: none;         /* hide scrollbar in Firefox */
  scroll-snap-type: x mandatory;
}

.movies-container::-webkit-scrollbar {
  display: none; /* hide scrollbar in Chrome/Safari */
}

.movie-card {
  flex: 0 0 calc(33.333%); /* exactly 3 per row */
  overflow: hidden;
  position: relative;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  cursor: pointer;
  scroll-snap-align: start;
}

.movie-card img {
  width: 100%;
  height: 500px; /* or any fixed height you want */
  object-fit: cover; /* keeps aspect ratio but crops if needed */
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
}


/* Hover animation */
.movie-card:hover img {
  transform: scale(1.1);
  filter: blur(4px) brightness(0.4);
}

.movie-card::after {
  content: attr(data-label); /* 👈 dynamic text */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.3rem;
  font-weight: bold;
  color: #fff;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
  pointer-events: none;
}

.movie-card:hover::after {
  opacity: 1;
}

.movie-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #fff;
  text-align: left;
  z-index: 1;
}

.carousel-btn {
  position: absolute;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  border-radius: 50%;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 1.9rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.carousel-btn.left {
  left: -30px;
}

.carousel-btn.right {
  right: -30px;
}

/* Responsive: 1 card per row */
@media (max-width: 768px) {
  .movie-card {
    flex: 0 0 100%;
  }
  .carousel-btn {
    display: none;
  }
}



.news-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 20px;
}

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.news-header h2 {
  font-size: 2rem;
  font-weight: bold;
}

.news-controls {
  display: flex;
  align-items: center;
  gap: 10px;
} 

.news-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
  transition: color 0.3s ease;
}

.news-btn:hover {
  color: #000;
}

.divider {
  width: 1px;
  height: 20px;
  background: #ccc;
}

/* Carousel */
.news-carousel {
  display: flex;
  gap: 30px;
  overflow-x: auto;                  /* enable horizontal scroll */
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch; /* smooth scroll on iOS */
  scrollbar-width: none;
  scroll-snap-type: x mandatory;     /* snap effect */
}

.news-carousel::-webkit-scrollbar {
  display: none; /* hide scrollbar */
}

.news-card {
  flex: 0 0 calc(33.333% - 20px);  /* 3 per row on desktop */
  min-width: 350px;
  background: #fff;
  cursor: pointer;
  scroll-snap-align: start;        /* snap alignment */
}
.news-image {
  width: 100%;        /* full width of card */
  height: 300px;      /* fixed height, or use max-height if needed */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;  /* ensures the image fills container without distortion */
  transition: transform 0.4s ease;
}

.news-card:hover img {
  transform: scale(1.1);
}

.news-meta {
  margin: 12px 0 6px;
  font-size: 0.85rem;
  color: #666;
}

.news-meta span {
  color: #d4a019;
  font-weight: bold;
}

.news-card h3 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 6px;
}

.news-card p {
  font-size: 0.9rem;
  color: #444;
}

/* Mobile: 1 card per view */
@media (max-width: 768px) {
  .news-card {
    flex: 0 0 100%;
    min-width: 100%;
    scroll-snap-align: center; /* nicer UX for single-card view */
  }
}

/* Tablet / medium screens: 2 cards per row */
@media (min-width: 769px) and (max-width: 1199px) {
  .news-card {
    flex: 0 0 calc(50% - 15px); /* 2 cards per row with gap */
    min-width: unset;           /* remove fixed min-width */
    scroll-snap-align: start;
  }

  .news-image {
    height: 250px;              /* slightly smaller for tablets */
  }
}














/* styles/whats-happening.css */
/* styles/whats-happening.css */

/* Outer wrapper with fullscreen bg */
.whats-happening-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 100vh;
  background: url("https://res.cloudinary.com/dmzchsqms/image/upload/f_auto,q_auto/w_600/v1757630847/suzan_loveyourself_whgdqm.webp") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}



/* Overlay */
.whats-happening-wrapper .overlay {
  backdrop-filter: blur(04px);
  position: absolute;
  inset: 0;
  background: rgba(142, 55, 138, 0.578);
}

/* Inner section */
.whats-happening {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  padding: 20px;
  color: #fff;
}
/* Inner transparent/glass section */
.whats-happening {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;

  padding: 20px;
  color: #fff;
}

/* Heading */
.heading-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.section-title {
  margin: 0 0 20px;
  font-size: 2rem;
  color: #fff;
  text-align: left;
}

.see-more {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  border: 1px solid #ffffff;
  padding: 5px 12px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.see-more:hover {
  background: #4aa3ff;
  color: #ffffff;
}

/* Layout */
.content-row {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

/* Feature */
.feature {
  flex: 2;
  border-radius: 12px;
  overflow: hidden;
}

.feature img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.feature-info {
  margin-top: 20px;
}

.feature-info h3 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
}

.tag {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.7rem;
  background: #4aa3ff;;
  padding: 4px 10px;
  border-radius: 3px;
  color: #fff;
  font-weight: bold;
}

/* Side List */
.side-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.list-item {
  background: rgba(255, 255, 255, 0.196);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s ease;
  cursor: pointer;
  min-height: 120px;
  color: #fff;
  backdrop-filter: blur(8px);
}

.list-item:hover {
  background: rgba(255, 255, 255, 0.15);
}

.item-info {
  flex: 1;
  padding-right: 15px;
}

.item-info h4 {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

.item-info .tag {
  font-size: 0.65rem;
  background: #444;
  color: #fff;
}

/* Thumbnail */
.list-item img {
  border-radius: 8px;
  width: 120px;
  height: 75px;
  object-fit: cover;
}


/* Responsive tweaks */
@media (max-width: 1024px) {
  .whats-happening-wrapper {
    min-height: 60vh;       /* reduce height on tablets */
    background-position: center top;
  }

  .feature img {
    height: 220px;          /* slightly smaller on tablet */
  }

  .list-item img {
    width: 100px;
    height: 60px;
  }

  .feature-info h3 {
    font-size: 1.5rem;
  }

  .item-info h4 {
    font-size: 0.9rem;
  }
}

@media (max-width: 758px) {
  .content-row {
    flex-direction: column; /* stack feature and side-list vertically */
    gap: 20px; /* optional spacing */
  }

  .feature,
  .side-list {
    flex: 1 1 100%; /* make both full width */
  }

  .side-list {
    order: 2; /* ensures it comes after feature */
  }

  .feature {
    order: 1;
  }

  .list-item {
    min-height: auto; /* optional: make items shrink if needed */
  }
}













.merch-review {
  max-width: 1200px;
  margin: 60px auto;
  padding: 20px;
}

.merch-container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.merch-image {
  margin-top: 20px ;
  flex: 1;
  min-width: 320px;
  text-align: left;
}

.merch-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}
.release-info {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0,0,0,0.75);
  color: #fff;
  padding: 6px 12px;
  font-size: 0.9rem;
  border-radius: 6px;
}

.merch-details {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.merch-title {
  font-size: 2rem;
  margin-bottom: 10px;
  color: rgba(0, 102, 204, 0.9);
}

.merch-desc {
  color: #555;
  line-height: 1.5;
  margin-bottom: 20px;
}

.interest-box {
  display: inline-block;
  padding: 10px 14px;
  border: 1px solid #4aa3ff;
  color: #4aa3ff;
  font-weight: bold;
  margin-bottom: 15px;
}

.interest-count {
  font-size: 1.2rem;
  margin-right: 5px;
}

.interest-btn {
  background: #4aa3ff;;
  border: none;
  color: #fff;
  font-size: 1rem;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
  margin-bottom: 20px;
  transition: background 0.3s ease;
}

.interest-btn:hover {
  background: #4aa3ff;;
}

.merch-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.merch-tags span {
  background: #f1f1f1;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  color: #444;
}




/* Thumbnails */
/* Thumbnails Center */
.thumbnail-row {
  margin-top: 20px;
  display: flex;
  justify-content: center;   /* center horizontally */
  gap: 12px;
  flex-wrap: wrap;
}

/* Thumb animation */
.thumb-fly {
  position: absolute;
  animation: flyUp 0.8s ease forwards;
  z-index: 9999;
}

@keyframes flyUp {
  0% { transform: scale(1) translateY(0); opacity: 1; }
  50% { transform: scale(1.5) translateY(-40px); opacity: 0.8; }
  100% { transform: scale(0.5) translateY(-100px); opacity: 0; }
}

/* Lock button after click */

.thumbnail {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: 0.3s;
}

.thumbnail:hover,
.thumbnail.active {
  border-color: #0077ff;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .merch-container {
    flex-direction: column;
  }
}

.thumb-img {
  padding-bottom: 8px;
  width: 16px;
  height: auto;
  margin-right: 8px;
  vertical-align: middle;
  align-items: center;
}
.interest-btn {

  align-items: center;
  gap: 8px;
  background: #4aa3ff;
  color: white;
  padding: 8px 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s;
}

/* .interest-btn:hover {
  background: #b91818;
} */

.thumb-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url("https://www.vhv.rs/dpng/d/462-4628473_thumbs-up-icon-png-white-transparent-png.png") 
              no-repeat center center;
  background-size: contain;
}

.interest-count {
  margin-left: 10px;
  font-weight: bold;
  color: #4aa3ff;
}




























:root {
  --how-accent: rgba(0, 102, 204, 0.9); /* matches site blue */
  --how-text: #000;
  --how-sub: #555;
}

.how-section {
  padding: clamp(32px, 6vw, 64px) 16px;
  max-width: 1200px;
  margin: 60px auto;
  padding: 20px;
}

.how-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 6px;
}
.how-header p {
  font-size: 1rem;
  color: var(--how-sub);
  margin-bottom: 28px;
}

.how-steps {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  position: relative;
}
@media (min-width: 720px) {
  .how-steps {
    grid-template-columns: repeat(4, 1fr);
  }
  .how-steps::before {
    content: "";
    position: absolute;
    top: 05px; /* position relative to the badge */
    left: 0;
    right: 0;
    height: 2px;
    background: var(--how-accent);
    z-index: 0;
  }

}

.how-step {
  position: relative;
  z-index: 1;
  padding: 0 8px;
}

.how-icon {
  position: relative;
  display: inline-block;
}
.how-icon img {
  width: 72px;
  height: 72px;
  margin: 40px auto 12px;
}
.how-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--how-accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  z-index: 2;
}

.how-step h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}
.how-step p {
  font-size: 0.95rem;
  color: var(--how-sub);
  max-width: 240px;
  margin: 0 auto;
}

.how-note {
  margin-top: 28px;
  color: var(--how-sub);
  font-size: 0.95rem;
}

/* Subtitle styling */
.how-subtitle {
  text-align: center;
  font-size: 1rem;
  font-style: italic;
  color: #555;
  margin-top: 10px;
  margin-bottom: 40px;
}



.how-extra {
  text-align: center;
  margin-top: 30px;
}

.how-extra p {
  font-size: 1.1rem;
  margin-bottom: 12px;
  font-weight: 500;
}

/* Button style */
.how-extra .cta-btn {
  display: inline-block;
  padding: 12px 24px;
  background: rgba(0, 102, 204, 0.9);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Hover */
.how-extra .cta-btn:hover {
  background: rgba(0, 102, 204, 1); /* solid on hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}
