#animation-container * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        #animation-container body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: #ffffff;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            padding: 20px;
        }

        #animation-container .demo-container {
            position: relative;
            width: 100%;
            max-width: 350px;
            margin: 0 auto;
            padding: 25px 15px 40px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-top: 0;
        }

        #animation-container .phone-frame {
            position: relative;
            width: 100%;
            max-width: 220px;
            height: 440px;
            background: #ffffff;
            border: 2px solid #1a1a1a;
            border-radius: 30px;
            padding: 2px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
            margin-top: 0;
        }

        #animation-container .phone-screen {
            width: 100%;
            height: calc(100% - 40px); /* Dot'lar için alan */
            background: #fff;
            border-radius: 28px 28px 15px 15px;
            overflow: hidden;
            position: relative;
            cursor: grab;
            flex: 1;
        }

        #animation-container .phone-screen:active {
            cursor: grabbing;
        }

        /* Slider Container */
        #animation-container .screen-slider {
            display: flex;
            width: 600%; /* 6 ekran için */
            height: 100%;
            transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        /* Animation Scenes */
        #animation-container .scene {
            width: 16.666%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px 15px;
            position: relative;
            background: linear-gradient(135deg, #7a7a7a 0%, #444 100%); /* Daha açık gri */
            color: white;
            text-align: center;
        }

        /* Scene 1: Problem - Kağıt kartvizit */
        #animation-container .scene-1 {
            /* background: linear-gradient(135deg, #4a4a4a 0%, #2c2c2c 100%); */
            color: white;
            text-align: center;
        }

        #animation-container .business-card {
            width: 80px;
            height: 50px;
            background: white;
            border-radius: 8px;
            margin: 15px;
            position: relative;
            animation: shake 0.5s infinite;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            25% { transform: translateX(-2px); }
            75% { transform: translateX(2px); }
        }

        /* Scene 2: Kartex App Opening */
        #animation-container .scene-2 {
            /* background: linear-gradient(135deg, #4a4a4a 0%, #2c2c2c 100%); */
            color: white;
            text-align: center;
        }

        #animation-container .scene-2 .app-logo {
            width: 90px;
            height: 90px;
            background: white;
            border-radius: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
            animation: bounceIn 0.8s ease;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            overflow: hidden;
        }

        #animation-container .scene-2 .app-logo .animation-image {
            width: 80%;
            height: 80%;
            object-fit: contain;
            border-radius: 12px;
        }

        @keyframes bounceIn {
            0% { transform: scale(0); }
            50% { transform: scale(1.2); }
            100% { transform: scale(1); }
        }

        /* Scene 3: Form Filling */
        #animation-container .scene-3 {
            /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
            padding: 15px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        #animation-container .form-field {
            background: white;
            margin: 8px 0;
            padding: 10px;
            border-radius: 8px;
            border: 2px solid #dee2e6;
            font-size: 12px;
            color: #495057;
            text-align: left;
            width: 100%;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }

        #animation-container .form-field.filled {
            border-color: #1a365d;
            background-color: #f8f9fa;
        }

        /* Scene 4: QR Code Sharing */
        #animation-container .scene-4 {
            /* background: linear-gradient(135deg, #f1f3f4 0%, #e8eaed 100%); */
            text-align: center;
        }

        #animation-container .qr-code {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 10px;
            position: relative;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        /* Scene 5: Web Profile */
        #animation-container .scene-5 {
            /* background: #ffffff; */
            padding: 15px;
        }

        #animation-container .web-profile {
            background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
            color: white;
            padding: 20px 15px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }

        #animation-container .profile-avatar {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #6c6c6c, #4a4a4a);
            border-radius: 50%;
            margin: 0 auto 10px;
            border: 2px solid #f8f9fa;
        }

        #animation-container .web-profile h4 {
            font-size: 14px;
            margin: 5px 0;
            font-weight: 600;
        }

        #animation-container .web-profile p {
            font-size: 12px;
            margin: 5px 0;
            opacity: 0.9;
            color: #e9ecef;
        }

        #animation-container .web-profile small {
            font-size: 10px;
            opacity: 0.8;
            color: #adb5bd;
        }

        /* Scene 6: CTA */
        #animation-container .scene-6 {
            /* background: linear-gradient(135deg, #4a4a4a 0%, #2c2c2c 100%); */
            text-align: center;
            padding: 15px;
        }

        #animation-container .app-store-buttons {
            display: flex;
            flex-direction: column;
            gap: 10px;
            align-items: center;
            margin-top: 40px;
        }

        #animation-container .store-button {
            display: block;
            width: 130px;
            height: 40px;
            cursor: pointer;
            transition: transform 0.2s ease;
            background: rgba(255, 255, 255, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            font-size: 12px;
            overflow: hidden;
            padding: 0;
        }

        #animation-container .store-button img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
            background: none;
            border: none;
            margin: 0;
            padding: 0 8px; /* Yana biraz boşluk bırakmak için */
            box-sizing: border-box;
        }

        #animation-container .store-button:hover {
            transform: scale(1.05);
            background: rgba(255, 255, 255, 0.25);
        }

        /* Navigation Dots */
        #animation-container .navigation-dots {
            display: flex;
            gap: 10px;
            justify-content: center;
            padding: 10px 0;
            width: 100%;
            height: 40px;
            align-items: center;
        }

        #animation-container .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        #animation-container .dot.active {
            background: #2c2c2c;
            transform: scale(1.3);
        }

/* Image styles */
        #animation-container .animation-image {
            max-width: 100%;
            max-height: 100%;
            display: block;
        }

        #animation-container .scene-1 .animation-image {
            width: 100%;
            height: auto;
            object-fit: contain;
        }

        #animation-container .scene-2 .animation-image {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        #animation-container .scene-4 .animation-image {
            width: 60px;
            height: 60px;
            object-fit: contain;
        }

        /* Hide images when scene 4 is not active or animation is not triggered */
        #animation-container .qr-code:not(.show-images) .animation-image {
            opacity: 0;
            animation: none; /* Ensure no animation runs when hidden */
        }

        /* Apply animation when scene 4 is active and show-images class is present */
        #animation-container .qr-code.show-images .animation-image {
            animation: fadeInScale 0.8s ease forwards;
        }

        #animation-container .scene-4 .qr-image {
            animation-delay: 0s;
        }

        #animation-container .scene-4 .link-image {
            animation-delay: 0.2s;
        }

        #animation-container .scene-4 .nfc-image {
            animation-delay: 0.4s;
        }

        @keyframes fadeInScale {
            0% {
                opacity: 0;
                transform: scale(0.8);
            }
            100% {
                opacity: 1;
                transform: scale(1);
            }
        }

/* Demo text */
        #animation-container .demo-text {
            color: white;
            text-align: center;
            margin-top: 10px;
            margin-bottom: 0;
            font-size: 14px;
            font-weight: 500;
            transition: opacity 0.5s ease;
            width: 220px;
            max-width: 100%;
            line-height: 1.4;
            padding: 0 10px;
            box-sizing: border-box;
            min-height: 40px;
        }

        @media (max-width: 480px) {
            #animation-container .demo-container {
                max-width: 300px;
                padding: 20px 10px 35px;
                margin-top: 0;
            }
            
            #animation-container .phone-frame {
                max-width: 200px;
                height: 400px;
                border-width: 1.5px;
                padding: 1.5px;
            }
            
            #animation-container .phone-screen {
                height: calc(100% - 35px);
            }
            
            #animation-container .navigation-dots {
                height: 35px;
                padding: 8px 0;
            }
            
            #animation-container .demo-text {
                font-size: 13px;
                margin-top: 8px;
                width: 200px;
                min-height: 35px;
            }
        }

#animation-container .scene1-phones {
    width: 66%;
    height: auto;
    display: block;
    margin: 0 auto;
    box-shadow: none;
    border: none;
    background: none;
}

#animation-container .scene-6 .store-button,
#animation-container .scene-6 .store-image-wrapper {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

#animation-container .scene-6 .store-image-wrapper img {
  width: 160px;
  height: 56px;
  max-width: 160px;
  max-height: 56px;
  object-fit: contain;
  display: block;
  background: none;
  border: none;
  margin: 0;
  padding: 0;
}
