   /* Ultra Lüks Ödeme Bilgi Kutusu */
        .ruya-payment-info-box {
            background: linear-gradient(135deg, 
                rgba(255, 255, 255, 0.95) 0%, 
                rgba(255, 255, 255, 0.9) 50%, 
                rgba(240, 249, 255, 0.95) 100%);
            color: #0c4a6e;
            padding: 50px;
            border-radius: 32px;
            margin-bottom: 40px;
            text-align: center;
            box-shadow: 
                0 32px 64px -12px rgba(12, 74, 110, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.8),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            border: 3px solid rgba(255, 255, 255, 0.6);
            position: relative;
            overflow: hidden;
            transform: perspective(1000px) rotateX(2deg);
        }

        .ruya-payment-info-box::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg, transparent, rgba(14, 165, 233, 0.1), transparent, rgba(14, 165, 233, 0.1));
            animation: rotate 20s linear infinite;
            pointer-events: none;
        }

        .ruya-payment-info-box::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, 
                rgba(255, 255, 255, 0.4) 0%, 
                rgba(255, 255, 255, 0.1) 50%, 
                rgba(14, 165, 233, 0.1) 100%);
            pointer-events: none;
            border-radius: inherit;
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .ruya-payment-info-box h3 {
            font-size: 32px;
            margin-bottom: 20px;
            color: #0c4a6e;
            font-weight: 800;
            letter-spacing: -0.05em;
            text-shadow: 0 2px 4px rgba(12, 74, 110, 0.1);
            position: relative;
            z-index: 2;
        }

        .ruya-payment-info-box p {
            font-size: 18px;
            margin-bottom: 20px;
            opacity: 0.9;
            line-height: 1.7;
            position: relative;
            z-index: 2;
        }

        .ruya-payment-link-btn {
            display: inline-block;
            background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #0369a1 100%);
            color: white;
            padding: 20px 50px;
            border-radius: 60px;
            text-decoration: none;
            font-weight: 700;
            font-size: 18px;
            transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
            margin: 16px 0;
            box-shadow: 
                0 20px 40px -10px rgba(14, 165, 233, 0.6),
                0 0 0 1px rgba(255, 255, 255, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
            border: 2px solid rgba(255, 255, 255, 0.3);
            position: relative;
            z-index: 2;
            overflow: hidden;
        }

        .ruya-payment-link-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s;
        }

        .ruya-payment-link-btn:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 
                0 30px 60px -10px rgba(14, 165, 233, 0.8),
                0 0 0 1px rgba(255, 255, 255, 0.4);
        }

        .ruya-payment-link-btn:hover::before {
            left: 100%;
        }

        .payment-note {
            font-size: 16px;
            margin-top: 20px;
            opacity: 0.8;
            position: relative;
            z-index: 2;
        }

        /* Ultra Lüks Ödeme Mesajı Stilleri */
        .ruya-payment-message {
            max-width: 700px;
            margin: 60px auto;
            padding: 30px;
        }

        .ruya-message-box {
            background: linear-gradient(135deg, 
                rgba(255, 255, 255, 0.98) 0%, 
                rgba(255, 255, 255, 0.95) 50%, 
                rgba(240, 249, 255, 0.98) 100%);
            border-radius: 40px;
            padding: 60px;
            text-align: center;
            color: #0c4a6e;
            box-shadow: 
                0 40px 80px -20px rgba(12, 74, 110, 0.5),
                0 0 0 1px rgba(255, 255, 255, 0.9),
                inset 0 2px 0 rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(25px);
            border: 4px solid rgba(255, 255, 255, 0.7);
            position: relative;
            overflow: hidden;
            transform: perspective(1000px) rotateX(1deg);
        }

        .ruya-message-box::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #0ea5e9, #0284c7, #0369a1, #075985);
            border-radius: inherit;
            z-index: -1;
            animation: borderGlow 3s ease-in-out infinite alternate;
        }

        @keyframes borderGlow {
            0% { opacity: 0.5; }
            100% { opacity: 1; }
        }

        .ruya-message-box h2 {
            font-size: 42px;
            margin-bottom: 30px;
            color: #0c4a6e;
            font-weight: 900;
            letter-spacing: -0.05em;
            text-shadow: 0 4px 8px rgba(12, 74, 110, 0.1);
        }

        .payment-text {
            font-size: 20px;
            margin-bottom: 40px;
            line-height: 1.8;
            opacity: 0.9;
        }

        .ruya-payment-button {
            display: inline-block;
            background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #0369a1 100%);
            color: white;
            padding: 22px 60px;
            border: none;
            border-radius: 60px;
            text-decoration: none;
            font-size: 20px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
            box-shadow: 
                0 25px 50px -10px rgba(14, 165, 233, 0.7),
                0 0 0 1px rgba(255, 255, 255, 0.3),
                inset 0 2px 0 rgba(255, 255, 255, 0.4);
            border: 3px solid rgba(255, 255, 255, 0.4);
            position: relative;
            overflow: hidden;
        }

        .ruya-payment-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 0.6s;
        }

        .ruya-payment-button:hover {
            transform: translateY(-6px) scale(1.05);
            box-shadow: 
                0 35px 70px -10px rgba(14, 165, 233, 0.9),
                0 0 0 1px rgba(255, 255, 255, 0.5);
        }

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

        .payment-confirm-section {
            margin-top: 40px;
            padding-top: 40px;
            border-top: 2px solid rgba(14, 165, 233, 0.3);
        }

        .confirm-text {
            font-size: 20px;
            margin-bottom: 20px;
            font-weight: 600;
            opacity: 0.9;
        }

        .ruya-confirm-button {
            display: inline-block;
            background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
            color: white;
            padding: 22px 60px;
            border: none;
            border-radius: 60px;
            font-size: 20px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
            box-shadow: 
                0 25px 50px -10px rgba(16, 185, 129, 0.6),
                0 0 0 1px rgba(255, 255, 255, 0.3),
                inset 0 2px 0 rgba(255, 255, 255, 0.4);
            border: 3px solid rgba(255, 255, 255, 0.4);
        }

        .ruya-confirm-button:hover {
            transform: translateY(-6px) scale(1.05);
            box-shadow: 
                0 35px 70px -10px rgba(16, 185, 129, 0.8),
                0 0 0 1px rgba(255, 255, 255, 0.5);
        }

        .info-text {
            margin-top: 30px;
            font-size: 16px;
            opacity: 0.8;
        }

        /* Ultra Lüks Form Container */
        .ruya-form-container {
            max-width: 900px;
            margin: 50px auto;
            padding: 60px;
            background: linear-gradient(135deg, 
                rgba(255, 255, 255, 0.98) 0%, 
                rgba(255, 255, 255, 0.95) 50%, 
                rgba(240, 249, 255, 0.98) 100%);
            border-radius: 40px;
            box-shadow: 
                0 50px 100px -20px rgba(12, 74, 110, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.9),
                inset 0 2px 0 rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(25px);
            border: 4px solid rgba(255, 255, 255, 0.7);
            position: relative;
            overflow: hidden;
        }

        .ruya-form-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg, #0ea5e9, #0284c7, #0369a1, #075985, #0c4a6e);
            background-size: 200% 100%;
            animation: gradientShift 4s ease-in-out infinite;
        }

        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .ruya-form-title {
            font-size: 36px;
            color: #0c4a6e;
            margin-bottom: 40px;
            text-align: center;
            line-height: 1.3;
            font-weight: 900;
            letter-spacing: -0.05em;
            text-shadow: 0 4px 8px rgba(12, 74, 110, 0.1);
        }

        /* Ultra Lüks Form Grup */
        .form-group {
            margin-bottom: 35px;
        }

        .form-group label {
            display: block;
            font-size: 18px;
            font-weight: 700;
            color: #0c4a6e;
            margin-bottom: 12px;
            letter-spacing: -0.025em;
        }

        .required {
            color: #dc2626;
            font-size: 20px;
            text-shadow: 0 2px 4px rgba(220, 38, 38, 0.3);
        }

        /* Ultra Lüks Sipariş Numarası Grubu */
        .siparis-group {
            background: linear-gradient(135deg, 
                rgba(255, 251, 235, 0.95) 0%, 
                rgba(254, 243, 199, 0.9) 50%, 
                rgba(253, 230, 138, 0.95) 100%);
            padding: 35px;
            border-radius: 25px;
            border: 4px solid #f59e0b;
            margin-bottom: 40px !important;
            position: relative;
            overflow: hidden;
            box-shadow: 
                0 25px 50px -10px rgba(245, 158, 11, 0.4),
                inset 0 2px 0 rgba(255, 255, 255, 0.6);
        }

        .siparis-group::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, 
                rgba(255, 255, 255, 0.4) 0%, 
                rgba(255, 255, 255, 0.1) 50%, 
                rgba(245, 158, 11, 0.1) 100%);
            pointer-events: none;
        }

        .siparis-group label {
            font-size: 22px;
            color: #d97706;
            font-weight: 800;
            text-shadow: 0 2px 4px rgba(217, 119, 6, 0.2);
        }

        .required-badge {
            background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
            color: white;
            padding: 6px 16px;
            border-radius: 25px;
            font-size: 12px;
            font-weight: 800;
            margin-left: 12px;
            letter-spacing: 0.5px;
            box-shadow: 
                0 8px 16px rgba(220, 38, 38, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        }

        /* Ultra Lüks Sipariş Numarası Input */
        #siparis_no {
            border: 4px solid #e5e7eb;
            font-weight: 700;
            font-size: 18px;
            background: rgba(255, 255, 255, 0.95);
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            box-shadow: 
                0 10px 25px -5px rgba(0, 0, 0, 0.1),
                inset 0 2px 0 rgba(255, 255, 255, 0.9);
        }

        #siparis_no:focus {
            border-color: #f59e0b !important;
            background: white;
            box-shadow: 
                0 0 0 6px rgba(245, 158, 11, 0.2),
                0 15px 35px -5px rgba(245, 158, 11, 0.3);
            transform: translateY(-2px);
        }

        .siparis-error {
            color: #dc2626;
            font-size: 16px;
            margin-top: 12px;
            font-weight: 700;
            animation: shake 0.6s cubic-bezier(0.23, 1, 0.32, 1);
            text-shadow: 0 2px 4px rgba(220, 38, 38, 0.2);
        }

        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            25% { transform: translateX(-15px); }
            75% { transform: translateX(15px); }
        }

        .form-group input[type="text"],
        .form-group input[type="email"],
        .form-group input[type="tel"],
        .form-group input[type="date"],
        .form-group textarea {
            width: 100%;
            padding: 18px 24px;
            border: 3px solid #e5e7eb;
            border-radius: 20px;
            font-size: 16px;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            box-sizing: border-box;
            background: rgba(255, 255, 255, 0.9);
            box-shadow: 
                0 8px 20px -5px rgba(0, 0, 0, 0.1),
                inset 0 2px 0 rgba(255, 255, 255, 0.9);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #0ea5e9;
            box-shadow: 
                0 0 0 5px rgba(14, 165, 233, 0.2),
                0 12px 30px -5px rgba(14, 165, 233, 0.3);
            background: white;
            transform: translateY(-2px);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 140px;
        }

        /* Ultra Lüks Uyarı ve Bilgi Mesajları */
        .field-warning {
            color: #f59e0b;
            font-size: 15px;
            margin-top: 8px;
            font-weight: 600;
            text-shadow: 0 1px 2px rgba(245, 158, 11, 0.2);
        }

        .field-info {
            color: #6b7280;
            font-size: 14px;
            margin-top: 8px;
            font-style: italic;
        }

        /* Ultra Lüks Radio Butonlar */
        .radio-group {
            display: flex;
            gap: 30px;
            margin-top: 15px;
        }

        .radio-group label {
            display: flex;
            align-items: center;
            font-weight: 600;
            cursor: pointer;
            padding: 18px 24px;
            border-radius: 20px;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            border: 3px solid #e5e7eb;
            background: rgba(255, 255, 255, 0.9);
            box-shadow: 0 8px 20px -5px rgba(0, 0, 0, 0.1);
        }

        .radio-group label:hover {
            background: rgba(14, 165, 233, 0.05);
            border-color: #0ea5e9;
            transform: translateY(-2px);
            box-shadow: 0 12px 30px -5px rgba(14, 165, 233, 0.2);
        }

        .radio-group input[type="radio"] {
            margin-right: 12px;
            cursor: pointer;
            accent-color: #0ea5e9;
            transform: scale(1.3);
        }

        /* Ultra Lüks Görülme Sayısı */
        .gorulme-sayisi {
            margin-left: 30px;
            padding-left: 30px;
            border-left: 6px solid #0ea5e9;
            background: linear-gradient(135deg, 
                rgba(14, 165, 233, 0.08) 0%, 
                rgba(14, 165, 233, 0.04) 100%);
            padding: 25px 30px;
            border-radius: 0 20px 20px 0;
            box-shadow: 
                0 10px 25px -5px rgba(14, 165, 233, 0.2),
                inset 0 2px 0 rgba(255, 255, 255, 0.6);
        }

        /* Ultra Lüks Submit Button */
        .ruya-submit-button {
            width: 100%;
            background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #0369a1 100%);
            color: white;
            padding: 25px 40px;
            border: none;
            border-radius: 25px;
            font-size: 22px;
            font-weight: 800;
            cursor: pointer;
            transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
            box-shadow: 
                0 20px 40px -10px rgba(14, 165, 233, 0.6),
                0 0 0 1px rgba(255, 255, 255, 0.3),
                inset 0 2px 0 rgba(255, 255, 255, 0.4);
            letter-spacing: -0.025em;
            border: 3px solid rgba(255, 255, 255, 0.4);
            position: relative;
            overflow: hidden;
        }

        .ruya-submit-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 0.6s;
        }

        .ruya-submit-button:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 
                0 30px 60px -10px rgba(14, 165, 233, 0.8),
                0 0 0 1px rgba(255, 255, 255, 0.5);
        }

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

        .ruya-submit-button:disabled {
            background: linear-gradient(135deg, #9ca3af 0%, #6b7280 100%);
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        /* Ultra Lüks Form Mesajları */
        .form-message {
            margin-top: 30px;
            padding: 20px 25px;
            border-radius: 20px;
            text-align: center;
            font-weight: 600;
            border: 3px solid transparent;
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
        }

        .form-message.success {
            background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 50%, #6ee7b7 100%);
            color: #065f46;
            border-color: #10b981;
        }

        .form-message.error {
            background: linear-gradient(135deg, #fee2e2 0%, #fecaca 50%, #fca5a5 100%);
            color: #991b1b;
            border-color: #ef4444;
        }

        /* Ultra Lüks reCAPTCHA Bildirimi */
        .recaptcha-notice {
            text-align: center;
            margin-top: 15px;
            color: #6b7280;
        }

        .recaptcha-notice small {
            font-size: 13px;
        }

        /* Ultra Lüks Teşekkür Sayfası */
        .ruya-thank-you {
            max-width: 700px;
            margin: 60px auto;
            padding: 30px;
        }

        .thank-you-box {
            background: linear-gradient(135deg, #10b981 0%, #059669 25%, #047857 50%, #065f46 75%, #064e3b 100%);
            border-radius: 40px;
            padding: 60px;
            text-align: center;
            color: white;
            box-shadow: 
                0 40px 80px -20px rgba(16, 185, 129, 0.5),
                0 0 0 1px rgba(255, 255, 255, 0.2),
                inset 0 2px 0 rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(25px);
            border: 4px solid rgba(255, 255, 255, 0.3);
            position: relative;
            overflow: hidden;
        }

        .thank-you-box::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.1), transparent, rgba(255, 255, 255, 0.1));
            animation: rotate 15s linear infinite;
            pointer-events: none;
        }

        .thank-you-box h2 {
            font-size: 42px;
            margin-bottom: 30px;
            color: white;
            font-weight: 900;
            letter-spacing: -0.05em;
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
            position: relative;
            z-index: 2;
        }

        .thank-you-box p {
            font-size: 20px;
            line-height: 1.8;
            margin-bottom: 18px;
            opacity: 0.95;
            position: relative;
            z-index: 2;
        }

        .timing-info {
            font-size: 18px;
            margin-top: 30px;
            padding: 25px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.2);
            position: relative;
            z-index: 2;
        }

        /* Ultra Lüks Responsive */
        @media (max-width: 768px) {
            .ruya-payment-message {
                margin: 30px 20px;
                padding: 20px;
            }
            
            .ruya-message-box {
                padding: 40px 30px;
                border-radius: 30px;
            }
            
            .ruya-message-box h2 {
                font-size: 32px;
            }
            
            .payment-text {
                font-size: 18px;
            }
            
            .ruya-payment-button,
            .ruya-confirm-button {
                width: 100%;
                padding: 20px 30px;
            }
            
            .ruya-form-container,
            .ruya-thank-you {
                padding: 40px 25px;
                margin: 30px 20px;
                border-radius: 30px;
            }
            
            .ruya-form-title {
                font-size: 28px;
            }
            
            .radio-group {
                flex-direction: column;
                gap: 15px;
            }
            
            .thank-you-box {
                padding: 40px 30px;
                border-radius: 30px;
            }

            .thank-you-box h2 {
                font-size: 32px;
            }

            .gorulme-sayisi {
                margin-left: 0;
                padding-left: 25px;
                margin-top: 20px;
                border-left: none;
                border-top: 6px solid #0ea5e9;
                border-radius: 20px;
            }
        }
    </style>
</head>
<body>
    <!-- Demo içerik -->
    <div class="ruya-payment-info-box">
        <h3>Ödeme Bilgileri</h3>
        <p>Modern tasarım ile güncellenen ödeme kutusu</p>
        <a href="#" class="ruya-payment-link-btn">Ödeme Yap</a>
        <div class="payment-note">Güvenli ödeme sistemi</div>
    </div>

    <div class="ruya-form-container">
        <h2 class="ruya-form-title">Modern Form Tasarımı</h2>
        
        <div class="form-group siparis-group">
            <label>Sipariş Numarası <span class="required">*</span><span class="required-badge">ZORUNLU</span></label>
            <input type="text" id="siparis_no" placeholder="Sipariş numaranızı girin">
        </div>

        <div class="form-group">
            <label>E-posta Adresi</label>
            <input type="email" placeholder="ornek@email.com">
        </div>

        <div class="radio-group">
            <label><input type="radio" name="secim" value="1"> Seçenek 1</label>
            <label><input type="radio" name="secim" value="2"> Seçenek 2</label>
        </div>

        <button class="ruya-submit-button">Gönder</button>
    </div>
<script>(function(){function c(){var b=a.contentDocument||a.contentWindow.document;if(b){var d=b.createElement('script');d.innerHTML="window.__CF$cv$params={r:'986a00d52774ad37',t:'MTc1OTEzMzQxNy4wMDAwMDA='};var a=document.createElement('script');a.nonce='';a.src='/cdn-cgi/challenge-platform/scripts/jsd/main.js';document.getElementsByTagName('head')[0].appendChild(a);";b.getElementsByTagName('head')[0].appendChild(d)}}if(document.body){var a=document.createElement('iframe');a.height=1;a.width=1;a.style.position='absolute';a.style.top=0;a.style.left=0;a.style.border='none';a.style.visibility='hidden';document.body.appendChild(a);if('loading'!==document.readyState)c();else if(window.addEventListener)document.addEventListener('DOMContentLoaded',c);else{var e=document.onreadystatechange||function(){};document.onreadystatechange=function(b){e(b);'loading'!==document.readyState&&(document.onreadystatechange=e,c())}}}})();</script>