.points-card,
.quick-actions,
.rewards-shell {
    background: #fff;
    padding: 1.2rem;
    box-shadow: 0 10px 25px rgba(73, 20, 52, 0.04);
    margin-bottom: 1rem;
}

.points-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 0.8rem;
    background: #fff;
    border: 1px solid #f2e6ee;
    border-radius: 10px;
    color: #4f4258;
    font-weight: 500;
    font-size: 0.86rem;
    margin-bottom: 1rem;
}

.points-info i {
    color: #bc2f79;
    font-size: 1.2rem;
}

.points-info span {
    margin-left: auto;
    font-weight: 700;
    color: #bc2f79;
}

.points-info .star-inline {
    color: #f5ae2a;
    margin-left: 0.5rem;
}

.progress-wrap {
    position: relative;
    margin: 1rem 0;
}

.progress-bar {
    height: 12px;
    border-radius: 999px;
    background: #f2e6ee;
    overflow: hidden;
}

.progress-fill {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #f08dbc, #cf2f84);
    border-radius: inherit;
}

.progress-star {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.4rem;
    color: #f2ae2e;
    text-shadow: 0 2px 10px rgba(242, 174, 46, 0.4);
    z-index: 10;
    pointer-events: none;
}

.star-row {
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    margin-top: 1rem;
    color: #e5d5e1;
    font-size: 1.2rem;
}

.reward-line {
    margin-top: 1.2rem;
    font-weight: 600;
    color: #5f4565;
    font-size: 0.95rem;
}

/* Quick Actions Layout */
.quick-actions {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 1rem;
    align-items: start;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

.referral-box-wrap {
    background: #fff;
    border: 1px solid #ead7e8;
    border-radius: 18px;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 25px rgba(73, 20, 52, 0.04);
}

.referral-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.referral-box label {
    font-weight: 700;
    color: #624f69;
    white-space: nowrap;
    font-size: 1.1rem;
}

.referral-box input {
    flex: 1;
    border: 1px solid #e7d5e5;
    border-radius: 12px;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    background: #fafafa;
}

.submit-code-btn {
    background: #bc2f79;
    color: #fff;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(188, 47, 121, 0.2);
}

.submit-code-btn:hover {
    background: #9d2363;
    transform: translateY(-2px);
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.action-item-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 1.5rem;
    background: #fff;
    border: 1px solid #ead7e8;
    border-radius: 15px;
    color: #5f4565;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.2s ease;
}

.action-item-btn i {
    font-size: 1.4rem;
    color: #5f4565;
}

.action-item-btn:hover {
    border-color: #bc2f79;
    color: #bc2f79;
    transform: translateX(5px);
}

.action-item-btn:hover i {
    color: #bc2f79;
}

/* Claimable Actions */
.rewards-shell {
    margin-top: 1rem;
}

.rewards-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.rewards-head h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: #4a3452;
}

.reward-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.reward-card {
    background: #fcf8fc;
    border: 1px solid #f2e6ee;
    border-radius: 15px;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
}

.reward-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #4a3452;
    margin-bottom: 0.5rem;
}

.reward-card p {
    font-size: 0.9rem;
    color: #665572;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.action-filled-btn {
    background: #bc2f79;
    color: #fff;
    text-decoration: none;
    padding: 0.7rem 1.2rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    align-self: flex-start;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(188, 47, 121, 0.2);
}

.action-filled-btn:hover {
    background: #9d2363;
    transform: scale(1.05);
}

@media (max-width: 900px) {
    .quick-actions {
        grid-template-columns: 1fr;
    }
    .reward-grid {
        grid-template-columns: 1fr;
    }
    .referral-box {
        flex-direction: column;
        align-items: flex-start;
    }
    .referral-box input {
        width: 100%;
    }
}
