/* Active Stakes Section */
.active-stakes-section {
    margin-top: 40px;
}

.section-heading {
    font-size: 24px;
    color: var(--text-primary);
    margin-bottom: 20px;
    font-weight: 600;
}

.stakes-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stake-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-card);
}

.stake-item:hover {
    transform: translateY(-4px);
    border-color: rgba(251, 146, 60, 0.5);
}

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

.stake-header h4 {
    color: #fb923c;
    font-size: 18px;
    font-weight: 600;
}

.stake-status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.stake-status.locked {
    background: rgba(239, 68, 68, 0.2);
    color: #EF4444;
}

.stake-status.unlocked {
    background: rgba(251, 146, 60, 0.1);
    color: #fb923c;
}

.stake-details {
    margin-bottom: 16px;
}

.stake-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 14px;
}

.stake-row.penalty {
    color: #EF4444;
}

.unstake-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #fb923c 0%, #f59e0b 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    z-index: 10;
    display: block;
    margin-top: 15px;
}

.unstake-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(251, 146, 60, 0.3);
}

/* Rewards Section */
.rewards-section {
    margin-top: 30px;
}

.rewards-card {
    background: var(--bg-card);
    border: 1px solid var(--border-accent);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rewards-info h3 {
    color: #fb923c;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.rewards-amount {
    color: var(--text-primary);
    font-size: 24px;
    font-weight: 700;
}

.claim-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: linear-gradient(135deg, #fb923c 0%, #f59e0b 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.claim-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(251, 146, 60, 0.4);
}

.claim-btn svg {
    width: 20px;
    height: 20px;
}