.petici-rewards-dashboard {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.user-status-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 30px;
    color: white;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.status-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 20px;
}

.status-bronze {
    background: linear-gradient(135deg, #cd7f32, #b87333);
}

.status-silver {
    background: linear-gradient(135deg, #c0c0c0, #a8a8a8);
}

.status-gold {
    background: linear-gradient(135deg, #ffd700, #ffb800);
    color: #333;
}

.points-display {
    font-size: 48px;
    font-weight: bold;
}

.points-label {
    font-size: 18px;
    opacity: 0.9;
}

.alert {
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
}

.alert-success {
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid #4CAF50;
}

.alert-info {
    background: rgba(33, 150, 243, 0.2);
    border: 1px solid #2196F3;
}

.rewards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.reward-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.reward-card:hover {
    transform: translateY(-5px);
}

.reward-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.reward-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.reward-description {
    color: #666;
    margin-bottom: 20px;
    font-size: 14px;
}

.claim-reward-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: opacity 0.3s;
}

.claim-reward-btn:hover {
    opacity: 0.9;
}

.progress-container {
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    height: 20px;
    margin: 20px 0;
}

.progress-bar {
    background: linear-gradient(90deg, #cd7f32, #ffd700);
    height: 100%;
    transition: width 0.5s;
    border-radius: 10px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.benefit {
    background: #f9f9f9;
    border-radius: 15px;
    padding: 20px;
    border-left: 4px solid;
}

.benefit.bronze {
    border-left-color: #cd7f32;
}

.benefit.silver {
    border-left-color: #c0c0c0;
}

.benefit.gold {
    border-left-color: #ffd700;
}

.benefit h4 {
    margin-top: 0;
    color: #333;
}

.benefit ul {
    padding-left: 20px;
    margin: 0;
}

.benefit li {
    margin: 10px 0;
    color: #666;
}

.petici-user-info {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #f5f5f5;
    padding: 8px 15px;
    border-radius: 50px;
}

.petici-points-badge {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.petici-points-badge .points {
    font-size: 20px;
    font-weight: bold;
    color: #ff6b6b;
}

.petici-points-badge .label {
    font-size: 12px;
    color: #888;
}

.petici-status-badge {
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .rewards-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .points-display {
        font-size: 36px;
    }
}