/* Netflix-Style Horizontal Scrolling Styles */

.netflix-scroll-container {
  position: relative;
  padding: 0;
  margin-bottom: 40px;
}

.netflix-scroll-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding: 0 40px;
}

.netflix-scroll-title {
  font-size: 26px;
  font-weight: 700;
  color: #1a1a1a;
}

.netflix-scroll-subtitle {
  font-size: 16px;
  color: #6b7280;
  margin-top: 5px;
}

.netflix-scroll-nav {
  display: flex;
  gap: 12px;
}

.netflix-scroll-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: 2px solid #e5e7eb;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.netflix-scroll-btn:hover {
  background: #f3f4f6;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.netflix-scroll-btn:active {
  transform: scale(0.95);
}

.netflix-scroll-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: scale(1);
}

.netflix-scroll-wrapper {
  position: relative;
  overflow: hidden;
  padding: 0 40px;
}

.netflix-scroll-track {
  display: flex;
  gap: 16px;
  overflow-x: scroll;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 20px;
}

.netflix-scroll-track::-webkit-scrollbar {
  display: none;
}

.netflix-card {
  flex: 0 0 auto;
  width: 320px;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 1px solid #e5e7eb;
}

.netflix-card:hover {
  transform: scale(1.05) translateY(-8px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.netflix-card-image {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.netflix-card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

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

.netflix-card-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  color: white;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
}

.netflix-card-content {
  padding: 18px;
}

.netflix-card-title {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.netflix-card-subtitle {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 10px;
}

.netflix-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #9ca3af;
}

/* Adventure Card Specific */
.adventure-card {
  width: 280px;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
}

.adventure-card:hover {
  transform: scale(1.08) translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.adventure-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s;
}

.adventure-card:hover .adventure-card-bg {
  transform: scale(1.15);
}

.adventure-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.adventure-card-icon {
  font-size: 40px;
  margin-bottom: 12px;
}

.adventure-card-title {
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
}

.adventure-card-count {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

/* Responsive */
@media (max-width: 768px) {
  .netflix-scroll-wrapper,
  .netflix-scroll-header {
    padding: 0 20px;
  }
  
  .netflix-card {
    width: 280px;
  }
  
  .adventure-card {
    width: 240px;
    height: 280px;
  }
}
