 /* (نفس الستايل اللي عندك بدون تغيير) */
    :root {
            --primary-color: #FF6B00;
            --primary-hover: #E55E00;
            --secondary-color: #333333;
            --light-color: #FFF5EB;
        }
        
        * {
            font-family: 'Tajawal', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f8f9fa;
            color: var(--secondary-color);
            padding-top: 20px;
            direction: rtl;
            text-align: right;
        }
        
        .feedback-container {
            max-width: 800px;
            margin: 0 auto;
            background-color: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            padding: 30px;
            margin-bottom: 50px;
        }
        
        .feedback-header {
            background: linear-gradient(135deg, var(--primary-color), #FF8C42);
            color: white;
            padding: 30px 0;
            text-align: center;
            border-radius: 10px 10px 0 0;
            margin: -30px -30px 30px -30px;
        }
        
        .feedback-header h1 {
            font-weight: 700;
            margin-bottom: 10px;
            font-size: 2.2rem;
        }
        
        .feedback-header p {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        .emoji-container {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin: 30px 0;
            flex-wrap: wrap;
        }
        
        .emoji-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
            transform: scale(1);
        }
        
        .emoji-item:hover {
            transform: scale(1.15);
        }
        
        .emoji {
            font-size: 4rem;
            margin-bottom: 10px;
            transition: all 0.3s ease;
            filter: grayscale(100%);
            opacity: 0.7;
        }
        
        .emoji-item:hover .emoji {
            filter: grayscale(0%);
            opacity: 1;
            transform: rotate(5deg);
        }
        
        .emoji-item.selected .emoji {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.2);
        }
        
        .emoji-label {
            font-weight: 600;
            color: var(--secondary-color);
            font-size: 1.1rem;
        }
        
        .form-control, .form-select {
            border: 2px solid #ddd;
            border-radius: 8px;
            padding: 12px 15px;
            transition: all 0.3s ease;
            text-align: right;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.25rem rgba(255, 107, 0, 0.25);
        }
        
        .form-label {
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--secondary-color);
            text-align: right;
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            font-size: 1.1rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            margin-top: 10px;
            width: 100%;
        }
        
        .btn-primary:hover {
            background-color: var(--primary-hover);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
        }
        
        .btn-primary:active {
            transform: translateY(-1px);
        }
        
        .footer-link {
            display: block;
            text-align: center;
            margin-top: 30px;
            color: var(--primary-color);
            font-weight: 600;
            text-decoration: none;
        }
        
        .footer-link:hover {
            text-decoration: underline;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }
        
        .emoji-item.selected .emoji {
            animation: pulse 0.5s ease;
        }
        
        textarea {
            min-height: 150px;
            text-align: right;
        }
        
        /* التكيف مع الأجهزة المحمولة */
        @media (max-width: 768px) {
            .feedback-container {
                padding: 20px;
                margin: 10px;
            }
            
            .emoji-container {
                gap: 20px;
            }
            
            .emoji {
                font-size: 3rem;
            }
            
            .feedback-header h1 {
                font-size: 1.8rem;
            }
        }