/* ========================
   New Banner Styles - 10 Effects
   ======================== */

.banner-new {
  width: 100%;
}

.banner-container {
  width: 100%;
  height: 520px;
  position: relative;
  overflow: hidden;
  background: #f8fafc;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.7s ease-in-out;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide-content {
  width: 1300px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  position: relative;
  z-index: 10;
}

.slide-text {
  flex: 1;
  max-width: 500px;
}

.product-label {
  display: inline-block;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: 16px;
}

.slide-text .product-name {
  font-family: 'Outfit', 'Noto Sans SC', sans-serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  line-height: 1.25;
}

.slide-text .product-desc {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 28px;
}

.product-features {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
}

.feature-item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.btn-detail {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: 'Outfit', 'Noto Sans SC', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.btn-detail svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.btn-detail:hover svg {
  transform: translateX(4px);
}

.slide-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide-image img {
  max-height: 300px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.12));
  position: relative;
  z-index: 2;
  background: transparent !important;
}

.slide.active .slide-image img {
  animation: productFloat 5s ease-in-out infinite;
}

@keyframes productFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(0.5deg); }
}

/* Navigation */
.nav-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 100;
}

.nav-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,0.12);
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-dot:hover {
  background: rgba(0,0,0,0.25);
}

.nav-dot.active {
  width: 24px;
  border-radius: 4px;
}

.slide-counter {
  position: absolute;
  bottom: 22px;
  right: 60px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  color: rgba(0,0,0,0.4);
  z-index: 100;
}

/* Banner Navigation Buttons */
.banner-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  transition: all 0.3s ease;
  color: #475569;
}

.banner-nav-btn svg {
  width: 20px;
  height: 20px;
}

.banner-nav-btn:hover {
  background: #fff;
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
  transform: translateY(-50%) scale(1.05);
  color: #3b82f6;
}

.banner-nav-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.banner-nav-btn--prev {
  left: 24px;
}

.banner-nav-btn--next {
  right: 24px;
}

/* ========== Effect 1: Flowing Particles ========== */
.effect-particles {
  background: linear-gradient(135deg, #fafbfc 0%, #f0f4f8 100%);
}

.effect-particles .particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  border-radius: 50%;
  animation: particleFlow linear infinite;
}

@keyframes particleFlow {
  0% { transform: translateY(520px) translateX(0) scale(0); opacity: 0; }
  10% { opacity: 1; transform: scale(1); }
  90% { opacity: 1; }
  100% { transform: translateY(-50px) translateX(30px) scale(0.5); opacity: 0; }
}

.effect-particles .flow-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59,130,246,0.2), transparent);
  animation: flowLine 8s linear infinite;
}

@keyframes flowLine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100vw); }
}

.effect-particles .product-label {
  background: rgba(59,130,246,0.1);
  color: #2563eb;
}

.effect-particles .product-name { color: #1e3a5f; }
.effect-particles .product-desc { color: #64748b; }
.effect-particles .feature-item { color: #475569; }
.effect-particles .feature-item::before { background: #3b82f6; }

.effect-particles .btn-detail {
  background: linear-gradient(135deg, #3b82f6, #0ea5e9);
  color: #fff;
}

.effect-particles .btn-detail:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59,130,246,0.35);
}

.effect-particles .image-wrapper .image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(59,130,246,0.15), transparent 70%);
  border-radius: 50%;
  animation: glowPulse 4s ease-in-out infinite;
  z-index: 1;
}

@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 1; }
}

/* ========== Effect 2: Geometric Grid ========== */
.effect-grid {
  background: #ffffff;
}

.effect-grid .grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.effect-grid .grid-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(139,92,246,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139,92,246,0.04) 1px, transparent 1px);
  background-size: 180px 180px;
}

.effect-grid .geo-shape {
  position: absolute;
  border: 1px solid rgba(139,92,246,0.15);
  animation: geoRotate 20s linear infinite;
}

.effect-grid .geo-shape:nth-child(1) {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 15%;
  border-radius: 50%;
}

.effect-grid .geo-shape:nth-child(2) {
  width: 120px;
  height: 120px;
  bottom: 20%;
  left: 10%;
  animation-direction: reverse;
}

@keyframes geoRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.effect-grid .corner-line {
  position: absolute;
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}

.effect-grid .corner-line:nth-child(3) {
  top: 40px;
  left: 40px;
  width: 60px;
  height: 2px;
}

.effect-grid .corner-line:nth-child(4) {
  top: 40px;
  left: 40px;
  width: 2px;
  height: 60px;
}

.effect-grid .corner-line:nth-child(5) {
  bottom: 40px;
  right: 40px;
  width: 60px;
  height: 2px;
}

.effect-grid .corner-line:nth-child(6) {
  bottom: 40px;
  right: 40px;
  width: 2px;
  height: 60px;
}

.effect-grid .product-label { background: rgba(139,92,246,0.1); color: #7c3aed; }
.effect-grid .product-name { color: #1e1b4b; }
.effect-grid .product-desc { color: #6b7280; }
.effect-grid .feature-item { color: #4b5563; }
.effect-grid .feature-item::before { background: #8b5cf6; }

.effect-grid .btn-detail {
  background: transparent;
  border: 2px solid #8b5cf6;
  color: #7c3aed;
}

.effect-grid .btn-detail:hover {
  background: #8b5cf6;
  color: #fff;
}

/* ========== Effect 3: Light Beam ========== */
.effect-beam {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.effect-beam .beam {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, 
    transparent 0%,
    rgba(236,72,153,0.03) 50%,
    transparent 100%);
  animation: beamScan 6s ease-in-out infinite;
}

@keyframes beamScan {
  0%, 100% { transform: translateY(-100%); }
  50% { transform: translateY(100%); }
}

.effect-beam .beam-horizontal {
  position: absolute;
  height: 200px;
  left: 0;
  right: 0;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(236,72,153,0.05) 50%,
    transparent 100%);
  animation: beamHorizontal 8s ease-in-out infinite;
}

@keyframes beamHorizontal {
  0%, 100% { top: 20%; opacity: 0.5; }
  50% { top: 60%; opacity: 1; }
}

.effect-beam .diagonal-line {
  position: absolute;
  width: 300px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(236,72,153,0.3), transparent);
  transform: rotate(-45deg);
  animation: diagonalMove 10s linear infinite;
}

@keyframes diagonalMove {
  0% { transform: rotate(-45deg) translateX(-100%); }
  100% { transform: rotate(-45deg) translateX(1000px); }
}

.effect-beam .product-label { background: rgba(236,72,153,0.1); color: #db2777; }
.effect-beam .product-name { color: #831843; }
.effect-beam .product-desc { color: #6b7280; }
.effect-beam .feature-item { color: #4b5563; }
.effect-beam .feature-item::before { background: #ec4899; }

.effect-beam .btn-detail {
  background: linear-gradient(135deg, #ec4899, #f43f5e);
  color: #fff;
}

.effect-beam .btn-detail:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(236,72,153,0.35);
}

/* ========== Effect 4: Glass Cards ========== */
.effect-glass {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.effect-glass .glass-card {
  position: absolute;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 16px;
  animation: cardFloat 8s ease-in-out infinite;
}

.effect-glass .glass-card:nth-child(1) {
  width: 140px;
  height: 100px;
  top: 15%;
  right: 12%;
  animation-delay: 0s;
}

.effect-glass .glass-card:nth-child(2) {
  width: 100px;
  height: 120px;
  top: 35%;
  left: 8%;
  animation-delay: 2s;
}

.effect-glass .glass-card:nth-child(3) {
  width: 80px;
  height: 80px;
  bottom: 20%;
  right: 20%;
  animation-delay: 4s;
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
}

.effect-glass .blur-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14,165,233,0.15), transparent 70%);
  animation: blurPulse 6s ease-in-out infinite;
}

.effect-glass .blur-circle:nth-child(4) {
  width: 400px;
  height: 400px;
  top: -100px;
  left: -100px;
}

.effect-glass .blur-circle:nth-child(5) {
  width: 300px;
  height: 300px;
  bottom: -100px;
  right: -50px;
  animation-delay: 3s;
}

@keyframes blurPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.effect-glass .product-label { background: rgba(14,165,233,0.1); color: #0284c7; }
.effect-glass .product-name { color: #0c4a6e; }
.effect-glass .product-desc { color: #64748b; }
.effect-glass .feature-item { color: #475569; }
.effect-glass .feature-item::before { background: #0ea5e9; }

.effect-glass .btn-detail {
  background: rgba(14,165,233,0.1);
  border: 1px solid rgba(14,165,233,0.3);
  color: #0284c7;
}

.effect-glass .btn-detail:hover {
  background: #0ea5e9;
  color: #fff;
}

/* ========== Effect 5: Circuit Lines ========== */
.effect-circuit {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.effect-circuit .circuit-line {
  position: absolute;
  background: rgba(34,197,94,0.2);
  animation: circuitGrow 4s ease-in-out infinite;
}

.effect-circuit .circuit-line.horizontal {
  height: 2px;
}

.effect-circuit .circuit-line.vertical {
  width: 2px;
}

@keyframes circuitGrow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.effect-circuit .node {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: nodePulse 2s ease-in-out infinite;
}

@keyframes nodePulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50% { transform: scale(1.2); box-shadow: 0 0 0 8px rgba(34,197,94,0); }
}

.effect-circuit .product-label { background: rgba(34,197,94,0.1); color: #16a34a; }
.effect-circuit .product-name { color: #14532d; }
.effect-circuit .product-desc { color: #6b7280; }
.effect-circuit .feature-item { color: #4b5563; }
.effect-circuit .feature-item::before { background: #22c55e; }

.effect-circuit .btn-detail {
  background: linear-gradient(135deg, #22c55e, #10b981);
  color: #fff;
}

.effect-circuit .btn-detail:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(34,197,94,0.35);
}

/* ========== Effect 6: Holographic ========== */
.effect-holo {
  background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
}

.effect-holo .holo-gradient {
  position: absolute;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse at 30% 20%, rgba(168,85,247,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(236,72,153,0.08) 0%, transparent 50%);
  animation: holoShift 10s ease-in-out infinite;
}

@keyframes holoShift {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; }
}

.effect-holo .holo-ring {
  position: absolute;
  border: 1px solid rgba(168,85,247,0.15);
  border-radius: 50%;
  animation: ringExpand 8s ease-in-out infinite;
}

.effect-holo .holo-ring:nth-child(2) { width: 250px; height: 250px; top: 5%; right: 10%; }
.effect-holo .holo-ring:nth-child(3) { width: 180px; height: 180px; bottom: 15%; left: 5%; animation-delay: 2s; }

@keyframes ringExpand {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 1; }
}

.effect-holo .holo-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168,85,247,0.3), rgba(236,72,153,0.3), transparent);
  animation: holoLine 6s ease-in-out infinite;
}

@keyframes holoLine {
  0%, 100% { transform: scaleX(0.8); opacity: 0.5; }
  50% { transform: scaleX(1); opacity: 1; }
}

.effect-holo .product-label { 
  background: linear-gradient(135deg, rgba(168,85,247,0.1), rgba(236,72,153,0.1));
  color: #a855f7;
}

.effect-holo .product-name { 
  background: linear-gradient(135deg, #7c3aed, #db2777);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.effect-holo .product-desc { color: #6b7280; }
.effect-holo .feature-item { color: #4b5563; }
.effect-holo .feature-item::before { background: linear-gradient(135deg, #a855f7, #ec4899); }

.effect-holo .btn-detail {
  background: linear-gradient(135deg, #a855f7, #ec4899);
  color: #fff;
}

.effect-holo .btn-detail:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(168,85,247,0.35);
}

/* ========== Effect 7: Data Visualization ========== */
.effect-data {
  background: #ffffff;
}

.effect-data .data-dot {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(245,158,11,0.4);
  border-radius: 50%;
  animation: dataBlink 3s ease-in-out infinite;
}

@keyframes dataBlink {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.5); }
}

.effect-data .data-line {
  position: absolute;
  height: 1px;
  background: rgba(245,158,11,0.15);
}

.effect-data .data-bar {
  position: absolute;
  width: 8px;
  background: linear-gradient(180deg, rgba(245,158,11,0.3), transparent);
  border-radius: 4px 4px 0 0;
  animation: barGrow 4s ease-in-out infinite;
}

@keyframes barGrow {
  0%, 100% { transform: scaleY(0.5); }
  50% { transform: scaleY(1); }
}

.effect-data .corner-frame {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 1px solid rgba(245,158,11,0.2);
}

.effect-data .corner-frame.top-left { top: 30px; left: 30px; border-right: none; border-bottom: none; }
.effect-data .corner-frame.bottom-right { bottom: 30px; right: 30px; border-left: none; border-top: none; }

.effect-data .product-label { background: rgba(245,158,11,0.1); color: #d97706; }
.effect-data .product-name { color: #78350f; }
.effect-data .product-desc { color: #6b7280; }
.effect-data .feature-item { color: #4b5563; }
.effect-data .feature-item::before { background: #f59e0b; }

.effect-data .btn-detail {
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #fff;
}

.effect-data .btn-detail:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,158,11,0.35);
}

/* ========== Effect 8: Wave Curves ========== */
.effect-wave {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.effect-wave .wave {
  position: absolute;
  width: 200%;
  height: 100px;
  left: -50%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 100'%3E%3Cpath fill='none' stroke='rgba(99,102,241,0.1)' stroke-width='1' d='M0,50 Q150,20 300,50 T600,50 T900,50 T1200,50'/%3E%3C/svg%3E") repeat-x;
  animation: waveFlow 15s linear infinite;
}

.effect-wave .wave:nth-child(1) { top: 10%; animation-duration: 15s; }
.effect-wave .wave:nth-child(2) { top: 30%; animation-duration: 18s; animation-direction: reverse; }
.effect-wave .wave:nth-child(3) { top: 50%; animation-duration: 20s; }
.effect-wave .wave:nth-child(4) { top: 70%; animation-duration: 16s; animation-direction: reverse; }

@keyframes waveFlow {
  0% { transform: translateX(0); }
  100% { transform: translateX(50%); }
}

.effect-wave .wave-blob {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,0.08), transparent 70%);
  animation: blobFloat 10s ease-in-out infinite;
}

.effect-wave .wave-blob:nth-child(5) { width: 350px; height: 350px; right: -50px; top: 20%; }
.effect-wave .wave-blob:nth-child(6) { width: 250px; height: 250px; left: -80px; bottom: 10%; animation-delay: 3s; }

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(10px, -20px) scale(1.05); }
  66% { transform: translate(-10px, 10px) scale(0.95); }
}

.effect-wave .product-label { background: rgba(99,102,241,0.1); color: #4f46e5; }
.effect-wave .product-name { color: #312e81; }
.effect-wave .product-desc { color: #6b7280; }
.effect-wave .feature-item { color: #4b5563; }
.effect-wave .feature-item::before { background: #6366f1; }

.effect-wave .btn-detail {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff;
}

.effect-wave .btn-detail:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(99,102,241,0.35);
}

/* ========== Effect 9: Star Dots ========== */
.effect-stars {
  background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
}

.effect-stars .star {
  position: absolute;
  width: 3px;
  height: 3px;
  background: #64748b;
  border-radius: 50%;
  animation: starTwinkle 3s ease-in-out infinite;
}

@keyframes starTwinkle {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}

.effect-stars .star::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(100,116,139,0.3), transparent);
  top: 1px;
  left: -8px;
}

.effect-stars .orbit {
  position: absolute;
  border: 1px dashed rgba(100,116,139,0.1);
  border-radius: 50%;
  animation: orbitRotate 30s linear infinite;
}

.effect-stars .orbit:nth-child(odd) {
  animation-direction: reverse;
}

@keyframes orbitRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.effect-stars .product-label { background: rgba(100,116,139,0.1); color: #475569; }
.effect-stars .product-name { color: #1e293b; }
.effect-stars .product-desc { color: #64748b; }
.effect-stars .feature-item { color: #475569; }
.effect-stars .feature-item::before { background: #64748b; }

.effect-stars .btn-detail {
  background: #334155;
  color: #fff;
}

.effect-stars .btn-detail:hover {
  background: #1e293b;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(51,65,85,0.35);
}

/* ========== Effect 10: Perspective Grid ========== */
.effect-perspective {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.effect-perspective .perspective-grid {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: 
    linear-gradient(90deg, transparent 49%, rgba(79,70,229,0.08) 49%, rgba(79,70,229,0.08) 51%, transparent 51%),
    linear-gradient(0deg, rgba(79,70,229,0.05) 1px, transparent 1px);
  background-size: 80px 40px, 100% 50px;
  transform: perspective(400px) rotateX(60deg);
  transform-origin: bottom;
}

.effect-perspective .depth-line {
  position: absolute;
  width: 1px;
  background: linear-gradient(180deg, rgba(79,70,229,0.3), transparent);
  animation: depthPulse 5s ease-in-out infinite;
}

@keyframes depthPulse {
  0%, 100% { opacity: 0.3; height: 100px; }
  50% { opacity: 1; height: 150px; }
}

.effect-perspective .floating-rect {
  position: absolute;
  background: linear-gradient(135deg, rgba(79,70,229,0.05), rgba(99,102,241,0.08));
  border: 1px solid rgba(79,70,229,0.1);
  animation: rectFloat 12s ease-in-out infinite;
}

@keyframes rectFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-10px) rotate(1deg); }
  75% { transform: translateY(10px) rotate(-1deg); }
}

.effect-perspective .product-label { background: rgba(79,70,229,0.1); color: #4f46e5; }
.effect-perspective .product-name { color: #312e81; }
.effect-perspective .product-desc { color: #6b7280; }
.effect-perspective .feature-item { color: #4b5563; }
.effect-perspective .feature-item::before { background: #4f46e5; }

.effect-perspective .btn-detail {
  background: transparent;
  border: 2px solid #4f46e5;
  color: #4f46e5;
}

.effect-perspective .btn-detail:hover {
  background: #4f46e5;
  color: #fff;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .banner-new *, .banner-new *::before, .banner-new *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Responsive */
@media (max-width: 1400px) {
  .slide-content { width: 100%; padding: 0 40px; }
}

@media (max-width: 900px) {
  .banner-container { height: 600px; }
  
  .slide-content {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 24px;
  }

  .slide-text { max-width: 100%; margin-bottom: 24px; }
  .slide-text .product-name { font-size: 28px; }
  .product-features { justify-content: center; }
  .slide-image img { max-height: 200px; }
  .slide-counter { display: none; }
  
  .banner-nav-btn {
    width: 40px;
    height: 40px;
  }
  
  .banner-nav-btn svg {
    width: 18px;
    height: 18px;
  }
  
  .banner-nav-btn--prev {
    left: 12px;
  }
  
  .banner-nav-btn--next {
    right: 12px;
  }
}
