* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: #000000;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .space {
            height: 80px;
        }

        .download-section {
            width: 100%;
            max-width: none;
            margin: 0;
            padding: 40px 20px;
        }

        .download-container {
            background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
            border-radius: 48px;
            box-shadow: 
                0 32px 80px rgba(255, 255, 255, 0.08),
                0 8px 32px rgba(255, 255, 255, 0.12),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
            overflow: hidden;
            position: relative;
            min-height: 70vh;
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
        }

        .download-content {
            display: flex;
            align-items: center;
            min-height: 70vh;
            position: relative;
            width: 100%;
        }

        .text-section {
            flex: 1;
            padding: 5vw 4vw;
            z-index: 2;
            max-width: 50%;
            position: relative;
        }

        .download-title {
            font-family: "Inter", sans-serif;
            font-weight: 800;
            font-size: clamp(28px, 4vw, 56px);
            line-height: 1.1;
            color: #000000;
            margin-bottom: 28px;
            letter-spacing: -0.02em;
            position: relative;
        }

        .download-text {
            font-family: "Inter", sans-serif;
            font-size: clamp(16px, 1.5vw, 22px);
            line-height: 1.7;
            color: #2c2c2c;
            margin-bottom: 48px;
            max-width: 90%;
            font-weight: 400;
        }

        .download-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            align-items: center;
        }

        .ios-button {
            display: inline-block;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 16px;
            overflow: hidden;
            position: relative;
        }

        .ios-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(145deg, rgba(255,255,255,0.2), rgba(255,255,255,0.05));
            border-radius: 16px;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1;
        }

        .ios-button:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
        }

        .ios-button:hover::before {
            opacity: 1;
        }

        .ios-button img {
            height: 64px;
            width: auto;
            display: block;
            position: relative;
            z-index: 2;
            cursor: pointer;
        }

        .android-button {
            background: linear-gradient(145deg, #f1f3f4 0%, #e8eaed 100%);
            border: 2px solid #dadce0;
            border-radius: 16px;
            padding: 18px 28px;
            font-family: "Inter", sans-serif;
            font-weight: 600;
            font-size: 16px;
            color: #5f6368;
            cursor: not-allowed;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: center;
            gap: 12px;
            height: 64px;
            position: relative;
            overflow: hidden;
        }

        .android-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            transition: left 2s ease;
        }

        .android-button:hover::before {
            left: 100%;
        }

        .android-button .emoji {
            font-size: 20px;
            opacity: 0.7;
        }

        .image-section {
            flex: 1;
            position: relative;
            height: 70vh;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            padding-bottom: 0;
            max-width: 50%;
        }

        .image-section::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 1;
        }

        .app-image-2 {
            width: min(45vw, 600px);
            height: auto;
            position: relative;
            z-index: 3;
            transform: translateY(80px);
            filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.5));
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .app-image-2:hover {
            transform: translateY(75px) scale(1.03) rotate(-1deg);
        }

        /* Responsive Design */
        @media only screen and (max-width: 768px) {
            .download-container {
                min-height: 90vh;
            }

            .download-content {
                flex-direction: column;
                min-height: 90vh;
            }

            .text-section {
                padding: 6vw 5vw 4vw;
                text-align: center;
                max-width: 100%;
            }

            .download-title {
                font-size: clamp(24px, 6vw, 36px);
                margin-bottom: 16px;
            }

            .download-text {
                font-size: clamp(14px, 3vw, 18px);
                margin-bottom: 30px;
                max-width: 100%;
            }

            .download-buttons {
                justify-content: center;
                gap: 12px;
            }

            .image-section {
                height: 40vh;
                padding: 0 20px;
                max-width: 100%;
            }

            .app-image-2 {
                width: min(60vw, 350px);
                transform: translateY(40px);
            }

            .app-image-2:hover {
                transform: translateY(35px) scale(1.02);
            }
        }

        @media only screen and (max-width: 480px) {
            .download-section {
                padding: 20px 10px;
            }

            .download-container {
                border-radius: 32px;
            }

            .text-section {
                padding: 8vw 6vw 4vw;
            }

            .download-title {
                font-size: clamp(20px, 7vw, 28px);
            }

            .download-text {
                font-size: clamp(12px, 4vw, 16px);
            }

            .ios-button img {
                height: 52px;
            }

            .android-button {
                height: 52px;
                font-size: 13px;
                padding: 12px 20px;
            }
        }

        @media only screen and (min-width: 1600px) {
            .download-container {
                max-width: 1600px;
            }
            
            .text-section {
                padding: 4vw 3vw;
            }
        }
