    /* Feedback Card Styling */
    .poll-container {
        position: fixed;
        /* bottom: 20px; */
        bottom: 35px;
        right: 20px;
        width: 320px;
        background: var(--card);
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 20px;
        box-shadow: var(--shadow);
        z-index: 1000;
        font-family: 'Inter', sans-serif;
    }

    .poll-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
    }

    .poll-header h3 {
        font-size: 14px;
        margin: 0;
        color: var(--text);
    }

    .poll-question {
        font-size: 12px;
        color: var(--dim);
        margin-bottom: 12px;
        font-weight: 500;
    }

    .poll-options {
        display: flex;
        gap: 8px;
        margin-bottom: 20px;
    }

    .poll-btn {
        flex: 1;
        padding: 10px;
        border: 1px solid var(--border);
        background: var(--header-accent);
        border-radius: 8px;
        cursor: pointer;
        font-size: 18px; /* For Emojis */
        transition: all 0.2s ease;
    }

    .poll-btn:hover {
        background: var(--blue);
        transform: translateY(-2px);
    }

    .coin-input {
        width: 100%;
        padding: 10px;
        background: var(--bg);
        border: 1px solid var(--border);
        border-radius: 8px;
        color: var(--text);
        font-size: 12px;
        margin-bottom: 10px;
        box-sizing: border-box;
    }

    .submit-poll {
        width: 100%;
        background: var(--blue);
        color: white;
        border: none;
        padding: 10px;
        border-radius: 8px;
        font-weight: 600;
        cursor: pointer;
    }