@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:wght@300;400;500;600;700&display=swap');

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

html, body {
  overflow-x: hidden;
}

/* Reviews Section */
.reviews-section {
  position: relative;
  padding: 100px 50px;
  margin: 80px 0;
  background: linear-gradient(180deg, rgba(10, 14, 39, 0.95) 0%, rgba(26, 31, 58, 0.95) 50%, rgba(10, 14, 39, 0.95) 100%);
  overflow: hidden;
}

.reviews-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.5), transparent);
}

.reviews-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.5), transparent);
}

.reviews-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.reviews-header {
  text-align: center;
  margin-bottom: 60px;
}

.reviews-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background: linear-gradient(135deg, #F8FAFC 0%, #E11D48 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.quote-icon {
  font-size: 48px;
  color: #E11D48;
  opacity: 0.8;
}

.reviews-subtitle {
  font-size: 18px;
  color: rgba(226,232,240,0.72);
  font-weight: 400;
}

.reviews-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
}

.review-nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.7) 100%);
  border: 2px solid rgba(220, 38, 38, 0.5);
  color: #F8FAFC;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.3);
}

.review-nav-btn:hover {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.95) 0%, rgba(244, 6, 18, 0.9) 100%);
  border-color: #BE123C;
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.review-nav-btn:active {
  transform: scale(0.95);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  flex: 1;
  min-height: 300px;
}

.review-card {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.7) 0%, rgba(30, 30, 30, 0.7) 100%);
  border-radius: 20px;
  padding: 35px;
  border: 2px solid rgba(220, 38, 38, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  opacity: 0.6;
  transform: scale(0.9);
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0F172A, #E11D48, #BE123C);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.review-card.active {
  opacity: 1;
  transform: scale(1);
  border-color: rgba(220, 38, 38, 0.5);
  box-shadow: 0 20px 60px rgba(220, 38, 38, 0.3);
  z-index: 2;
}

.review-card.active::before {
  transform: scaleX(1);
}

.review-card.next,
.review-card.next-next {
  opacity: 0.4;
  transform: scale(0.85);
}

.review-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.review-stars {
  display: flex;
  gap: 4px;
}

.star-icon {
  color: #ffd700;
  font-size: 18px;
  filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.review-quote-icon {
  font-size: 32px;
  color: #E11D48;
  opacity: 0.3;
}

.review-card.active .review-quote-icon {
  opacity: 0.6;
  color: #BE123C;
}

.review-text {
  font-size: 16px;
  line-height: 1.7;
  color: #CBD5E1;
  margin-bottom: 25px;
  font-style: italic;
  min-height: 80px;
}

.review-card.active .review-text {
  color: #F8FAFC;
  font-size: 17px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid rgba(220, 38, 38, 0.2);
}

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E11D48, #BE123C);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #F8FAFC;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

.review-author-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.review-username {
  font-size: 16px;
  font-weight: 600;
  color: #E11D48;
}

.review-verified {
  font-size: 12px;
  color: rgba(226,232,240,0.72);
  display: flex;
  align-items: center;
  gap: 4px;
}

.review-verified::before {
  content: '✓';
  color: #4ade80;
  font-weight: bold;
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.review-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(220, 38, 38, 0.4);
  background: transparent;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
  position: relative;
}

.review-dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(220, 38, 38, 0.3);
  transition: width 0.4s ease, height 0.4s ease;
}

.review-dot:hover::before {
  width: 20px;
  height: 20px;
}

.review-dot.active {
  background: #E11D48;
  border-color: #BE123C;
  width: 32px;
  border-radius: 16px;
  box-shadow: 0 0 15px rgba(220, 38, 38, 0.6);
}

.review-dot.active::before {
  width: 40px;
  height: 40px;
}

@media (max-width: 1024px) {
  .scroll-arrow {
    opacity: 1;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .review-card.next,
  .review-card.next-next {
    display: none;
  }

  .review-card.active {
    transform: scale(1);
  }

  .review-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  .review-nav-prev {
    left: -20px;
  }

  .review-nav-next {
    right: -20px;
  }
}

@media (max-width: 768px) {
  .reviews-section {
    padding: 60px 30px;
    margin: 60px 0;
  }

  .reviews-title {
    font-size: 32px;
    flex-direction: column;
    gap: 10px;
  }

  .quote-icon {
    font-size: 36px;
  }

  .reviews-subtitle {
    font-size: 16px;
  }

  .review-card {
    padding: 25px;
  }

  .review-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .review-nav-prev {
    left: -10px;
  }

  .review-nav-next {
    right: -10px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #0F172A;
  color: #F8FAFC;
  line-height: 1.6;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #111827;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #831010 0%, #E11D48 50%, #991B1B 100%);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #E11D48 0%, #991B1B 50%, #ff4f56 100%);
}

.App {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
  transition: all 0.3s ease;
}

/* Navigation toggle (mobile) */
.nav-toggle {
  display: none;
  width: 40px;
  height: 28px;
  border: none;
  background: transparent;
  position: relative;
}

.nav-toggle::before,
.nav-toggle::after,
.nav-toggle span {
  content: '';
  position: absolute;
  left: 6px;
  right: 6px;
  height: 3px;
  background: #E11D48;
  border-radius: 3px;
  transition: transform 0.25s ease, top 0.25s ease, opacity 0.25s ease;
}

.nav-toggle::before { top: 6px; }
.nav-toggle span { top: 13px; }
.nav-toggle::after { top: 20px; }

.nav-toggle.open::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open .nav-toggle-span { opacity: 0; }
.nav-toggle.open::after { transform: translateY(-7px) rotate(-45deg); }

.header-logo { cursor: pointer; }

.header-nav {
  display: flex;
  gap: 30px;
}

.header-nav ul {
  display: flex;
  gap: 24px;
  list-style: none;
  align-items: center;
}

.header-nav a {
  color: inherit;
  text-decoration: none;
  padding: 6px 8px;
  border-radius: 4px;
  transition: background 0.18s ease, color 0.18s ease, transform 0.12s ease;
}

.header-nav a:hover,
.header-nav a.active {
  color: #E11D48;
  transform: translateY(-2px);
}

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .header-nav { 
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.98), rgba(20,20,20,0.98));
    padding: 18px 20px;
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
    border-top: 1px solid rgba(220, 38, 38, 0.1);
  }
  .header-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .header-nav ul { 
    flex-direction: column; 
    gap: 12px;
    text-align: center;
  }
  .header-nav li {
    text-align: center;
  }
  .header-nav a {
    text-align: center;
    display: block;
  }
}

.header.scrolled {
  background-color: rgba(15, 23, 42, 0.95); 
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(2, 6, 23, 0.6); 
  border-bottom: 1px solid rgba(244, 6, 18, 0.15);
  padding: 15px 50px;
}

.header-logo {
  font-size: 32px;
  font-weight: 700;
  color: #E11D48;
  letter-spacing: -1px;
  transition: transform 0.3s ease;
}

.header-logo:hover {
  transform: scale(1.05);
}

.header-nav {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

.header-nav a {
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.header-nav a:hover {
  color: rgba(226,232,240,0.72);
}

.hero {
  position: relative;
  height: 90vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  padding: 0 50px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  transition: background-image 1s ease-in-out;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(10,14,39,0.95) 0%, rgba(26,31,58,0.7) 40%, rgba(45,27,61,0.4) 70%, rgba(0,0,0,0.1) 100%);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 250px;
  background: linear-gradient(to top, #111827 0%, transparent 100%);
  z-index: 2;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.hero-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-card {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-card .hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 0.8s ease-in-out;
}

.hero-card .hero-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 100%);
  z-index: 1;
}

.hero-card .hero-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
  z-index: 1;
}

.hero-info {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 50px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #F8FAFC;
  animation: fadeIn 1s ease-out;
}

.hero-info .hero-title {
  font-size: 80px;
  font-weight: 900;
  margin: 0;
  line-height: 1;
  color: #F8FAFC;
  text-shadow: 2px 2px 20px rgba(0,0,0,0.9);
  letter-spacing: -2px;
}

.hero-info .hero-description {
  font-size: 24px;
  line-height: 1.6;
  color: #F8FAFC;
  margin: 0;
  text-shadow: 1px 1px 10px rgba(0,0,0,0.8);
  max-width: 700px;
}

.hero-info .hero-meta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  font-size: 16px;
  color: #F8FAFC;
}

.hero-year,
.hero-rating,
.hero-genres {
  padding: 8px 16px;
  background: rgba(15, 23, 42, 0.5);
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.hero-rating {
  color: #ffd700;
  font-weight: 700;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-dots {
  position: absolute;
  bottom: 30px;
  right: 50px;
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.7);
  transform: scale(1.2);
}

.hero-dot.active {
  background: #E11D48;
  width: 32px;
  border-radius: 6px;
}

.btn-outline-light {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: #F8FAFC;
  backdrop-filter: blur(10px);
  font-weight: 600;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: #F8FAFC;
  transform: translateY(-2px);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 120px;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 0.95;
  text-shadow: 3px 3px 15px rgba(0,0,0,0.9);
  letter-spacing: 3px;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, #0F172A 0%, #E11D48 50%, #BE123C 100%);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
  animation: fadeInUp 1s ease-out 0.1s both;
}

.hero-description {
  font-size: 24px;
  margin-bottom: 35px;
  line-height: 1.6;
  color: rgba(248,250,252,0.82);
  max-width: 900px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.9);
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  font-size: 14px;
  color: rgba(226,232,240,0.72);
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.hero-content-left {
  max-width: 100%;
  width: 100%;
}

.hero-content-right {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  animation: fadeInUp 1s ease-out 0.5s both;
  margin-top: 10px;
}

.hero-button-wrapper {
  position: relative;
}

.hero-watch-btn {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 40px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(220, 38, 38, 0.85) 50%, rgba(244, 6, 18, 0.8) 100%);
  border: 3px solid rgba(220, 38, 38, 0.5);
  border-radius: 20px;
  color: #F8FAFC;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(220, 38, 38, 0.4),
              0 0 0 0 rgba(220, 38, 38, 0.6),
              inset 0 1px 0 rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
  min-width: 280px;
}

.hero-watch-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 0.6s ease;
}

.hero-watch-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.hero-watch-btn:hover {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.95) 0%, rgba(244, 6, 18, 0.9) 50%, rgba(255, 10, 22, 0.85) 100%);
  border-color: rgba(244, 6, 18, 0.8);
  transform: translateX(-5px) scale(1.05);
  box-shadow: 0 15px 50px rgba(220, 38, 38, 0.6),
              0 0 0 4px rgba(220, 38, 38, 0.3),
              inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.hero-watch-btn:hover::before {
  left: 100%;
}

.hero-watch-btn:hover::after {
  width: 300px;
  height: 300px;
}

.hero-watch-btn:active {
  transform: translateX(-3px) scale(1.02);
}

.hero-btn-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.hero-watch-btn:hover .hero-btn-icon {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.3);
}

.hero-btn-icon svg {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 2px 4px rgba(15, 23, 42, 0.3));
}

.hero-btn-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  position: relative;
  z-index: 1;
}

.hero-btn-label {
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  text-shadow: 0 2px 8px rgba(15, 23, 42, 0.3);
}

.hero-btn-subtitle {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.9;
  letter-spacing: 2px;
}

.hero-btn-arrow {
  margin-left: auto;
  transition: transform 0.4s ease;
  position: relative;
  z-index: 1;
  opacity: 0.8;
}

.hero-watch-btn:hover .hero-btn-arrow {
  transform: translateX(8px);
  opacity: 1;
}

.hero-btn-arrow svg {
  filter: drop-shadow(0 2px 4px rgba(15, 23, 42, 0.3));
}

.hero-nav {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0;
  background: transparent;
  backdrop-filter: none;
  padding: 0;
  border-radius: 50px;
  border: none;
}

.hero-dots-container {
  display: flex;
  gap: 10px;
  align-items: center;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: none;
  position: relative;
}

.hero-dot::before {
  display: none;
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: none;
}

.hero-dot:hover::before {
  display: none;
}

.hero-dot.active {
  background: #E11D48;
  width: 24px;
  border-radius: 4px;
  box-shadow: 0 0 12px rgba(220, 38, 38, 0.8);
}

.hero-dot.active::before {
  display: none;
}

.btn-primary, .btn-secondary {
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.2);
}

.btn-primary::before,
.btn-secondary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::before,
.btn-secondary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: #E11D48;
  color: #F8FAFC;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
  border: none;
  font-weight: 700;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 12px;
  padding: 2px;
  background: linear-gradient(135deg, #E11D48, #BE123C, #991B1B);
  -webkit-mask: linear-gradient(#0F172A 0 0) content-box, linear-gradient(#0F172A 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.6);
  background: #BE123C;
}

.btn-primary:hover::after {
  opacity: 1;
}

.btn-primary:active {
  transform: translateY(-2px) scale(0.98);
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

.btn-primary:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.3),
              0 4px 15px rgba(220, 38, 38, 0.4);
}

.btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
}

.btn-animated {
  position: relative;
  overflow: hidden;
}

.btn-animated::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: 0;
}

.btn-animated:hover::after {
  width: 400px;
  height: 400px;
}

.btn-animated > * {
  position: relative;
  z-index: 1;
}

.animated-btn {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0F172A 0%, #E11D48 50%, #BE123C 100%) !important;
  border: 2px solid transparent;
  box-shadow: 0 6px 25px rgba(220, 38, 38, 0.4) !important;
}

.animated-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 0.5s ease;
  z-index: 1;
}

.animated-btn:hover::before {
  left: 100%;
}

.animated-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: 0;
}

.animated-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.6) !important;
  background: #BE123C !important;
}

.animated-btn:hover::after {
  width: 300px;
  height: 300px;
}

.animated-btn > * {
  position: relative;
  z-index: 2;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4),
                0 0 0 0 rgba(220, 38, 38, 0.7);
  }
  50% {
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4),
                0 0 0 8px rgba(220, 38, 38, 0);
  }
}

.btn-pulse {
  animation: pulse 2s infinite;
}

.btn-glow {
  box-shadow: 0 0 20px rgba(220, 38, 38, 0.5),
              0 0 40px rgba(220, 38, 38, 0.3),
              0 0 60px rgba(220, 38, 38, 0.1);
}

.btn-glow:hover {
  box-shadow: 0 0 30px rgba(220, 38, 38, 0.8),
              0 0 60px rgba(220, 38, 38, 0.5),
              0 0 90px rgba(220, 38, 38, 0.3);
}

.btn-loading {
  pointer-events: none;
  position: relative;
}

.btn-loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: #0F172A;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.header-subscribe-btn {
  position: relative;
  overflow: hidden;
}

.header-subscribe-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.header-subscribe-btn:hover::before {
  width: 300px;
  height: 300px;
}

.header-subscribe-btn > * {
  position: relative;
  z-index: 1;
}

.subscribe-modal button {
  position: relative;
  overflow: hidden;
}

.subscribe-modal button::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.subscribe-modal button:hover::after {
  width: 200px;
  height: 200px;
}

.btn-secondary {
  background: rgba(15, 23, 42, 0.5);
  color: #F8FAFC;
  border: 2px solid rgba(220, 38, 38, 0.5);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.2),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-secondary::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(244, 6, 18, 0.2));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn-secondary:hover {
  background: rgba(220, 38, 38, 0.4);
  border-color: rgba(244, 6, 18, 0.8);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 35px rgba(220, 38, 38, 0.4),
              0 0 0 4px rgba(220, 38, 38, 0.15),
              inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover::after {
  opacity: 1;
}

.btn-secondary:active {
  transform: translateY(-2px) scale(0.98);
}

.content-section {
  padding: 60px 50px;
  position: relative;
  background: #0F172A;
  overflow: visible;
}

.content-row {
  margin-bottom: 80px;
  position: relative;
  padding: 30px 0;
}

.content-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #E11D48, #BE123C, transparent);
  border-radius: 2px;
  opacity: 0.3;
}

.content-row h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #F8FAFC;
  letter-spacing: 0.5px;
  padding-left: 20px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: linear-gradient(135deg, #F8FAFC 0%, #E11D48 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.content-row h2::before {
  content: '';
  width: 6px;
  height: 36px;
  background: linear-gradient(180deg, #E11D48, #BE123C);
  border-radius: 3px;
  display: block;
  box-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
}

.content-row h2::after {
  content: '';
  position: absolute;
  left: 20px;
  bottom: -8px;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, #0F172A, #E11D48, #BE123C, #991B1B);
  border-radius: 2px;
  transition: width 0.6s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.4);
}

.content-row h2:hover::after,
.content-row h2:focus::after {
  width: calc(100% - 20px);
}

.extra-section {
  margin: 60px auto 0 auto;
  max-width: 1100px;
  background: linear-gradient(135deg, #1F2937 0%, #111827 50%, #1F2937 100%);
  border-radius: 18px;
  box-shadow: 0 8px 40px rgba(220, 38, 38, 0.15);
  padding: 48px 32px 48px 32px;
  color: rgba(248,250,252,0.82);
  position: relative;
  overflow: hidden;
  border: 1.5px solid rgba(220, 38, 38, 0.2);
  animation: fadeInUp 0.8s cubic-bezier(0.4,0,0.2,1);
}
.extra-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: #0F172A;
  margin-bottom: 18px;
  position: relative;
  display: inline-block;
}
.extra-section h2::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #0F172A, #E11D48, #BE123C);
  border-radius: 2px;
  transition: width 0.5s cubic-bezier(0.4,0,0.2,1);
}
.extra-section h2:hover::after,
.extra-section h2:focus::after {
  width: 100%;
}
.extra-section p {
  font-size: 18px;
  color: #d3c6e8;
  margin-bottom: 18px;
}
.extra-section .extra-btn {
  display: inline-block;
  padding: 14px 36px;
  background: linear-gradient(90deg, #0F172A, #E11D48, #BE123C);
  color: #0F172A;
  font-weight: 600;
  border-radius: 8px;
  font-size: 18px;
  margin-top: 18px;
  box-shadow: 0 4px 18px rgba(220, 38, 38, 0.3);
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  border: none;
  cursor: pointer;
}
.extra-section .extra-btn:hover {
  background: linear-gradient(90deg, #E11D48, #BE123C, #991B1B);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 25px rgba(220, 38, 38, 0.5);
}

.content-row-wrapper {
  position: relative;
  padding: 20px 0;
  margin: 0;
  overflow: visible;
}

.content-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  -ms-overflow-style: none;
  padding: 15px 0;
  margin: 0;
  justify-content: flex-start;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}

@media (min-width: 1025px) {
  .content-scroll {
    overflow-x: hidden;
    scrollbar-width: none;
  }
  
  .content-scroll::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 900px) {
  .content-scroll {
    gap: 14px;
    padding: 10px 0;
  }
  
  .content-scroll::-webkit-scrollbar {
    display: block;
    height: 4px;
  }
  
  .content-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
  }
  
  .content-scroll::-webkit-scrollbar-thumb {
    background: rgba(220, 38, 38, 0.5);
    border-radius: 2px;
  }
  
  .content-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(220, 38, 38, 0.7);
  }
  
  .scroll-arrow {
    display: none;
  }
}

.scroll-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(220, 38, 38, 0.8) 100%);
  border: 2px solid rgba(220, 38, 38, 0.5);
  border-radius: 50%;
  color: #F8FAFC;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.3);
}

.scroll-arrow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.content-row-wrapper:hover .scroll-arrow {
  opacity: 1;
}

.scroll-arrow:hover {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.95) 0%, rgba(244, 6, 18, 0.9) 100%);
  border-color: #BE123C;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 30px rgba(220, 38, 38, 0.5);
}

.scroll-arrow:hover::before {
  width: 100%;
  height: 100%;
}

.scroll-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.scroll-arrow.left {
  left: -10px;
}

.scroll-arrow.right {
  right: -10px;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #F8FAFC;
  letter-spacing: 0.5px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 60px;
  height: 3px;
  background: #E11D48;
  border-radius: 2px;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
}

.content-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1 1 22%;
  max-width: 22%;
  min-width: 220px;
  box-sizing: border-box;
  flex-shrink: 0;
  background: #1E293B;
}

@media (max-width: 1200px) {
  .content-card {
    flex: 1 1 24%;
    max-width: 24%;
    min-width: 180px;
  }
}

@media (max-width: 900px) {
  .content-card {
    flex: 0 0 48%;
    max-width: 48%;
    min-width: 160px;
  }
}

@media (max-width: 600px) {
  .content-card {
    flex: 0 0 65%;
    max-width: 65%;
    min-width: 150px;
  }
}
.content-card:hover {
  transform: scale(1.05);
  z-index: 5;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.8);
}

.content-image {
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}

.content-card:hover .content-image {
  transform: scale(1.05);
}

.content-body {
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #1E293B;
}

.content-title {
  font-size: 18px;
  font-weight: 700;
  color: #F8FAFC;
  margin: 0;
  line-height: 1.3;
}

.content-meta {
  font-size: 13px;
  color: rgba(226,232,240,0.72);
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.content-rating {
  color: #ffd700;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 3px;
}

.content-year {
  color: rgba(226,232,240,0.72);
  font-size: 13px;
}

.content-type {
  background: rgba(220, 38, 38, 0.2);
  color: #E11D48;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.content-genres {
  font-size: 12px;
  color: #E11D48;
  font-weight: 600;
}

.content-description {
  font-size: 14px;
  color: #CBD5E1;
  line-height: 1.5;
  margin: 0;
}

.content-actions {
  margin-top: 10px;
  display: flex;
  gap: 10px;
}

/* Carousel navigation */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.carousel-nav {
  display: flex;
  gap: 10px;
}

.carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(30, 41, 59, 0.9);
  border: 2px solid #E11D48;
  color: #F8FAFC;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  line-height: 1;
  padding: 0;
}

.carousel-btn:hover {
  background: #E11D48;
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.6);
}

.carousel-wrapper {
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 20px;
}

.carousel-track .content-card {
  flex: 0 0 calc(25% - 15px);
  max-width: calc(25% - 15px);
}

@media (max-width: 1200px) {
  .carousel-track .content-card {
    flex: 0 0 calc(33.333% - 14px);
    max-width: calc(33.333% - 14px);
  }
}

@media (max-width: 900px) {
  .carousel-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  
  .carousel-wrapper::-webkit-scrollbar {
    height: 4px;
  }
  
  .carousel-wrapper::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
  }
  
  .carousel-wrapper::-webkit-scrollbar-thumb {
    background: rgba(220, 38, 38, 0.5);
    border-radius: 2px;
  }
  
  .carousel-track {
    transition: none;
    transform: none !important;
  }
  
  .carousel-track .content-card {
    flex: 0 0 48%;
    max-width: 48%;
    min-width: 160px;
  }
  
  .carousel-nav {
    display: none;
  }
}

@media (max-width: 600px) {
  .carousel-track .content-card {
    flex: 0 0 65%;
    max-width: 65%;
    min-width: 150px;
  }
}

/* Play button on hover */
.card-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(220, 38, 38, 0.95);
  color: #F8FAFC;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  z-index: 10;
  border: 3px solid #F8FAFC;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.8);
}

.content-card:hover .card-play-button {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.card-play-button:hover {
  background: #BE123C;
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 6px 30px rgba(220, 38, 38, 0.9);
}

.content-image {
  position: relative;
}

/* Footer styles and animations */
.footer {
  position: relative;
  padding: 60px 50px 30px;
  color: rgba(248,250,252,0.82);
  margin-top: auto;
  overflow: hidden;
  background: #0F172A;
  border-top: 1px solid rgba(148,163,184,0.18);
}

.footer-background {
  display: none;
}

.footer-content {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  z-index: 1;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(148,163,184,0.18);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-logo {
  margin-bottom: 8px;
}

.footer-logo-text {
  font-size: 36px;
  font-weight: 700;
  color: #E11D48;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.footer-about {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(226,232,240,0.72);
  max-width: 500px;
}

.footer-social h4 {
  font-size: 14px;
  font-weight: 600;
  color: #E11D48;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E11D48;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(220, 38, 38, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.social-link:hover {
  background: rgba(220, 38, 38, 0.2);
  border-color: #E11D48;
  color: #E11D48;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}

.social-link:hover::before {
  width: 100px;
  height: 100px;
}

.social-link svg {
  position: relative;
  z-index: 1;
}

.footer-subscribe {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(220, 38, 38, 0.05) 100%);
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(10px);
}

.subscribe-form label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  color: #F8FAFC;
  font-weight: 600;
  font-size: 16px;
}

.subscribe-icon {
  font-size: 20px;
  display: flex;
  align-items: center;
  color: #E11D48;
}

.subscribe-icon svg {
  width: 20px;
  height: 20px;
}

.subscribe-description {
  font-size: 13px;
  color: rgba(226,232,240,0.72);
  margin-bottom: 20px;
  line-height: 1.5;
}

.subscribe-row {
  display: flex;
  gap: 12px;
}

.subscribe-row input[type="email"] {
  flex: 1;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid rgba(220, 38, 38, 0.3);
  background: rgba(15, 23, 42, 0.3);
  color: #0F172A;
  font-size: 15px;
  transition: all 0.3s ease;
}

.subscribe-row input[type="email"]:focus {
  outline: none;
  border-color: #E11D48;
  background: rgba(15, 23, 42, 0.4);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.subscribe-row input[type="email"]::placeholder {
  color: rgba(226,232,240,0.72);
}

.btn-subscribe {
  padding: 14px 28px;
  border-radius: 12px;
  background: #E11D48;
  color: #F8FAFC;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-subscribe::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}

.btn-subscribe:hover {
  background: #BE123C;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.btn-subscribe:hover::before {
  width: 200px;
  height: 200px;
}

.subscribe-success {
  margin-top: 16px;
  padding: 12px 16px;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 10px;
  color: #4ade80;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: successPop 0.6s ease;
}

.success-icon {
  font-size: 18px;
  display: flex;
  align-items: center;
  color: #4ade80;
}

.success-icon svg {
  width: 18px;
  height: 18px;
}

@keyframes successPop {
  from { transform: translateY(-6px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 50px;
  margin-bottom: 50px;
}

.footer-column h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #F8FAFC;
  position: relative;
  padding-bottom: 12px;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: #E11D48;
  border-radius: 2px;
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  color: rgba(226,232,240,0.72);
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  padding-left: 0;
}

.footer-link::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
  color: #E11D48;
}

.footer-link:hover {
  color: #E11D48;
  padding-left: 20px;
  transform: translateX(5px);
}

.footer-link:hover::before {
  opacity: 1;
  left: 0;
  color: #E11D48;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-icon {
  font-size: 18px;
  color: #E11D48;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(148,163,184,0.18);
  flex-wrap: wrap;
  gap: 20px;
}

.footer-company-info {
  font-size: 14px;
  color: rgba(226,232,240,0.72);
  line-height: 1.8;
}

.footer-company-info strong {
  color: #E11D48;
  font-size: 16px;
  display: block;
  margin-bottom: 8px;
}

.company-address {
  color: rgba(226,232,240,0.72);
  font-size: 13px;
}

.footer-copyright {
  text-align: right;
}

.footer-copyright p {
  font-size: 13px;
  color: rgba(226,232,240,0.72);
  margin: 4px 0;
}

.footer-made-with {
  font-size: 12px;
  color: #475569;
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.heart-icon {
  color: #ef4444;
  width: 14px;
  height: 14px;
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 60px 30px 20px;
  }
  
  .footer-top {
    padding-bottom: 40px;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  
  .footer-copyright {
    text-align: left;
    width: 100%;
  }
  
  .subscribe-row {
    flex-direction: column;
  }
  
  .btn-subscribe {
    width: 100%;
  }
}

.play-trailer-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #E11D48;
  color: #F8FAFC;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.play-trailer-btn:hover {
  background: #BE123C;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.5);
}

.trailer-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  animation: fadeIn 0.3s ease;
  backdrop-filter: blur(10px);
}

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

.trailer-modal-content {
  position: relative;
  width: 70%;
  max-width: 1200px;
  aspect-ratio: 16/9;
  animation: scaleIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.trailer-modal iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.9);
}

.modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: rgba(220, 38, 38, 0.9);
  color: #F8FAFC;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: linear-gradient(135deg, #E11D48, #BE123C);
  transform: rotate(90deg);
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}


.legal-page {
  flex: 1;
  padding: 120px 20px 50px;
  max-width: 900px;
  margin: 0 auto;
  animation: fadeInUp 0.6s ease-out;
}

.legal-hero {
  text-align: center;
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 2px solid rgba(220, 38, 38, 0.2);
}

.legal-page h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  background: linear-gradient(135deg, #E11D48 0%, #BE123C 50%, #991B1B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.legal-intro {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(226,232,240,0.72);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.legal-contact-section {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 2px solid rgba(220, 38, 38, 0.2);
}

.legal-page h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 50px;
  color: #F8FAFC;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(220, 38, 38, 0.3);
}

.legal-contact-intro {
  text-align: center;
  font-size: 16px;
  color: rgba(226,232,240,0.72);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.legal-contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.legal-contact-card {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(30, 30, 30, 0.8) 100%);
  padding: 35px;
  border-radius: 20px;
  border: 2px solid rgba(220, 38, 38, 0.2);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.legal-contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #E11D48, #BE123C);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.legal-contact-card:hover {
  transform: translateY(-5px);
  border-color: rgba(220, 38, 38, 0.5);
  box-shadow: 0 15px 40px rgba(220, 38, 38, 0.2);
}

.legal-contact-card:hover::before {
  transform: scaleX(1);
}

.contact-card-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(244, 6, 18, 0.2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #E11D48;
  transition: all 0.4s ease;
}

.legal-contact-card:hover .contact-card-icon {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.4), rgba(244, 6, 18, 0.4));
  transform: scale(1.1) rotate(5deg);
}

.legal-contact-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: #F8FAFC;
  margin-bottom: 15px;
}

.contact-link {
  color: #E11D48;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

.contact-link:hover {
  color: #BE123C;
}

.contact-address {
  color: rgba(226,232,240,0.72);
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}

.legal-page h3 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #F8FAFC;
}

.legal-page p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: rgba(226,232,240,0.72);
  text-align: left;
}

.legal-page > p:first-of-type {
  text-align: center;
  font-style: italic;
  color: #999;
}

.legal-page ul, .legal-page ol {
  margin-left: 30px;
  margin-bottom: 20px;
  color: rgba(226,232,240,0.72);
  padding-left: 20px;
}

.legal-page li {
  margin-bottom: 10px;
  line-height: 1.8;
}

.legal-page strong {
  color: rgba(248,250,252,0.82);
}

.legal-page a {
  color: #E11D48;
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-page a:hover {
  color: #BE123C;
}

.legal-page table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  overflow-x: auto;
  display: block;
  border-radius: 8px;
  overflow: hidden;
}

.legal-page th, .legal-page td {
  border: 1px solid rgba(148,163,184,0.18);
  padding: 12px;
  text-align: left;
  min-width: 120px;
  display: table-cell;
}

.legal-page th {
  background-color: #E5E7EB;
  font-weight: 600;
  color: #E11D48;
  white-space: nowrap;
}

.legal-page tbody {
  display: table-row-group;
}

.legal-page thead {
  display: table-header-group;
}

.legal-page tr {
  display: table-row;
}

.legal-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
  margin-bottom: 80px;
}

.legal-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
  margin-bottom: 60px;
  max-width: 100%;
}

.legal-card-link {
  text-decoration: none;
  display: block;
}

.legal-card {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(30, 30, 30, 0.8) 100%);
  padding: 40px 35px;
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(220, 38, 38, 0.2);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.legal-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0F172A, #E11D48, #BE123C);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.legal-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.legal-card:hover {
  transform: translateY(-8px) scale(1.02);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(220, 38, 38, 0.4) 100%);
  border-color: rgba(220, 38, 38, 0.6);
  box-shadow: 0 20px 60px rgba(220, 38, 38, 0.3);
}

.legal-card:hover::before {
  transform: scaleX(1);
}

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

.legal-card-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  transition: transform 0.4s ease;
}

.legal-card:hover .legal-card-icon {
  transform: scale(1.1) rotate(5deg);
}

.legal-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #F8FAFC;
  font-weight: 700;
}

.legal-card-title {
  font-size: 24px;
  margin-bottom: 15px;
  color: #F8FAFC;
  font-weight: 700;
}

.legal-card p {
  font-size: 15px;
  margin-bottom: 20px;
  color: rgba(226,232,240,0.72);
  line-height: 1.6;
  flex-grow: 1;
}

.legal-card-desc {
  font-size: 15px;
  margin-bottom: 20px;
  color: rgba(226,232,240,0.72);
  line-height: 1.6;
  flex-grow: 1;
}

.legal-card-arrow {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #E11D48;
  font-weight: 600;
  font-size: 15px;
  margin-top: auto;
  transition: all 0.3s ease;
}

.legal-card:hover .legal-card-arrow {
  color: #BE123C;
  transform: translateX(5px);
}

.legal-card-arrow svg {
  transition: transform 0.3s ease;
}

.legal-card:hover .legal-card-arrow svg {
  transform: translateX(3px);
}

@media (max-width: 1200px) {
  .hero-content {
    gap: 40px;
    padding: 0 40px;
  }

  .hero-title {
    font-size: 100px;
  }

  .hero-watch-btn {
    min-width: 250px;
    padding: 20px 35px;
  }

  .hero-info .hero-title {
    font-size: 100px;
  }

  .hero-info .hero-description {
    font-size: 22px;
  }
}

@media (max-width: 1024px) {
  .hero {
    height: 85vh;
    min-height: 650px;
    padding: 0 40px;
  }

  .hero-content {
    gap: 35px;
    padding: 0 30px;
  }

  .hero-title {
    font-size: 85px;
  }

  .hero-description {
    font-size: 22px;
  }

  .hero-watch-btn {
    min-width: 240px;
    padding: 22px 32px;
    gap: 18px;
  }

  .hero-btn-icon {
    width: 55px;
    height: 55px;
  }

  .hero-btn-label {
    font-size: 22px;
  }

  .hero-nav {
    bottom: 50px;
    padding: 10px 20px;
  }

  .hero-info .hero-title {
    font-size: 85px;
  }

  .hero-info .hero-description {
    font-size: 21px;
  }
}

@media (max-width: 900px) {
  .hero-section {
    height: calc(100vh - 80px);
    margin-top: 80px;
    min-height: 550px;
  }

  .hero-info {
    top: 50%;
    transform: translateY(-50%);
    left: 30px;
    max-width: calc(100% - 60px);
  }

  .hero-info .hero-title {
    font-size: 64px;
  }

  .hero-info .hero-description {
    font-size: 20px;
  }

  .hero-dots {
    right: 30px;
    bottom: 20px;
  }

  .content-section {
    padding: 40px 30px;
  }

  .hero {
    height: 80vh;
    min-height: 600px;
    padding: 0 30px;
  }

  .hero-content {
    gap: 30px;
    padding: 0 20px;
  }

  .hero-content-left {
    max-width: 100%;
    text-align: left;
  }

  .hero-content-right {
    justify-content: flex-start;
    width: 100%;
  }

  .hero-title {
    font-size: 64px;
  }

  .hero-description {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .hero-meta {
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
  }

  .hero-watch-btn {
    width: 100%;
    max-width: 400px;
    min-width: auto;
    padding: 20px 30px;
    gap: 15px;
    margin: 0 auto;
  }

  .hero-btn-icon {
    width: 50px;
    height: 50px;
  }

  .hero-btn-icon svg {
    width: 24px;
    height: 24px;
  }

  .hero-btn-label {
    font-size: 20px;
  }

  .hero-btn-subtitle {
    font-size: 12px;
  }

  .hero-btn-arrow {
    display: none;
  }

  .hero-nav {
    bottom: 35px;
    padding: 0;
    gap: 0;
    max-width: calc(100vw - 60px);
  }

  .hero-dots-container {
    gap: 8px;
  }

  .hero-dot {
    width: 7px;
    height: 7px;
  }

  .hero-dot.active {
    width: 28px;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 15px 20px;
  }

  .hero-section {
    height: calc(100vh - 70px);
    margin-top: 70px;
    min-height: 500px;
  }

  .hero-info {
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
    max-width: calc(100% - 40px);
  }

  .hero-info .hero-title {
    font-size: 48px;
  }

  .hero-info .hero-description {
    font-size: 18px;
    max-width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-dots {
    right: 20px;
    bottom: 15px;
  }

  .content-section {
    padding: 30px 20px;
  }

  .content-card {
    flex: 0 0 65%;
    max-width: 65%;
    min-width: 150px;
  }

  .header-logo {
    font-size: 24px;
  }

  .header-nav {
    gap: 15px;
  }

  .header-nav a {
    font-size: 12px;
  }

  .hero {
    height: 75vh;
    min-height: 550px;
    padding: 0 20px;
  }

  .hero-content {
    gap: 25px;
    padding: 0 15px;
  }

  .hero-title {
    font-size: 56px;
    margin-bottom: 15px;
  }

  .hero-badge {
    font-size: 11px;
    padding: 6px 16px;
    margin-bottom: 12px;
  }

  .hero-description {
    font-size: 15px;
    margin-bottom: 25px;
    line-height: 1.5;
  }

  .hero-meta {
    font-size: 13px;
    gap: 12px;
    margin-bottom: 20px;
  }

  .hero-watch-btn {
    width: 100%;
    max-width: 100%;
    padding: 18px 24px;
    gap: 12px;
    font-size: 18px;
  }

  .hero-btn-icon {
    width: 45px;
    height: 45px;
  }

  .hero-btn-icon svg {
    width: 20px;
    height: 20px;
  }

  .hero-btn-label {
    font-size: 18px;
  }

  .hero-btn-subtitle {
    font-size: 11px;
  }

  .hero-nav {
    bottom: 30px;
    padding: 0;
    gap: 0;
    max-width: calc(100vw - 40px);
  }

  .hero-dots-container {
    gap: 7px;
  }

  .hero-dot {
    width: 7px;
    height: 7px;
  }

  .hero-dot.active {
    width: 20px;
  }

  .btn-primary, .btn-secondary {
    padding: 12px 25px;
    font-size: 16px;
  }

  .content-section {
    padding: 30px 15px;
  }

  .content-row {
    margin-bottom: 50px;
    padding: 20px 0;
  }

  .content-row h2 {
    font-size: 28px;
    padding-left: 0;
    margin-bottom: 20px;
  }

  .content-row h2::before {
    width: 4px;
    height: 28px;
  }

  .content-row-wrapper {
    margin: 0;
  }

  .content-scroll {
    gap: 12px;
    padding: 10px 0;
  }
  
  .scroll-arrow {
    display: none;
  }

  .content-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
  }

  .content-card img {
    height: 225px;
  }

  .footer {
    padding: 40px 20px 20px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .legal-page {
    padding: 100px 20px 30px;
  }

  .legal-hero {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }

  .legal-page h1 {
    font-size: 36px;
  }

  .legal-page h2 {
    font-size: 28px;
  }

  .legal-page h3 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 12px;
  }

  .legal-intro {
    font-size: 16px;
  }

  .legal-page table {
    font-size: 14px;
    margin: 15px 0;
    overflow-x: auto;
    display: block;
  }

  .legal-page th, .legal-page td {
    padding: 10px 8px;
    font-size: 13px;
  }

  .legal-page p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
  }

  .legal-page ul, .legal-page ol {
    margin-left: 20px;
    font-size: 14px;
    margin-bottom: 15px;
  }

  .legal-page li {
    margin-bottom: 8px;
    line-height: 1.6;
  }

  .legal-cards {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 50px;
  }

  .legal-contact-section {
    margin-top: 50px;
    padding-top: 40px;
  }

  .legal-contact-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    height: calc(100vh - 65px);
    margin-top: 65px;
    min-height: 450px;
  }

  .hero-info {
    top: 45%;
    left: 15px;
    max-width: calc(100% - 30px);
  }

  .legal-page {
    padding: 90px 12px 20px;
  }

  .legal-page h1 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .legal-page h2 {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .legal-page h3 {
    font-size: 16px;
    margin-top: 15px;
    margin-bottom: 10px;
  }

  .legal-page p {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 12px;
  }

  .legal-page ul, .legal-page ol {
    margin-left: 15px;
    font-size: 13px;
    margin-bottom: 12px;
  }

  .legal-page li {
    margin-bottom: 6px;
    line-height: 1.5;
  }

  .legal-page table {
    font-size: 12px;
    margin: 12px 0;
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .legal-page thead {
    display: block;
  }

  .legal-page tbody {
    display: block;
  }

  .legal-page tr {
    display: block;
    margin-bottom: 15px;
    border: 1px solid rgba(148,163,184,0.18);
    border-radius: 4px;
  }

  .legal-page th, .legal-page td {
    display: block;
    padding: 8px;
    border: none;
    text-align: left;
    font-size: 12px;
    min-width: unset;
    width: 100%;
    word-break: break-word;
  }

  .legal-page th {
    background-color: #1a1a1a;
    font-weight: 700;
    color: #60a5fa;
    display: none;
  }

  .legal-page td::before {
    content: attr(data-label);
    font-weight: 600;
    color: #60a5fa;
    display: inline-block;
    width: 40%;
    margin-right: 10px;
  }

  .legal-contact-section {
    margin-top: 40px;
    padding-top: 30px;
  }

  .legal-contact-cards {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .legal-contact-card {
    padding: 25px;
  }

  .hero {
    height: 70vh;
    min-height: 500px;
    padding: 0 15px;
  }

  .hero-content {
    gap: 20px;
    padding: 0 10px;
  }

  .hero-title {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 12px;
  }

  .hero-badge {
    font-size: 10px;
    padding: 5px 14px;
    margin-bottom: 10px;
  }

  .hero-description {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .hero-meta {
    font-size: 12px;
    gap: 10px;
    margin-bottom: 18px;
  }

  .hero-watch-btn {
    padding: 16px 20px;
    gap: 10px;
    font-size: 16px;
    border-radius: 16px;
  }

  .hero-btn-icon {
    width: 40px;
    height: 40px;
  }

  .hero-btn-icon svg {
    width: 18px;
    height: 18px;
  }

  .hero-btn-label {
    font-size: 16px;
  }

  .hero-btn-subtitle {
    font-size: 10px;
    letter-spacing: 1px;
  }

  .hero-nav {
    bottom: 20px;
    padding: 5px 10px;
    gap: 10px;
    max-width: calc(100vw - 30px);
    border-radius: 40px;
  }

  .hero-dots-container {
    gap: 6px;
  }

  .hero-dot {
    width: 6px;
    height: 6px;
  }

  .hero-dot.active {
    width: 18px;
  }
}

/* Featured Promo Sections */
.featured-promo {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.featured-promo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1400px;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(220, 38, 38, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.featured-promo .promo-container {
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-promo .promo-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 70px rgba(0,0,0,0.7);
}

.featured-promo .promo-content {
  position: relative;
}

@media (min-width: 1025px) {
  .featured-promo {
    min-height: 100vh;
    padding: clamp(20px, 4vh, 48px) 0;
    display: flex;
    align-items: stretch;
  }

  .featured-promo .promo-container {
    flex: 1;
    display: flex;
  }

  .featured-promo .promo-content {
    flex: 1;
    min-height: 100% !important;
    padding: clamp(28px, 5vh, 64px) clamp(24px, 4vw, 56px) !important;
    align-items: center;
  }
}

@media (max-width: 1024px) {
  .featured-promo .promo-content {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
    padding: 40px 30px !important;
    direction: ltr !important;
  }
  
  .featured-promo .promo-text {
    text-align: left !important;
    direction: ltr !important;
  }
  
  .featured-promo .promo-text > div[style*="justify-content"] {
    justify-content: flex-start !important;
  }
  
  .featured-promo .promo-text > p[style*="margin-left"] {
    margin-left: 0 !important;
  }
  
  .featured-promo .promo-text h2 {
    font-size: 2.5em !important;
  }
  
  .featured-promo .promo-image {
    direction: ltr !important;
  }
  
  .featured-promo .promo-image > div {
    transform: perspective(1000px) rotateY(0deg) !important;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .featured-promo {
    padding: 50px 0;
  }
  
  .featured-promo .promo-container {
    border-radius: 16px !important;
  }
  
  .featured-promo .promo-content {
    padding: 30px 20px !important;
    gap: 30px !important;
  }
  
  .featured-promo .promo-text h2 {
    font-size: 2em !important;
  }
  
  .featured-promo .promo-text > div:first-of-type {
    font-size: 1em !important;
  }
  
  .featured-promo .promo-text p {
    font-size: 1em !important;
  }
  
  .featured-promo .promo-text button {
    padding: 12px 24px !important;
    font-size: 0.95em !important;
  }
  
  .featured-promo .promo-text > div[style*="display:flex"] {
    flex-direction: column;
    align-items: stretch !important;
  }
  
  .featured-promo .promo-text button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .featured-promo .promo-text h2 {
    font-size: 1.6em !important;
  }
  
  .featured-promo .promo-text > div[style*="font-size:1.3em"] {
    font-size: 1.1em !important;
  }
}
