
  .gallery-stage {
    height: 600px;
    width: 100%;
    max-width: 1000px; 
    perspective: 1000px;
  }

  .gallery-item {
    position: absolute;
    top: 0;
    left: 50%;
    width: 280px; 
    height: 580px; 
    transform-origin: center center;
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    opacity: 0;
    transform: translateX(-50%) scale(0.8);
    z-index: 0;
    border-radius: 40px;
    overflow: visible; 
  }

  .image-container {
    width: 100%;
    height: 100%;
    border-radius: 35px; 
    overflow: hidden;
    background: #000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
  }
  .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .gallery-item.active {
    opacity: 1;
    transform: translateX(-50%) scale(1);
    z-index: 10;
  }

  .gallery-item.prev {
    opacity: 0.6;
    transform: translateX(-140%) scale(0.85) rotateY(15deg); 
    z-index: 5;
    cursor: pointer;
  }

  .gallery-item.next {
    opacity: 0.6;
    transform: translateX(40%) scale(0.85) rotateY(-15deg); 
    z-index: 5;
    cursor: pointer;
  }

  .phone-frame {
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    border: 12px solid #1e293b; 
    border-radius: 50px;
    pointer-events: none;
    z-index: 20;
    opacity: 0; 
    transition: opacity 0.4s ease 0.1s; 
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  }

  .gallery-item.active .phone-frame {
    opacity: 1;
  }

  .notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 25px;
    background: #1e293b;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    z-index: 21;
  }

  .side-btn {
    position: absolute;
    background: #1e293b;
    border-radius: 4px;
  }
  .volume-up {
    left: -16px;
    top: 100px;
    width: 4px;
    height: 40px;
  }
  .volume-down {
    left: -16px;
    top: 150px;
    width: 4px;
    height: 40px;
  }
  .power {
    right: -16px;
    top: 120px;
    width: 4px;
    height: 60px;
  }

  .screen-reflection {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.15) 0%,
      transparent 40%,
      transparent 100%
    );
    border-radius: 35px;
    z-index: 15;
    pointer-events: none;
  }

  .glow-blob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    z-index: 0;
  }

  .indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
    border: none;
    transition: all 0.3s;
    padding: 0;
  }
  .indicator-dot.active {
    background: #3b82f6;
    width: 24px;
    border-radius: 4px;
  }
  .indicator-dot:hover {
    background: #94a3b8;
  }
