    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        font-family: "Tajawal", sans-serif;
    }

    body {
        background: linear-gradient(60deg, #ff5e9c, #a00055);
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        min-height: 100vh;
        padding: 20px;
    }

    .feedback-container {
        background: white;
        padding: 30px;
        max-width: 500px;
        width: 100%;
        border-radius: 16px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        text-align: center;
    }

    .logo {
        width: 100px;
        margin-bottom: 15px;
    }

    .feedback-title {
        font-size: 24px;
        font-weight: 600;
        color: #333;
        margin-bottom: 10px;
    }

    .feedback-subtitle {
        font-size: 14px;
        color: #777;
        margin-bottom: 20px;
    }

    .emoji-container {
        display: flex;
        justify-content: space-around;
        margin-top: 20px;
    }

    .emoji {
        font-size: 28px;
        opacity: 0.5;
        cursor: pointer;
        transition: all 0.3s ease;
        border-radius: 100%;
        background-color: transparent;
    }

    .emoji.selected {
        transform: scale(1.3);
        opacity: 1;
        background: linear-gradient(135deg, #ff5e9c, #a00055);
        box-shadow: 0 5px 15px rgba(160, 0, 85, 0.3);
        /* subtle pink glow */
    }


    .emoji-label {
        margin-top: 10px;
        font-size: 14px;
        font-weight: 500;
        color: #444;
        height: 20px;
    }

    .emoji-text {
        display: inline-block;
        position: relative;
        background-color: #1e1e2f;
        color: white;
        font-size: 14px;
        font-weight: 600;
        padding: 6px 16px;
        border-radius: 999px;
        margin: 10px auto;
        text-align: center;
        box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.15);
    }

    .emoji-text::after {
        content: "";
        position: absolute;
        top: -6px;
        left: 50%;
        transform: translateX(-50%);
        border-width: 0 8px 8px 8px;
        border-style: solid;
        border-color: transparent transparent #1e1e2f transparent;
    }


    .textarea-wrapper {
        background: #000;
        padding: 2px;
        border-radius: 12px;
        margin-top: 10px;
        transition: background 0.3s ease;
    }

    .textarea-wrapper:focus-within {
        background: linear-gradient(135deg, #a00055, #d10074);
    }

    .textarea-wrapper textarea {
        width: 100%;
        height: 100px;
        padding: 12px;
        font-size: 16px;
        border: none;
        outline: none;
        border-radius: 10px;
        resize: none;
    }


    .submit-btn {
        background: linear-gradient(135deg, #a00055, #d10074);
        color: white;
        padding: 12px 20px;
        border: none;
        border-radius: 10px;
        margin-top: 20px;
        font-size: 16px;
        cursor: pointer;
        transition: background 0.3s ease;
        width: 100%;
    }

    .submit-btn:hover {
        background: linear-gradient(135deg, #d10074, #a00055);
    }

    .feedback-container {
        animation: fadeIn 0.8s ease;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .thanks-message {
        display: none;
        margin-top: 20px;
        color: #000;
        font-weight: bold;
    }

    .quick-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 12px;
        zoom: 83%;
        justify-content: center;
    }

    .quick-tags span {
        background: #f0f0f0;
        border-radius: 999px;
        padding: 6px 12px;
        font-size: 13px;
        cursor: pointer;
        transition: 0.2s ease;
    }

    .quick-tags span:hover {
        background: #a00055;
        color: white;
    }

    .quick-tags span.selected {
        background: #a00055;
        color: white;
    }