        :root {
            --bg: #e4ebf1;
            --fg: #2d3748;
            --muted: #718096;
            --accent: #ff6b6b;
            --shadow-light: #ffffff;
            --shadow-dark: #c8d0d9;
            --radius: 20px;
        }

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

        body {
            font-family: 'Tajawal', sans-serif;
            background: var(--bg);
            color: var(--fg);
            display: flex;
            justify-content: center;
            align-items: flex-start;
            padding: 30px;
        }

        .container {
            width: 100%;
            max-width: 480px;
        }

        header {
            text-align: center;
            margin-bottom: 26px;
        }

        header h1 {
            font-size: 22px;
            font-weight: 700;
        }

        header p {
            font-size: 14px;
            color: var(--muted);
            margin-top: 6px;
        }

        /* نيومورفيك ستايل */
        .card {
            background: var(--bg);
            border-radius: var(--radius);
            box-shadow: 8px 8px 16px var(--shadow-dark),
                -8px -8px 16px var(--shadow-light);
            padding: 24px;
        }

        label {
            display: block;
            font-size: 13px;
            color: var(--muted);
            margin-bottom: 8px;
            text-align: center;
        }

        textarea,
        input,
        select {
            width: 100%;
            padding: 12px 14px;
            border: none;
            border-radius: var(--radius);
            background: var(--bg);
            box-shadow: inset 4px 4px 8px var(--shadow-dark),
                inset -4px -4px 8px var(--shadow-light);
            font-size: 14px;
            color: var(--fg);
            outline: none;
        }

        textarea {
            min-height: 100px;
            text-align: left;
            direction: ltr;
        }

        .row {
            display: flex;
            gap: 12px
        }

        .col {
            flex: 1
        }

        button {
            display: block;
            width: 100%;
            padding: 12px;
            border: none;
            border-radius: var(--radius);
            font-weight: 600;
            font-size: 15px;
            color: #fff;
            background: var(--accent);
            margin-top: 16px;
            box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2),
                -4px -4px 8px rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: transform .15s ease;
        }

        button:hover {
            transform: translateY(-2px)
        }

        button:active {
            transform: translateY(0)
        }

        .preview {
            margin-top: 28px;
            text-align: center;
            padding: 20px;
            border-radius: var(--radius);
            box-shadow: inset 4px 4px 8px var(--shadow-dark),
                inset -4px -4px 8px var(--shadow-light);
            background: var(--bg);
        }

        .preview .placeholder {
            width: 200px;
            height: 0;
            border-radius: var(--radius);
            background: var(--bg);
            box-shadow: inset 4px 4px 8px var(--shadow-dark),
                inset -4px -4px 8px var(--shadow-light);
            margin: 0 auto 12px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 13px;
            color: var(--muted);
        }

        .note {
            font-size: 12px;
            color: var(--muted);
            margin-top: 8px;
        }