/* Fixed Page Header */
.page-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 50;
  display: block;
}

@media (max-width: 768px) {
  .page-header {
    display: none;
  }

  html,
  body {
    padding-top: 0;
  }
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  height: 100%;
  padding: 0 40px;
  margin-right: 100px;
}

.logo {
  font-size: 24px;
  font-weight: 600;
  color: #111;
  margin: 0;
  letter-spacing: 1px;
}

.header-nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.header-nav a {
  color: #666;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 250ms ease;
}

.header-nav a:hover {
  color: #d33a52;
}

/* Adjust main content for fixed header */
html,
body {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a1a2a 50%, #1a1a2a 100%);
  min-height: 100vh;
}

@media (max-width: 768px) {
  .header-nav {
    display: none;
  }
}

/* Image Overlay */
.image-overlay {
  top: 90px;
  height: 100%;
  pointer-events: none;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;

   position: fixed;
  bottom: 30px;
  right: 45px;
  z-index: 100;
}

.image-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .image-overlay {
    display: none;
  }
}

/* page top button, that lies at the bottom right of the page */
.page-top {
  width: 60px;
  height: 100px;
  right: 4.8vh;
  display: inline-block;
  z-index: 90000000;
    position: fixed;
  bottom: 30px;
  right: 30px;
  width: 80px;
  height: 80px;
}

.page-top a {
  display: block;
  width: 100%;
  height: 100%;
}

.page-top picture,
.page-top img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.page-top img.fade {
  animation: fadeIn 0.6s ease-in-out forwards;
}

.page-top img.fade.on {
  opacity: 1;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .page-top {
    width: 60px;
    height: 90px;
    bottom: 20px;
    right: 10px;
  }
}
/* teto color #d33a52*/

/* Menu button */
.menu-btn {
  width: 40px;
  height: 40px;
  position: fixed;
  top: 15px;
  right: 20px;
  z-index: 55;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 0;
  transition: all 250ms ease;
}

@media (min-width: 769px) {
  .menu-btn {
    display: none;
  }
}

@media (max-width: 768px) {
  .menu-btn {
    display: flex;
  }
}

.menu-btn span {
  width: 25px;
  height: 3px;
  background: #d33a52;
  border-radius: 2px;
  display: block;
  transition: all 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.menu-btn:hover span {
  background: #ff6b85;
}

.menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translateY(15px);
}

.menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-15px);
}

/* Dropdown menu */
.menu-dropdown {
  position: fixed;
  top: 70px;
  right: 20px;
  background: #1a1a1a;
  border: 1px solid rgba(211, 58, 82, 0.3);
  border-radius: 8px;
  min-width: 200px;
  z-index: 24;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 250ms ease;
}

@media (max-width: 768px) {
  .menu-dropdown {
    top: 60px;
  }
}

.menu-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-dropdown ul {
  list-style: none;
  padding: 8px 0;
  margin: 0;
}

.menu-dropdown li {
  padding: 0;
}

.menu-dropdown a {
  display: block;
  padding: 12px 20px;
  color: #eee;
  text-decoration: none;
  transition: all 250ms ease;
  border-left: 3px solid transparent;
}

.menu-dropdown a:hover {
  background: rgba(211, 58, 82, 0.2);
  border-left-color: #d33a52;
  padding-left: 25px;
}

/* Page Footer */
footer {
  background: linear-gradient(135deg, #1a1a2a 0%, #1a1a1a 50%, #000000 100%);
  z-index: 900;
  position: relative;
}
.page-footer {
  color: #fff;
  padding: 60px 40px 30px;
  margin-top: 80px;
  z-index: 900;
  position: relative;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 100%;
  margin: 0 auto 40px;
}

.footer-section h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 10px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section li {
  margin-bottom: 12px;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: all 250ms ease;
  font-size: 14px;
}

.footer-section a:hover {
  color: #ffffff;
  padding-left: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
  .page-footer {
    padding: 40px 20px 20px;
    margin-top: 60px;
  }

  .footer-content {
    gap: 30px;
  }

  .footer-section h3 {
    font-size: 14px;
  }
}
.scroll-indicator {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 15;
  pointer-events: auto;
}

@media (max-width: 768px) {
  .scroll-indicator {
    display: none;
  }
}

.indicator-bar {
  width: 4px;
  height: 40px;
  background: rgba(238, 238, 238, 0.3);
  border-radius: 2px;
  transition:
    background 250ms ease,
    width 250ms ease,
    height 250ms ease,
    box-shadow 250ms ease;
  cursor: pointer;
}

.indicator-bar:hover {
  background: rgba(238, 238, 238, 0.6);
  width: 5px;
}

.indicator-bar.active {
  background: #d33a52;
  width: 6px;
  height: 50px;
  box-shadow: 0 0 10px rgba(211, 58, 82, 0.6);
}

.indicator-bar.active:hover {
  width: 7px;
  box-shadow: 0 0 15px rgba(211, 58, 82, 0.8);
}

/* Global layout + scroll snap */
html,
body {
  height: 100%;
  margin: 0;
  scroll-behavior: smooth;
}

/* Hide scrollbar */
html::-webkit-scrollbar {
  width: 0;
  display: none;
}

html {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body {
  font-family:
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial;
  background: #111;
  color: #eee;
}

/* Make main a snap container */
.snap-container {
  scroll-snap-type: y mandatory;
}

.snap-item {
  min-height: 100vh;
  box-sizing: border-box;
  padding: 8vh 6vw;
  display: flex;
  align-items: center;
  justify-content: center;
  scroll-snap-align: center;
  transition:
    transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1),
    filter 300ms ease;
  position: relative;
  overflow: hidden;
}

.snap-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit;
  z-index: -1;
}

.snap-item h1,
.snap-item p {
  transition:
    opacity 420ms ease,
    transform 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 0;
  transform: scale(0.95) translateY(20px);
  position: relative;
  z-index: 1;
}

.snap-item.in-view h1,
.snap-item.in-view p {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.snap-item.in-view h1,
.snap-item.in-view p {
  opacity: 1;
}

.snap-item:nth-child(2) {
  position: relative;
  overflow: hidden;
}

.snap-item:nth-child(2)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: url("images/kasane-teto-and-hatsune-miku-wy7peek7fpisnp78.jpg")
    center/cover no-repeat;

  /* filter: blur(8px);
  -webkit-filter: blur(8px); */

  z-index: -1;

  transform: scale(1.1);
}

.snap-item:nth-child(3) {
  position: relative;
  overflow: hidden;
}

.snap-item:nth-child(4) {
  position: relative;
  overflow: hidden;
}

.snap-item p {
  max-width: 60ch;
  line-height: 1.6;
  font-size: 1.05rem;
  margin: 0 auto;
}

/* Improve page-top button appearance */
.page-top a img {
  width: 100%;
  height: auto;
  display: block;
  filter: hue-rotate(-15deg) saturate(1.1) brightness(1.1);
}

/* This is a placeholder for baguette corsuror, that lies above the scroll featured text */
baguette-cursor {
  position: fixed;
  width: 40px;
  height: 40px;
  background: url("images/baguette-cursor.png") center/contain no-repeat;
  pointer-events: none;
  z-index: 100;
  transition:
    transform 150ms ease,
    opacity 150ms ease;
}

bagguette-cursor.hover {
  transform: scale(1.2);
  opacity: 0.8;
}
/* This is a placeholder for the sv-inner sv-fix, that lies above the figure */

/* SPECIAL TETO FONT - Visible on All Backgrounds */

.teto-font {
  color: #ffffff;
  -webkit-text-stroke: 1.5px #d33a52;
  text-shadow: 1.5px #d33a52;
  text-shadow:
    -2px -2px 0px rgba(0, 0, 0, 0.8),
    2px -2px 0px rgba(0, 0, 0, 0.8),
    -2px 2px 0px rgba(0, 0, 0, 0.8),
    2px 2px 0px rgba(0, 0, 0, 0.8),
    -3px 0px 0px rgba(0, 0, 0, 0.7),
    3px 0px 0px rgba(0, 0, 0, 0.7),
    0px -3px 0px rgba(0, 0, 0, 0.7),
    0px 3px 0px rgba(0, 0, 0, 0.7),
    0px 0px 15px rgba(211, 58, 82, 0.8),
    0px 0px 25px rgba(211, 58, 82, 0.5);

  font-weight: 700;

  letter-spacing: 0.5px;

  /* Smooth rendering */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  filter: drop-shadow(0px 0px 8px rgba(211, 58, 82, 0.6));
}

/* Bubbly Contact Form Styles */
#contact-section {
  min-height: 100vh;
  padding: 100px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a1a2a 50%, #1a1a2a 100%);
  position: relative;
}

#contact-section h1 {
  font-size: 3.5rem;
  color: #ffffff;
  -webkit-text-stroke: 2px #d33a52;
  margin-bottom: 15px;
  text-align: center;
  filter: drop-shadow(0px 0px 10px rgba(211, 58, 82, 0.6));
}

#contact-section > p {
  font-size: 1.2rem;
  color: rgba(238, 238, 238, 0.8);
  text-align: center;
  margin-bottom: 50px;
  max-width: 500px;
}

/* Bubbly Form */
.bubbly-form {
  max-width: 650px;
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(211, 58, 82, 0.3);
  border-radius: 40px;
  padding: 50px 40px;
  box-shadow:
    0 8px 32px rgba(211, 58, 82, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: floatForm 3s ease-in-out infinite;
}

@keyframes floatForm {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Form Groups */
.form-group {
  max-width: 600px;
  margin-bottom: 35px;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
  -webkit-text-stroke: 0.5px #d33a52;
  transition: all 250ms ease;
}

.form-group.bubble:hover label {
  color: #d33a52;
  text-shadow: 0 0 10px rgba(211, 58, 82, 0.6);
}

/* Inputs and Textarea */
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid rgba(211, 58, 82, 0.3);
  border-radius: 25px;
  background: rgba(30, 30, 50, 0.6);
  color: #ffffff;
  font-size: 1rem;
  font-family: inherit;
  transition: all 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(211, 58, 82, 0.6);
  font-style: italic;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #d33a52;
  background: rgba(30, 30, 50, 0.9);
  box-shadow:
    0 0 20px rgba(211, 58, 82, 0.5),
    0 4px 15px rgba(0, 0, 0, 0.4),
    inset 0 0 10px rgba(211, 58, 82, 0.1);
  transform: scale(1.02);
}

.form-group input:hover:not(:focus),
.form-group textarea:hover:not(:focus) {
  border-color: rgba(211, 58, 82, 0.6);
  box-shadow:
    0 6px 20px rgba(211, 58, 82, 0.2),
    0 4px 15px rgba(0, 0, 0, 0.3);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
  border-radius: 20px;
}

/* Submit Button */
.submit-btn {
  width: 100%;
  padding: 16px 30px;
  margin-top: 15px;
  background: linear-gradient(135deg, #d33a52 0%, #ff6b85 50%, #d33a52 100%);
  color: #ffffff;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow:
    0 6px 20px rgba(211, 58, 82, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  -webkit-text-stroke: 0.5px rgba(255, 255, 255, 0.3);
}

.submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 500ms ease;
}

.submit-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow:
    0 10px 35px rgba(211, 58, 82, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.submit-btn:hover::before {
  left: 100%;
}

.submit-btn:active {
  transform: translateY(-1px) scale(1.02);
  box-shadow:
    0 5px 20px rgba(211, 58, 82, 0.4),
    inset 0 2px 5px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  #contact-section {
    padding: 80px 20px;
  }

  #contact-section h1 {
    font-size: 2.5rem;
  }

  .bubbly-form {
    padding: 35px 25px;
    border-radius: 30px;
  }

  .form-group {
    margin-bottom: 25px;
  }

  .form-group input,
  .form-group textarea {
    padding: 12px 16px;
    font-size: 16px;
  }

  .submit-btn {
    padding: 14px 25px;
    font-size: 1rem;
  }
}

/* Thank You Screen */
.thank-you-screen {
  text-align: center;
  padding: 60px 20px;
  animation: fadeIn 0.5s ease-in-out;
}

.thank-you-content {
  max-width: 500px;
  margin: 0 auto;
  padding: 40px;
  background: linear-gradient(135deg, #fff5f7 0%, #ffe6ed 100%);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(211, 58, 82, 0.15);
}

.thank-you-content h2 {
  font-size: 2.5rem;
  color: #d33a52;
  margin-bottom: 20px;
  font-family: "Georgia", serif;
  letter-spacing: 1px;
}

.thank-you-content p {
  font-size: 1.1rem;
  color: #555;
  margin: 15px 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .thank-you-screen {
    padding: 40px 15px;
  }

  .thank-you-content {
    padding: 30px 20px;
  }

  .thank-you-content h2 {
    font-size: 2rem;
  }

  .thank-you-content p {
    font-size: 1rem;
  }
}

/*------------- Card Component Styles --*/

#cards {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(4 * var(--card-height));
  gap: var(--card-margin);
  padding-bottom: calc(4 * var(--card-margin));
  margin-bottom: var(--card-margin);
  max-width: 90vw;
  margin: 0 auto;
}

.card {
  position: sticky;
  top: 10vh;
  height: var(--card-height);
  padding-top: calc(var(--index) * var(--card-top-offset));
  perspective: 1000px; /* 3D context */
}

.card__content {
  box-sizing: border-box;
  padding: 50px;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background: #1c1c1c;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;

  /* Transform config */
  transform-origin: 50% 0%;
  will-change: transform, filter;
  transform-style: preserve-3d;
  max-width: 720px;
  max-height: 400px;

  /* Animate based on viewport visibility */
  animation: scale-card linear forwards;
  animation-timeline: view();
  animation-range: exit-crossing 0% exit-crossing 100%;
}

/* Card variants */
.card:nth-child(1) {
  --index: 1;
}
.card:nth-child(1) .card__content {
  background: #ff2a6d;
  --shadow-color: rgba(255, 42, 109, 0.8);
}

.card:nth-child(2) {
  --index: 2;
}
.card:nth-child(2) .card__content {
  background: #05d9e8;
  color: #000;
  --shadow-color: rgba(5, 217, 232, 0.8);
}

.card:nth-child(3) {
  --index: 3;
}
.card:nth-child(3) .card__content {
  background: #ffe600;
  color: #000;
  --shadow-color: rgba(255, 230, 0, 0.8);
}

.card:nth-child(4) {
  --index: 4;
}
.card:nth-child(4) .card__content {
  background: #fafac6;
  color: #000;
  --shadow-color: rgba(250, 250, 198, 0.8);
}

@keyframes scale-card {
  to {
    transform: scale(0.8) translateY(-10vh) rotateX(-20deg);
    filter: brightness(0.6);
    border-radius: 20px;
    /* Dynamic shadow */
    box-shadow: 0 50px 80px -10px var(--shadow-color);
  }
}

/* Content Styling */
.card__content h2 {
  font-size: 4rem;
  margin: 0;
}
.card__content p {
  font-size: 1.5rem;
  max-width: 600px;
  line-height: 1.4;
  opacity: 0.8;
}

.number {
  font-size: 10rem;
  position: absolute;
  right: 2rem;
  top: -2rem;
  opacity: 0.3;
  font-weight: bold;
}

/* Scroll Progress Circle (SVG) */
.progress-circle {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 80px;
  height: 80px;
  z-index: 900000;
}

.progress-circle circle {
  fill: none;
  stroke: #3f4750;
  stroke-width: 6;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;

  /* Scroll-linked dashoffset */
  stroke-dasharray: 251; /* 2 * pi * r (r=40) approx 251 */
  stroke-dashoffset: 251;

  animation: progress-spin linear;
  animation-timeline: scroll();
}

@keyframes progress-spin {
  to {
    stroke-dashoffset: 0;
  }
}

/* Fun Fact Boxes */
.fun-fact {
  background: linear-gradient(135deg, #f5f5f5 0%, #efefef 100%);
  border-left: 4px solid #ff6b9d;
  padding: 16px 20px;
  margin-top: 24px;
  border-radius: 6px;
  font-size: 0.95em;
  line-height: 1.6;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  animation: slideInFact 0.6s ease-out;
  color: #000;
}

@keyframes slideInFact {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fun-fact strong {
  color: #ff6b9d;
  display: block;
  margin-bottom: 8px;
  font-size: 1.05em;
}

.fun-fact:hover {
  box-shadow: 0 4px 12px rgba(255, 107, 157, 0.15);
  transform: translateX(2px);
  transition: all 0.3s ease;
}

/* Section Styling */
.section-subtitle {
  font-size: 0.95em;
  color: #ff6b9d;
  font-weight: 500;
  margin-top: -8px;
  margin-bottom: 20px;
  display: block;
  animation: slideInFact 0.6s ease-out;
}

h3 {
  font-size: 1.2em;
  color: #333;
  margin-top: 20px;
  margin-bottom: 12px;
  font-weight: 600;
  border-bottom: 2px solid #ff6b9d;
  padding-bottom: 6px;
  display: inline-block;
  animation: slideInFact 0.6s ease-out;
}

/* -----------Top HIts Section Styles ----------- */

/* Hero Section with Parallax */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 70px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #d33a52 0%, #b8264e 50%, #1a1a1a 100%);
  z-index: 0;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -1;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  animation: fadeInUp 1s ease-out;
}

.hero h1 {
  font-size: clamp(3rem, 10vw, 6rem);
  text-transform: uppercase;
  margin: 0;
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  -webkit-text-stroke: 2px #d33a52;
  text-shadow:
    -2px -2px 0px rgba(0, 0, 0, 0.8),
    2px -2px 0px rgba(0, 0, 0, 0.8),
    -2px 2px 0px rgba(0, 0, 0, 0.8),
    2px 2px 0px rgba(0, 0, 0, 0.8),
    0px 0px 30px rgba(211, 58, 82, 0.8);
  letter-spacing: 2px;
}

.hero p {
  font-size: 1.3rem;
  margin: 20px 0 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  z-index: 20;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-20px);
  }
}

/* Videos Section */
.videos-section {
  padding: 100px 40px;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 80px;
}

.section-title h2 {
  font-size: clamp(2rem, 8vw, 4rem);
  margin: 0;
  color: #ffffff;
  -webkit-text-stroke: 2px #d33a52;
  text-shadow: 0px 0px 20px rgba(211, 58, 82, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 15px;
  font-weight: 300;
}

/* Videos Grid */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.video-card {
  background: rgba(30, 30, 50, 0.8);
  border: 2px solid rgba(211, 58, 82, 0.3);
  border-radius: 20px;
  overflow: hidden;
  transition: all 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.video-card:hover {
  transform: translateY(-10px) scale(1.05);
  border-color: #d33a52;
  box-shadow: 0 20px 40px rgba(211, 58, 82, 0.3);
}

.video-frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
  overflow: hidden;
  flex-shrink: 0;
}

.video-frame img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  object-fit: cover;
  transition: transform 300ms ease;
}

.video-card:hover .video-frame img {
  transform: scale(1.05);
}

.video-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-info {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.video-rank {
  font-size: 0.85rem;
  color: #d33a52;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.video-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: #ffffff;
  line-height: 1.3;
}

.video-artist {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 15px 0;
  font-weight: 300;
}

.video-description {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 auto 0;
  line-height: 1.5;
  font-weight: 300;
}

.video-link {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #d33a52 0%, #ff6b85 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 250ms ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.video-link:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(211, 58, 82, 0.4);
}

/* Parallax Section Divider */
.parallax-divider {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 100px 0;
}

.parallax-divider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("images/bg1.jfif");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}

.parallax-divider::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(211, 58, 82, 0.6);
  z-index: 1;
}

.parallax-text {
  position: relative;
  z-index: 10;
  text-align: center;
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow:
    -2px -2px 0px rgba(0, 0, 0, 0.8),
    2px -2px 0px rgba(0, 0, 0, 0.8),
    -2px 2px 0px rgba(0, 0, 0, 0.8),
    2px 2px 0px rgba(0, 0, 0, 0.8);
}

/* Stats Section */
.stats-section {
  padding: 80px 40px;
  text-align: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a1a2a 50%, #1a1a2a 100%);
  border-top: 2px solid rgba(211, 58, 82, 0.3);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 40px auto 0;
}

.stat {
  padding: 30px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #d33a52;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .hero {
    margin-top: 0;
    height: 80vh;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .videos-section {
    padding: 60px 20px;
  }

  .videos-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section-title {
    margin-bottom: 50px;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .parallax-divider {
    height: 250px;
    margin: 60px 0;
  }

  .parallax-divider::before {
    background-attachment: scroll;
  }

  .stats-section {
    padding: 60px 20px;
  }
}
