	img.wp-smiley, img.emoji {
		display: inline !important;
		border: none !important;
		box-shadow: none !important;
		height: 1em !important;
		width: 1em !important;
		margin: 0 0.07em !important;
		vertical-align: -0.1em !important;
		background: none !important;
		padding: 0 !important;
	}
	                    /* Premium Giriş Animasyonu */
                    @keyframes rousEntrance {
                        0% { 
                            opacity: 0; 
                            transform: translateY(40px) scale(0.95);
                            filter: blur(10px);
                        }
                        100% { 
                            opacity: 1; 
                            transform: translateY(0) scale(1);
                            filter: blur(0);
                        }
                    }

                    .rous-wrapper {
                        margin-top: 5px;
                        width: 100%;
                        display: flex;
                        justify-content: center;
                        perspective: 1000px;
                    }

                    .rous-form-container {
                        width: 100%;
                        background: #ffffff;
                        padding: 35px 40px; 
                        border-radius: 24px;
                        box-shadow: 0 20px 60px rgba(0,0,0,0.05);
                        border: 1px solid #f0f0f0;
                        box-sizing: border-box;
                        /* Başlangıçta görünmez yapıyoruz */
                        opacity: 0;
                        transition: all 0.3s ease;
                    }

                    /* Scroll ile tetiklenecek class */
                    .rous-form-container.animate-now {
                        animation: rousEntrance 1s cubic-bezier(0.2, 0.8, 0.2, 1.1) forwards;
                    }

                    .rous-header-section {
                        text-align: center;
                        margin-bottom: 30px;
                    }

                    .rous-main-title {
                        font-family: 'Poppins', sans-serif;
                        font-size: 28px;
                        font-weight: 800;
                        color: #1a202c;
                        margin: 0 0 8px 0;
                    }

                    .rous-highlight { color: #0d6efd; }

                    .rous-sub-text {
                        font-family: 'Poppins', sans-serif;
                        font-size: 15px;
                        color: #718096;
                        margin: 0;
                    }

                    .rous-form-grid {
                        display: grid;
                        grid-template-columns: repeat(2, 1fr);
                        gap: 20px;
                    }

                    /* Elemanların tek tek gelmesi için başlangıç hali */
                    .reveal-item {
                        opacity: 0;
                        transform: translateY(20px);
                        transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
                    }

                    /* Form görünür olduğunda elemanları sırayla uçur */
                    .animate-now .reveal-item {
                        opacity: 1;
                        transform: translateY(0);
                    }

                    /* Sıralı gecikmeler */
                    .animate-now .d-1 { transition-delay: 0.3s; }
                    .animate-now .d-2 { transition-delay: 0.4s; }
                    .animate-now .d-3 { transition-delay: 0.5s; }
                    .animate-now .d-4 { transition-delay: 0.6s; }
                    .animate-now .d-5 { transition-delay: 0.7s; }

                    .form-group.full-width { grid-column: span 2; }
                    
                    @media (max-width: 768px) {
                        .rous-form-grid { grid-template-columns: 1fr; }
                        .form-group.full-width { grid-column: span 1; }
                        .rous-form-container { padding: 30px 20px; }
                    }

                    .rous-label {
                        display: block;
                        font-size: 12px;
                        font-weight: 700;
                        color: #4a5568;
                        margin-bottom: 8px;
                        text-transform: uppercase;
                        letter-spacing: 0.5px;
                    }

                    .rous-input {
                        width: 100%;
                        padding: 15px;
                        border: 2px solid #edf2f7;
                        border-radius: 12px;
                        background: #fdfdfd;
                        font-size: 15px;
                        transition: all 0.3s ease;
                        outline: none;
                        box-sizing: border-box;
                    }

                    .rous-input:focus {
                        border-color: #0d6efd;
                        background: #fff;
                        box-shadow: 0 10px 20px rgba(13, 110, 253, 0.08);
                        transform: translateY(-2px);
                    }

                    .rous-btn-group {
                        display: flex;
                        gap: 12px;
                        margin-top: 10px;
                    }

                    .btn-submit {
                        background: #0d6efd;
                        color: white;
                        padding: 16px;
                        border: none;
                        border-radius: 12px;
                        font-weight: 600;
                        font-size: 16px;
                        cursor: pointer;
                        transition: all 0.3s ease;
                        flex: 2;
                    }

                    .btn-submit:hover { 
                        background: #0052cc; 
                        transform: translateY(-3px);
                        box-shadow: 0 10px 25px rgba(13, 110, 253, 0.3);
                    }

                    .btn-clear {
                        background: #f7fafc;
                        color: #718096;
                        padding: 16px;
                        border: 1px solid #e2e8f0;
                        border-radius: 12px;
                        font-weight: 600;
                        cursor: pointer;
                        flex: 1;
                    }