        :root {
            --primary: #1e3a8a;
            --primary-hover: #1d4ed8;
            --secondary: #0ea5e9;
            --bg: #f8fafc;
            --card-bg: #ffffff;
            --text: #1e293b;
            --text-muted: #64748b;
            --border: #cbd5e1;
            --star-active: #f59e0b;
            --star-inactive: #cbd5e1;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Segoe UI', system-ui, sans-serif; }
        body { background-color: var(--bg); color: var(--text); padding: 40px 20px; display: flex; flex-direction: column; align-items: center; min-height: 100vh; }
        .container { max-width: 600px; width: 100%; background: var(--card-bg); padding: 35px; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
        .header { text-align: center; margin-bottom: 30px; }
        .header h1 { font-size: 1.8rem; color: var(--primary); margin-bottom: 8px; }
        .header p { color: var(--text-muted); font-size: 0.95rem; }
        .form-group { margin-bottom: 20px; }
        .form-label { display: block; margin-bottom: 6px; font-weight: 600; font-size: 0.9rem; }
        .form-control { width: 100%; padding: 10px 14px; border: 1px solid var(--border); border-radius: 6px; font-size: 0.95rem; }
        .form-control:focus { outline: none; border-color: var(--secondary); box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15); }
        .radio-group { display: flex; gap: 20px; margin-top: 6px; }
        .radio-label { display: flex; align-items: center; gap: 6px; cursor: pointer; }
        .rating-container { display: flex; flex-direction: row-reverse; justify-content: flex-end; gap: 4px; }
        .rating-container input { display: none; }
        .rating-container label { font-size: 1.8rem; color: var(--star-inactive); cursor: pointer; }
        .rating-container input:checked ~ label, .rating-container label:hover, .rating-container label:hover ~ label { color: var(--star-active); }
        
        .overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(15, 23, 42, 0.7); z-index: 1000; justify-content: center; align-items: center; flex-direction: column; color: white; }
        .spinner { width: 40px; height: 40px; border: 4px solid rgba(255, 255, 255, 0.3); border-radius: 50%; border-top-color: white; animation: spin 1s linear infinite; margin-bottom: 15px; }
        @keyframes spin { to { transform: rotate(360deg); } }
        
        .btn { display: block; width: 100%; padding: 12px; background-color: var(--primary); color: white; border: none; border-radius: 6px; font-size: 0.95rem; font-weight: 600; cursor: pointer; text-align: center; text-decoration: none; }
        .btn:hover { background-color: var(--primary-hover); }
        .btn-alt { background-color: transparent; color: var(--primary); border: 2px solid var(--primary); margin-top: 12px; }
        .btn-alt:hover { background-color: rgba(30, 58, 170, 0.05); }
        .footer-counter { margin-top: 30px; text-align: center; }
        .footer-counter img { width: 80px; height: auto; }
