.premiere-plans-container {
  max-width: 400px;
  margin: 0 auto;
  background: linear-gradient(to bottom, #000 80px, #1a1a1a 80px);
  min-height: 600px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.premiere-header {
  background: #000;
  padding: 20px;
  text-align: center;
}

.premiere-logo {
  display: inline-block;
  background: #3fb950;
  color: #000;
  padding: 8px 24px;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 2px;
  border-radius: 4px;
}

.premiere-content {
  padding: 32px 24px;
  color: #fff;
}

.premiere-title {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 24px 0;
  text-align: center;
}

.premiere-toggle {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  justify-content: center;
}

.toggle-btn {
  padding: 10px 20px;
  background: #2a2a2a;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.toggle-btn:hover {
  background: #333;
}

.toggle-btn.active {
  background: #3fb950;
  color: #000;
}

.carousel-wrapper {
  position: relative;
  margin-bottom: 20px;
}

.carousel-container {
  overflow: hidden;
  border-radius: 8px;
}

.carousel-track {
  display: flex;
  transition: transform 0.3s ease;
}

.carousel-track.hidden {
  display: none;
}

.plan-card {
  min-width: 100%;
  background: #2a2a2a;
  border-radius: 8px;
  padding: 24px;
  box-sizing: border-box;
}

.plan-title {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 24px 0;
  color: #fff;
}

.plan-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.plan-type {
  text-align: left;
}

.plan-type > div:first-child {
  font-size: 14px;
  color: #999;
  margin-bottom: 4px;
}

.plan-name {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.plan-price {
  text-align: right;
  font-size: 16px;
  color: #999;
}

.price-value {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin: 0 2px;
}

.plan-description {
  text-align: center;
  color: #ccc;
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 24px 0;
  padding: 16px;
  background: #1a1a1a;
  border-radius: 4px;
}

.subscribe-btn {
  display: block;
  width: 100%;
  padding: 14px;
  background: #3fb950;
  color: #000;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-bottom: 16px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.subscribe-btn:hover {
  background: #4ac959;
}

.details-btn {
  display: block;
  width: 100%;
  padding: 12px;
  background: transparent;
  color: #fff;
  text-align: center;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.details-btn:hover {
  color: #3fb950;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
}

.carousel-arrow:hover {
  background: rgba(63, 185, 80, 0.8);
}

.carousel-prev {
  left: -50px;
}

.carousel-next {
  right: -50px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #444;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #3fb950;
  width: 24px;
  border-radius: 4px;
}

.premiere-footer {
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .carousel-prev {
    left: 10px;
  }

  .carousel-next {
    right: 10px;
  }
}
